@import url('https://cdn.jsdelivr.net/npm/@fontsource/fira-sans@latest/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/fira-sans@latest/500.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/fira-sans@latest/700.css');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-family: 'Fira Sans', sans-serif;
}

.site-header {
  position: relative;
  background: linear-gradient(135deg, #f4f7fa 0%, #e8eef5 60%, #d6e8f5 100%);
  border-bottom: 2px solid #97A9BD;
  box-shadow: 1px 4px 18px 0 rgba(83, 104, 116, 0.08);
  z-index: 100;
}

.header-top-bar {
  background-color: #536874;
  padding: 8px 24px;
}

.header-top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.2;
  color: #ADD8F3;
  text-decoration: none;
  transition: color 0.5s ease-in-out;
}

.header-contact-item:hover {
  color: #ffffff;
}

.header-contact-item .oi {
  font-size: 13px;
  color: #ADD8F3;
}

.header-notice {
  font-size: 13px;
  line-height: 1.2;
  color: #ADD8F3;
  padding: 4px 12px;
  border: 1px solid rgba(173, 216, 243, 0.4);
  border-radius: 7px;
  background-color: rgba(173, 216, 243, 0.1);
}

.header-main-row {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand-mark-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 48px;
  padding: 8px 24px;
  box-shadow: 1px 2px 6px 0 rgba(83, 104, 116, 0.06), 1px 4px 18px 0 rgba(83, 104, 116, 0.08);
  border: 1.5px solid #97A9BD;
  text-decoration: none;
  transition: box-shadow 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

.brand-mark-link:hover {
  box-shadow: 1px 8px 52px 0 rgba(83, 104, 116, 0.14);
  border-color: #536874;
}

.brand-mark-link img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.primary-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.primary-nav-list li {
  display: flex;
}

.primary-nav-list a {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #536874;
  text-decoration: none;
  border-radius: 12px;
  border: 1.5px solid transparent;
  background-color: transparent;
  transition: background-color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}

.primary-nav-list a:hover {
  background-color: #ffffff;
  border-color: #97A9BD;
  color: #536874;
  box-shadow: 1px 2px 6px 0 rgba(83, 104, 116, 0.06);
}

.primary-nav-list a:focus-visible {
  outline: 2px solid #536874;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(83, 104, 116, 0.15);
}

.primary-nav-list a.active-page {
  background-color: #ffffff;
  border-color: #536874;
  color: #536874;
  box-shadow: inset 0 2px 6px 0 rgba(83, 104, 116, 0.06);
}

.header-cta-zone {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #536874;
  background-color: transparent;
  border: 2px solid #536874;
  border-radius: 20px;
  text-decoration: none;
  position: relative;
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
}

.header-cta-btn::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid transparent;
  border-radius: 17px;
  transition: border-color 0.5s ease-in-out;
  pointer-events: none;
}

.header-cta-btn:hover {
  color: #ffffff;
  background-color: #536874;
}

.header-cta-btn:hover::after {
  border-color: rgba(173, 216, 243, 0.5);
}

.header-cta-btn:focus-visible {
  outline: 2px solid #536874;
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(83, 104, 116, 0.12);
}

.site-footer {
  background: linear-gradient(160deg, #536874 0%, #3d5260 50%, #2e3f4a 100%);
  position: relative;
  overflow: hidden;
}

.footer-wave-divider {
  display: block;
  width: 100%;
  height: 48px;
  margin-bottom: -2px;
}

.footer-main-area {
  max-width: 1400px;
  margin: 0 auto;
  padding: 36px 24px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 48px;
  padding: 8px 24px;
  box-shadow: 1px 4px 18px 0 rgba(83, 104, 116, 0.14);
  border: 1.5px solid rgba(173, 216, 243, 0.3);
  text-decoration: none;
  width: fit-content;
  transition: box-shadow 0.6s ease-in-out;
}

.footer-logo-link:hover {
  box-shadow: 1px 8px 52px 0 rgba(83, 104, 116, 0.14);
}

.footer-logo-link img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.5;
  color: #ADD8F3;
  margin: 0;
}

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

.footer-col-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #ADD8F3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 4px 0;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.5s ease-in-out;
}

.footer-contact-link:hover {
  color: #ADD8F3;
}

.footer-contact-link .oi {
  font-size: 13px;
  color: #97A9BD;
  flex-shrink: 0;
}

.footer-address-text {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-address-text .oi {
  font-size: 13px;
  color: #97A9BD;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(151, 169, 189, 0.25);
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-meta-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-meta-nav a {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(173, 216, 243, 0.7);
  text-decoration: none;
  transition: color 0.5s ease-in-out;
}

.footer-meta-nav a:hover {
  color: #ADD8F3;
}

.footer-meta-nav a:focus-visible {
  outline: 2px solid #ADD8F3;
  outline-offset: 3px;
  border-radius: 7px;
}

.footer-copy {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.cookie-toast {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 480px;
  max-width: calc(100vw - 48px);
  background-color: #ffffff;
  border-radius: 12px;
  border: 1.5px solid #97A9BD;
  box-shadow: 1px 8px 52px 0 rgba(83, 104, 116, 0.14);
  padding: 24px;
  z-index: 1200;
  display: none;
}

.cookie-toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #ADD8F3;
  border-radius: 12px;
  margin-bottom: 12px;
}

.cookie-toast-icon .oi {
  font-size: 21px;
  color: #536874;
}

.cookie-toast-body {
  font-size: 13px;
  line-height: 1.7;
  color: #536874;
  margin: 0 0 12px 0;
}

.cookie-toast-body a {
  color: #536874;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.5s ease-in-out;
}

.cookie-toast-body a:hover {
  color: #97A9BD;
}

.cookie-toast-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-accept-btn,
.cookie-decline-btn {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
  transition: color 0.5s ease-in-out;
}

.cookie-accept-btn {
  color: #536874;
}

.cookie-decline-btn {
  color: #97A9BD;
}

.cookie-accept-btn:hover {
  color: #2e3f4a;
}

.cookie-decline-btn:hover {
  color: #536874;
}

.cookie-accept-btn:focus-visible,
.cookie-decline-btn:focus-visible {
  outline: 2px solid #536874;
  outline-offset: 3px;
  border-radius: 7px;
}

@media (max-width: 768px) {
  .header-top-bar-inner {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-main-row {
    flex-direction: column;
    align-items: center;
    padding: 24px 12px;
    gap: 12px;
  }

  .primary-nav-list {
    gap: 4px;
  }

  .primary-nav-list a {
    padding: 12px 12px;
  }

  .header-cta-zone {
    width: 100%;
    justify-content: center;
  }

  .footer-main-area {
    flex-direction: column;
    gap: 24px;
    padding: 24px 12px 12px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 12px;
    gap: 12px;
  }

  .footer-meta-nav {
    gap: 12px;
  }
}

@media (max-width: 390px) {
  .header-contact-item span {
    display: none;
  }

  .primary-nav-list a {
    font-size: 13px;
    padding: 12px 8px;
  }

  .cookie-toast {
    top: 12px;
    padding: 12px;
  }
}

.tbv-terms-block {
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 36px;
  box-sizing: border-box;
}

.tbv-terms-block h1 {
  font-size: 66px;
  line-height: 1.2;
  color: #536874;
  margin-bottom: 36px;
  margin-top: 0;
  padding-bottom: 24px;
  border-bottom: 2px solid #ADD8F3;
}

.tbv-terms-block h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #536874;
  margin-top: 72px;
  margin-bottom: 24px;
}

.tbv-terms-block h3 {
  font-size: 21px;
  line-height: 1.5;
  color: #536874;
  margin-top: 36px;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.tbv-terms-block h4 {
  font-size: 21px;
  line-height: 1.5;
  color: #97A9BD;
  margin-top: 24px;
  margin-bottom: 8px;
}

.tbv-terms-block h5 {
  font-size: 13px;
  line-height: 1.5;
  color: #536874;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 24px;
  margin-bottom: 8px;
}

.tbv-terms-block h6 {
  font-size: 13px;
  line-height: 1.5;
  color: #97A9BD;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 12px;
  margin-bottom: 8px;
}

.tbv-terms-block p {
  font-size: 21px;
  line-height: 1.7;
  color: #2c3a42;
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 72ch;
}

.tbv-terms-block strong,
.tbv-terms-block b {
  color: #536874;
  font-weight: 700;
}

.tbv-terms-block em,
.tbv-terms-block i {
  color: #536874;
  font-style: italic;
}

.tbv-terms-block a {
  color: #536874;
  text-decoration: underline;
  text-decoration-color: #ADD8F3;
  text-underline-offset: 3px;
  transition: color 0.55s ease-in-out, text-decoration-color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tbv-terms-block a:hover {
  color: #97A9BD;
  text-decoration-color: #97A9BD;
}

.tbv-terms-block table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 36px;
  margin-bottom: 36px;
  font-size: 13px;
  line-height: 1.7;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 4px 18px 0 rgba(83, 104, 116, 0.08);
}

.tbv-terms-block thead {
  background-color: #536874;
}

.tbv-terms-block thead th {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid #ADD8F3;
}

.tbv-terms-block tbody tr {
  background-color: #ffffff;
  transition: background-color 0.5s ease-in-out;
}

.tbv-terms-block tbody tr:nth-child(even) {
  background-color: #f2f7fb;
}

.tbv-terms-block tbody tr:hover {
  background-color: #e8f4fc;
}

.tbv-terms-block td {
  font-size: 13px;
  line-height: 1.7;
  color: #2c3a42;
  padding: 12px 24px;
  border-bottom: 1px solid #ADD8F3;
  vertical-align: top;
}

.tbv-terms-block tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .tbv-terms-block {
    padding: 36px 24px;
  }

  .tbv-terms-block h1 {
    font-size: 38px;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }

  .tbv-terms-block h2 {
    font-size: 21px;
    margin-top: 36px;
    margin-bottom: 12px;
  }

  .tbv-terms-block h3 {
    font-size: 21px;
    margin-top: 24px;
  }

  .tbv-terms-block p {
    font-size: 21px;
    max-width: 100%;
  }

  .tbv-terms-block table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 7px;
  }

  .tbv-terms-block thead th,
  .tbv-terms-block td {
    padding: 8px 12px;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .tbv-terms-block {
    padding: 24px 12px;
  }

  .tbv-terms-block h1 {
    font-size: 38px;
  }

  .tbv-terms-block h2 {
    font-size: 21px;
  }

  .tbv-terms-block p {
    font-size: 21px;
  }
}

.abt-us {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  overflow: hidden;
}

.abt-us .geo-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  overflow: hidden;
}

.abt-us .geo-divider span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #97A9BD;
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.5;
}

.abt-us .geo-divider span:nth-child(2n) {
  background: #ADD8F3;
  opacity: 0.35;
}

.abt-us .geo-divider span:nth-child(3n) {
  background: #536874;
  opacity: 0.25;
}

.abt-us .diamond-sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #97A9BD;
  transform: rotate(45deg);
  margin: 0 8px;
  vertical-align: middle;
  opacity: 0.6;
}

.abt-us .stroke-deco {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
  opacity: 0.18;
}

.abt-us .stroke-deco i {
  display: block;
  height: 2px;
  background: #536874;
  border-radius: 2px;
}

.abt-us .stroke-deco i:nth-child(1) {
  width: 32px;
}

.abt-us .stroke-deco i:nth-child(2) {
  width: 24px;
}

.abt-us .stroke-deco i:nth-child(3) {
  width: 18px;
}

.abt-us .stroke-deco i:nth-child(4) {
  width: 28px;
}

.abt-us .stroke-deco i:nth-child(5) {
  width: 14px;
}

.abt-us .grad-text {
  background: linear-gradient(to left, #536874, #97A9BD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.abt-us .svg-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}

.abt-us .custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.abt-us .custom-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: #2a3a42;
  padding: 4px 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imgFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spotDrift {
  0% {
    background-position: 20% 40%;
  }

  33% {
    background-position: 75% 60%;
  }

  66% {
    background-position: 45% 20%;
  }

  100% {
    background-position: 20% 40%;
  }
}

.abt-us .appear-1 {
  animation: fadeInUp 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.abt-us .appear-2 {
  animation: fadeInUp 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both;
}

.abt-us .appear-3 {
  animation: fadeInUp 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.abt-us .appear-4 {
  animation: fadeInUp 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.55s both;
}

/* ─── TITLE BLOCK ─── */
.abt-us .lead-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0 36px;
  position: relative;
}

.abt-us .lead-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 1px 8px 52px 0 rgba(83, 104, 116, 0.14);
  animation: imgFadeIn 0.65s ease-in-out 0.05s both;
  flex-shrink: 0;
}

.abt-us .lead-img-wrap img {
  display: block;
  width: 320px;
  height: 400px;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-us .lead-img-wrap:hover img {
  transform: scale(1.04);
}

.abt-us .lead-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abt-us .lead-text h1 {
  font-size: 66px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #1e2e36;
  margin: 0;
}

.abt-us .lead-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #536874;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.48s ease-in-out;
}

.abt-us .lead-link:hover {
  color: #97A9BD;
}

/* ─── SECTION 2: WHO WE ARE ─── */
.abt-us .identity-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  padding: 72px 0;
  position: relative;
}

.abt-us .identity-row .id-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.abt-us .identity-row .id-col:first-child {
  grid-column: span 1;
}

.abt-us .id-col h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0;
  color: #1e2e36;
}

.abt-us .id-col p {
  font-size: 13px;
  line-height: 1.7;
  color: #2a3a42;
  margin: 0;
}

.abt-us .id-col.narrow p {
  font-size: 13px;
  line-height: 1.7;
  color: #3d5260;
}

.abt-us .id-stat-box {
  background: linear-gradient(to left, rgba(173, 216, 243, 0.15), rgba(151, 169, 189, 0.1));
  border-radius: 12px;
  padding: 24px;
  box-shadow: 1px 4px 18px 0 rgba(83, 104, 116, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-us .id-stat-box .stat-num {
  font-size: 38px;
  line-height: 1.2;
  color: #536874;
  font-weight: 700;
}

.abt-us .id-stat-box .stat-label {
  font-size: 13px;
  line-height: 1.5;
  color: #3d5260;
}

/* ─── SECTION 3: APPROACH - image bg with overlay ─── */
.abt-us .approach-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 0 0;
}

.abt-us .approach-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.abt-us .approach-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.abt-us .approach-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 46, 54, 0.82);
  z-index: 1;
  animation: spotDrift 14s ease-in-out infinite;
  background-image: radial-gradient(ellipse 60% 50% at 20% 40%, rgba(83, 104, 116, 0.28) 0%, transparent 70%), linear-gradient(rgba(30, 46, 54, 0.82), rgba(30, 46, 54, 0.82));
  background-size: 200% 200%, 100% 100%;
}

.abt-us .approach-body {
  position: relative;
  z-index: 2;
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.abt-us .approach-body h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #ADD8F3;
  margin: 0 0 24px;
}

.abt-us .approach-body p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 12px;
}

.abt-us .approach-body h3 {
  font-size: 21px;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 12px;
}

.abt-us .approach-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.abt-us .approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.abt-us .approach-list .svg-bullet path {
  fill: #ADD8F3;
}

/* ─── SECTION 4: TEAM ─── */
.abt-us .team-row {
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.abt-us .team-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
}

.abt-us .team-head h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0;
  color: #1e2e36;
}

.abt-us .team-head p {
  font-size: 13px;
  line-height: 1.7;
  color: #3d5260;
  margin: 0;
}

.abt-us .team-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.abt-us .team-card {
  border-radius: 12px;
  box-shadow: 1px 2px 6px 0 rgba(83, 104, 116, 0.06);
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-us .team-card:hover {
  box-shadow: 1px 8px 52px 0 rgba(83, 104, 116, 0.14);
  transform: translateY(-4px);
}

.abt-us .team-card .tc-img {
  overflow: hidden;
  flex-shrink: 0;
}

.abt-us .team-card.featured .tc-img {
  height: 260px;
}

.abt-us .team-card:not(.featured) .tc-img {
  height: 180px;
}

.abt-us .team-card .tc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-us .team-card:hover .tc-img img {
  transform: scale(1.05);
}

.abt-us .tc-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.abt-us .tc-info h4 {
  font-size: 21px;
  line-height: 1.2;
  margin: 0;
  color: #1e2e36;
}

.abt-us .tc-info .tc-role {
  font-size: 13px;
  line-height: 1.5;
  color: #536874;
  display: flex;
  align-items: center;
  gap: 8px;
}

.abt-us .tc-info p {
  font-size: 13px;
  line-height: 1.7;
  color: #3d5260;
  margin: 0;
}

.abt-us .tc-info .tc-link {
  font-size: 13px;
  color: #536874;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.48s ease-in-out;
  align-self: flex-start;
}

.abt-us .tc-info .tc-link:hover {
  color: #97A9BD;
}

.abt-us .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 13px;
  line-height: 1.5;
  color: #536874;
  background: transparent;
  border: 1.5px solid #97A9BD;
  border-radius: 7px;
  cursor: pointer;
  transition: color 0.5s ease-in-out, background 0.5s ease-in-out, border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  position: relative;
  text-decoration: none;
}

.abt-us .btn-ghost::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color 0.5s ease-in-out;
}

.abt-us .btn-ghost:hover {
  color: #fff;
  background: #536874;
  border-color: #536874;
  box-shadow: 1px 4px 18px 0 rgba(83, 104, 116, 0.08);
}

.abt-us .btn-ghost:hover::after {
  border-color: rgba(173, 216, 243, 0.4);
}

.abt-us .btn-ghost:focus {
  outline: 2px solid #536874;
  outline-offset: 3px;
}

@media (max-width: 1280px) {
  .abt-us .lead-row {
    grid-template-columns: 260px 1fr;
    gap: 36px;
  }

  .abt-us .lead-img-wrap img {
    width: 260px;
    height: 320px;
  }

  .abt-us .lead-img-wrap {
    width: 260px;
  }

  .abt-us .lead-text h1 {
    font-size: 38px;
  }

  .abt-us .identity-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .abt-us .identity-row .id-col:first-child {
    grid-column: span 2;
  }

  .abt-us .approach-body {
    padding: 36px;
    gap: 36px;
  }

  .abt-us .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .abt-us .team-card.featured {
    grid-column: span 2;
  }

  .abt-us .team-card.featured .tc-img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .abt-us {
    padding: 0 12px;
  }

  .abt-us .lead-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0 24px;
  }

  .abt-us .lead-img-wrap {
    width: 100%;
  }

  .abt-us .lead-img-wrap img {
    width: 100%;
    height: 240px;
  }

  .abt-us .lead-text h1 {
    font-size: 38px;
  }

  .abt-us .identity-row {
    grid-template-columns: 1fr;
    padding: 36px 0;
  }

  .abt-us .identity-row .id-col:first-child {
    grid-column: span 1;
  }

  .abt-us .approach-body {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 24px;
  }

  .abt-us .team-grid {
    grid-template-columns: 1fr;
  }

  .abt-us .team-card.featured {
    grid-column: span 1;
  }

  .abt-us .team-row {
    padding: 36px 0;
  }

  .abt-us .stroke-deco {
    display: none;
  }
}

@media (max-width: 390px) {
  .abt-us .lead-text h1 {
    font-size: 38px;
  }

  .abt-us .approach-body {
    padding: 24px 12px;
  }

  .abt-us .id-stat-box .stat-num {
    font-size: 21px;
  }
}

.mstr-pg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.mstr-pg .blob-layer {
  position: absolute;
  border-radius: 48px;
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

.mstr-pg .top-band {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to left, #536874, #97A9BD);
}

.mstr-pg .bottom-band {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to left, #536874, #97A9BD);
}

.mstr-pg .opener {
  position: relative;
  padding: 72px 36px 72px;
  background: #f4f6f8;
  border-top: 4px solid #97A9BD;
  border-bottom: 4px solid #536874;
}

.mstr-pg .opener-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.mstr-pg .opener-text {
  padding-top: 24px;
}

.mstr-pg .tag-line {
  display: inline-block;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #536874;
  border: 1px solid #97A9BD;
  border-radius: 7px;
  padding: 4px 12px;
  margin-bottom: 24px;
}

.mstr-pg .opener-h1 {
  font-size: 66px;
  line-height: 1.2;
  margin: 0 0 24px;
  background: linear-gradient(to left, #536874, #97A9BD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mstr-pg .opener-sub {
  font-size: 21px;
  line-height: 1.5;
  color: #3a4a54;
  margin: 0 0 36px;
}

.mstr-pg .opener-theses {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 36px;
}

.mstr-pg .thesis-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: #3a4a54;
}

.mstr-pg .thesis-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.mstr-pg .opener-cta {
  display: inline-block;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #536874;
  border: 2px solid #536874;
  border-radius: 12px;
  padding: 12px 36px;
  text-decoration: none;
  position: relative;
  transition: color 0.55s ease-in-out, background 0.55s ease-in-out, box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mstr-pg .opener-cta::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid #536874;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.55s ease-in-out;
}

.mstr-pg .opener-cta:hover {
  background: #536874;
  color: #fff;
  box-shadow: 1px 8px 52px 0 rgba(83, 104, 116, 0.14);
}

.mstr-pg .opener-cta:hover::after {
  opacity: 1;
}

.mstr-pg .img-col {
  position: relative;
}

.mstr-pg .img-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 1px 8px 52px 0 rgba(83, 104, 116, 0.14);
  position: relative;
}

.mstr-pg .img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mstr-pg .img-frame:hover img {
  transform: scale(1.04);
}

.mstr-pg .img-blur-fore {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(244, 246, 248, 0.7), transparent);
  backdrop-filter: blur(3px);
  border-radius: 0 0 20px 20px;
  pointer-events: none;
}

.mstr-pg .blob-a {
  width: 280px;
  height: 200px;
  background: rgba(173, 216, 243, 0.35);
  top: -36px;
  right: -36px;
}

.mstr-pg .blob-b {
  width: 180px;
  height: 180px;
  background: rgba(151, 169, 189, 0.25);
  bottom: 24px;
  left: -24px;
}

.mstr-pg .wave-div {
  position: relative;
  height: 72px;
  overflow: hidden;
  line-height: 0;
}

.mstr-pg .wave-div svg {
  width: 100%;
  height: 72px;
  display: block;
}

.mstr-pg .program-block {
  padding: 72px 36px;
  background: #fff;
  position: relative;
}

.mstr-pg .program-header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
}

.mstr-pg .program-h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0;
  background: linear-gradient(to left, #536874, #97A9BD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mstr-pg .program-note {
  font-size: 13px;
  line-height: 1.7;
  color: #536874;
  max-width: 320px;
  text-align: right;
}

.mstr-pg .modules-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 72px;
  list-style: none;
  padding: 0;
}

.mstr-pg .mod-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-radius: 12px;
  background: #f4f6f8;
  transition: background 0.5s ease-in-out, box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.mstr-pg .mod-item:hover {
  background: #eaf2f8;
  box-shadow: 1px 4px 18px 0 rgba(83, 104, 116, 0.08);
}

.mstr-pg .mod-num {
  font-size: 38px;
  line-height: 1.2;
  color: #ADD8F3;
  font-weight: 700;
  text-align: center;
}

.mstr-pg .mod-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mstr-pg .mod-name {
  font-size: 21px;
  line-height: 1.2;
  color: #2a3840;
  margin: 0;
}

.mstr-pg .mod-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #536874;
  margin: 0;
}

.mstr-pg .mod-dur {
  font-size: 13px;
  line-height: 1.2;
  color: #97A9BD;
  white-space: nowrap;
  border: 1px solid #ADD8F3;
  border-radius: 7px;
  padding: 4px 12px;
}

.mstr-pg .two-col-divide {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 36px;
  align-items: start;
}

.mstr-pg .divide-line {
  background: linear-gradient(to bottom, transparent, #97A9BD, transparent);
  align-self: stretch;
}

.mstr-pg .col-left-h3,
.mstr-pg .col-right-h3 {
  font-size: 21px;
  line-height: 1.2;
  color: #2a3840;
  margin: 0 0 24px;
}

.mstr-pg .col-left-p,
.mstr-pg .col-right-p {
  font-size: 13px;
  line-height: 1.7;
  color: #536874;
  margin: 0 0 12px;
}

.mstr-pg .col-left-p:last-child,
.mstr-pg .col-right-p:last-child {
  margin-bottom: 0;
}

.mstr-pg .metrics-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 24px;
}

.mstr-pg .metric-box {
  flex: 1;
  background: #f4f6f8;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 1px 2px 6px 0 rgba(83, 104, 116, 0.06);
  transition: box-shadow 0.5s ease-in-out;
}

.mstr-pg .metric-box:hover {
  box-shadow: 1px 8px 52px 0 rgba(83, 104, 116, 0.14);
}

.mstr-pg .metric-val {
  font-size: 38px;
  line-height: 1.2;
  color: #536874;
  display: block;
  margin-bottom: 4px;
}

.mstr-pg .metric-lbl {
  font-size: 13px;
  line-height: 1.5;
  color: #97A9BD;
}

.mstr-pg .wave-div-2 {
  position: relative;
  height: 72px;
  overflow: hidden;
  line-height: 0;
}

.mstr-pg .wave-div-2 svg {
  width: 100%;
  height: 72px;
  display: block;
}

.mstr-pg .offer-block {
  padding: 72px 36px;
  background: #e8edf1;
  position: relative;
  border-top: 4px solid #ADD8F3;
  border-bottom: 4px solid #97A9BD;
}

.mstr-pg .offer-h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 12px;
  background: linear-gradient(to left, #536874, #97A9BD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mstr-pg .offer-lead {
  font-size: 21px;
  line-height: 1.5;
  color: #3a4a54;
  margin: 0 0 36px;
  max-width: 600px;
}

.mstr-pg .offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.mstr-pg .offer-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px;
  box-shadow: 1px 4px 18px 0 rgba(83, 104, 116, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s ease-in-out;
}

.mstr-pg .offer-card:hover {
  box-shadow: 1px 8px 52px 0 rgba(83, 104, 116, 0.14);
  transform: translateY(-4px);
}

.mstr-pg .offer-card-icon {
  width: 40px;
  height: 40px;
  position: relative;
}

.mstr-pg .icon-outline-anim {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: trace-outline 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

@keyframes trace-outline {
  to {
    stroke-dashoffset: 0;
  }
}

.mstr-pg .offer-card-h4 {
  font-size: 21px;
  line-height: 1.2;
  color: #2a3840;
  margin: 0;
}

.mstr-pg .offer-card-p {
  font-size: 13px;
  line-height: 1.7;
  color: #536874;
  margin: 0;
}

.mstr-pg .offer-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mstr-pg .offer-card-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: #536874;
}

.mstr-pg .li-svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.mstr-pg .price-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 1px 4px 18px 0 rgba(83, 104, 116, 0.08);
}

.mstr-pg .price-amount {
  font-size: 66px;
  line-height: 1.2;
  color: #536874;
  white-space: nowrap;
}

.mstr-pg .price-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mstr-pg .price-label {
  font-size: 13px;
  line-height: 1.5;
  color: #97A9BD;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mstr-pg .price-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #536874;
}

.mstr-pg .price-cta {
  display: inline-block;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #536874;
  border: 2px solid #536874;
  border-radius: 12px;
  padding: 12px 36px;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: color 0.55s ease-in-out, background 0.55s ease-in-out, box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mstr-pg .price-cta::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid #536874;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.55s ease-in-out;
}

.mstr-pg .price-cta:hover {
  background: #536874;
  color: #fff;
  box-shadow: 1px 8px 52px 0 rgba(83, 104, 116, 0.14);
}

.mstr-pg .price-cta:hover::after {
  opacity: 1;
}

.mstr-pg .rating-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.mstr-pg .stars-row {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.mstr-pg .star-svg {
  width: 18px;
  height: 18px;
}

.mstr-pg .rating-text {
  font-size: 13px;
  line-height: 1.5;
  color: #536874;
}

@keyframes shadow-build {
  from {
    box-shadow: 1px 2px 6px 0 rgba(83, 104, 116, 0);
  }

  to {
    box-shadow: 1px 4px 18px 0 rgba(83, 104, 116, 0.08);
  }
}

.mstr-pg .mod-item {
  animation: shadow-build 0.65s ease-in-out both;
}

@media (max-width: 1280px) {
  .mstr-pg .opener-h1 {
    font-size: 38px;
  }

  .mstr-pg .offer-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mstr-pg .opener-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mstr-pg .img-col {
    order: -1;
  }

  .mstr-pg .img-frame img {
    height: 280px;
  }

  .mstr-pg .opener-h1 {
    font-size: 38px;
  }

  .mstr-pg .program-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .mstr-pg .program-note {
    text-align: left;
  }

  .mstr-pg .mod-item {
    grid-template-columns: 36px 1fr;
  }

  .mstr-pg .mod-dur {
    display: none;
  }

  .mstr-pg .two-col-divide {
    grid-template-columns: 1fr;
  }

  .mstr-pg .divide-line {
    display: none;
  }

  .mstr-pg .offer-cards {
    grid-template-columns: 1fr;
  }

  .mstr-pg .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .mstr-pg .metrics-row {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 390px) {
  .mstr-pg .opener {
    padding: 36px 12px;
  }

  .mstr-pg .program-block {
    padding: 36px 12px;
  }

  .mstr-pg .offer-block {
    padding: 36px 12px;
  }

  .mstr-pg .opener-h1 {
    font-size: 38px;
  }

  .mstr-pg .price-amount {
    font-size: 38px;
  }
}

.frst {
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: clip;
}

.frst .pg-title {
  background: #2c3a40;
  padding: 72px 72px 72px 72px;
  position: relative;
}

.frst .pg-title-geo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.frst .pg-title-geo span {
  position: absolute;
  border: 1px solid rgba(173, 216, 243, 0.07);
  border-radius: 48px;
}

.frst .pg-title-geo span:nth-child(1) {
  width: 320px;
  height: 320px;
  top: -80px;
  right: 120px;
  border-radius: 48px;
  background: rgba(83, 104, 116, 0.12);
}

.frst .pg-title-geo span:nth-child(2) {
  width: 180px;
  height: 180px;
  bottom: -40px;
  right: 60px;
  border-radius: 32px;
  background: rgba(173, 216, 243, 0.06);
}

.frst .pg-title-geo span:nth-child(3) {
  width: 90px;
  height: 90px;
  top: 40px;
  left: 200px;
  border-radius: 20px;
  background: rgba(151, 169, 189, 0.08);
}

.frst .pg-title-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.frst .pg-title-label {
  display: inline-block;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ADD8F3;
  border: 1px solid rgba(173, 216, 243, 0.3);
  border-radius: 7px;
  padding: 4px 12px;
  margin-bottom: 24px;
}

.frst .pg-title h1 {
  font-size: 66px;
  line-height: 1.2;
  color: #f0f4f7;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.frst .pg-title-sub {
  font-size: 21px;
  line-height: 1.7;
  color: rgba(173, 216, 243, 0.85);
  margin: 0 0 36px 0;
  max-width: 600px;
}

.frst .pg-title-meta {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(240, 244, 247, 0.45);
}

.frst .pg-title-img-col {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: 100%;
  overflow: hidden;
}

.frst .pg-title-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.55) sepia(0.25);
  display: block;
  transition: transform 0.55s ease-in-out;
}

.frst .pg-title-img-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #2c3a40 0%, transparent 60%);
}

.frst .env-sect {
  padding: 72px 72px;
  background: #f2f5f7;
  position: relative;
}

.frst .env-dot-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.frst .env-dot-border svg {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
}

.frst .env-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 72px;
}

.frst .env-lead h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 24px 0;
  background: linear-gradient(to left, #536874, #97A9BD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.frst .env-lead p {
  font-size: 21px;
  line-height: 1.7;
  margin: 0;
  color: #3a4a52;
}

.frst .env-right p {
  font-size: 13px;
  line-height: 1.7;
  color: #4a5c65;
  margin: 0 0 12px 0;
}

.frst .env-right p:last-child {
  margin-bottom: 0;
}

.frst .env-cards {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.frst .env-card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 1px 4px 18px 0 rgba(83, 104, 116, 0.08);
  transition: box-shadow 0.5s ease-in-out, transform 0.5s ease-in-out;
  overflow: hidden;
}

.frst .env-card:hover {
  box-shadow: 1px 8px 52px 0 rgba(83, 104, 116, 0.14);
  transform: translateY(-4px);
}

.frst .env-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 7px;
  margin-bottom: 24px;
}

.frst .env-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.frst .env-card h4 {
  font-size: 21px;
  line-height: 1.2;
  margin: 0 0 12px 0;
  color: #2c3a40;
}

.frst .env-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #4a5c65;
  margin: 0;
}

.frst .exp-sect {
  padding: 72px 72px;
  background: #fff;
}

.frst .exp-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.frst .exp-main-img {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.frst .exp-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease-in-out;
}

.frst .exp-main-img:hover img {
  transform: scale(1.05);
}

.frst .exp-main-img .img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 58, 64, 0.78);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  border-radius: 12px;
}

.frst .exp-main-img:hover .img-overlay {
  opacity: 1;
}

.frst .exp-main-img .img-overlay p {
  font-size: 13px;
  line-height: 1.7;
  color: #f0f4f7;
  margin: 0;
}

.frst .exp-col-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.frst .exp-col-right.span2 {
  grid-column: span 1;
}

.frst .exp-text-block h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 24px 0;
  background: linear-gradient(to left, #536874, #97A9BD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.frst .exp-text-block p {
  font-size: 13px;
  line-height: 1.7;
  color: #4a5c65;
  margin: 0 0 12px 0;
}

.frst .exp-text-block p:last-child {
  margin-bottom: 0;
}

.frst .exp-num-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.frst .exp-num-item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}

.frst .exp-num {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(173, 216, 243, 0.6);
  flex-shrink: 0;
  width: 48px;
  text-align: right;
}

.frst .exp-num-text {
  padding-top: 8px;
}

.frst .exp-num-text h5 {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  color: #2c3a40;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.frst .exp-num-text p {
  font-size: 13px;
  line-height: 1.7;
  color: #4a5c65;
  margin: 0;
}

.frst .gap-sect {
  padding: 72px 72px;
  background: #e8edf0;
  position: relative;
  overflow: hidden;
}

.frst .gap-geo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.frst .gap-geo svg {
  position: absolute;
  bottom: -60px;
  right: -60px;
  opacity: 0.05;
}

.frst .gap-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 72px;
  align-items: center;
}

.frst .gap-left h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 24px 0;
  background: linear-gradient(to left, #536874, #97A9BD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.frst .gap-left p {
  font-size: 21px;
  line-height: 1.7;
  color: #3a4a52;
  margin: 0 0 24px 0;
}

.frst .gap-left p.small {
  font-size: 13px;
  color: #4a5c65;
  margin-bottom: 0;
}

.frst .gap-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frst .gap-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: #4a5c65;
}

.frst .gap-list li .li-icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.frst .gap-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.frst .gap-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  box-shadow: 1px 8px 52px 0 rgba(83, 104, 116, 0.14);
}

.frst .gap-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.frst .gap-img-wrap:hover img {
  transform: scale(1.05);
}

.frst .gap-img-wrap .img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 58, 64, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  border-radius: 20px;
}

.frst .gap-img-wrap:hover .img-overlay {
  opacity: 1;
}

.frst .gap-img-wrap .img-overlay p {
  font-size: 13px;
  line-height: 1.7;
  color: #f0f4f7;
  margin: 0;
  text-align: center;
}

.frst .gap-stat-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.frst .gap-stat {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 1px 2px 6px 0 rgba(83, 104, 116, 0.06);
  text-align: center;
  transition: box-shadow 0.55s ease-in-out;
}

.frst .gap-stat:hover {
  box-shadow: 1px 4px 18px 0 rgba(83, 104, 116, 0.08);
}

.frst .gap-stat-num {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #536874;
  display: block;
}

.frst .gap-stat-label {
  font-size: 13px;
  line-height: 1.5;
  color: #4a5c65;
  display: block;
  margin-top: 4px;
}

.frst .btn-ghost {
  display: inline-block;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #536874;
  background: transparent;
  border: 1px solid #536874;
  border-radius: 7px;
  padding: 12px 24px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: color 0.5s ease-in-out, background 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.frst .btn-ghost::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: border-color 0.5s ease-in-out;
}

.frst .btn-ghost:hover {
  color: #f0f4f7;
  background: #536874;
  box-shadow: 1px 4px 18px 0 rgba(83, 104, 116, 0.08);
}

.frst .btn-ghost:hover::before {
  border-color: rgba(173, 216, 243, 0.4);
}

.frst .btn-ghost:focus {
  outline: 2px solid #ADD8F3;
  outline-offset: 3px;
}

.frst .scale-in {
  animation: scalein 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.frst .scale-in.delay1 {
  animation-delay: 0.1s;
}

.frst .scale-in.delay2 {
  animation-delay: 0.2s;
}

.frst .scale-in.delay3 {
  animation-delay: 0.3s;
}

@keyframes scalein {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 1280px) {
  .frst .pg-title {
    padding: 72px 36px;
  }

  .frst .pg-title-img-col {
    width: 280px;
  }

  .frst .env-sect,
  .frst .exp-sect,
  .frst .gap-sect {
    padding: 72px 36px;
  }

  .frst .exp-grid {
    grid-template-columns: 1fr 1fr;
  }

  .frst .exp-main-img {
    grid-column: span 2;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .frst .pg-title {
    padding: 36px 24px;
  }

  .frst .pg-title h1 {
    font-size: 38px;
  }

  .frst .pg-title-sub {
    font-size: 13px;
  }

  .frst .pg-title-img-col {
    display: none;
  }

  .frst .env-sect,
  .frst .exp-sect,
  .frst .gap-sect {
    padding: 36px 24px;
  }

  .frst .env-top {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }

  .frst .env-cards {
    flex-direction: column;
  }

  .frst .exp-grid {
    grid-template-columns: 1fr;
  }

  .frst .exp-main-img {
    grid-column: span 1;
    height: 240px;
  }

  .frst .gap-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .frst .gap-stat-row {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .frst .pg-title h1 {
    font-size: 21px;
  }

  .frst .env-lead h2,
  .frst .exp-text-block h2,
  .frst .gap-left h2 {
    font-size: 21px;
  }

  .frst .env-sect,
  .frst .exp-sect,
  .frst .gap-sect {
    padding: 24px 12px;
  }

  .frst .pg-title {
    padding: 24px 12px;
  }
}

.ctc-pg {
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: clip;
}

.ctc-pg .band-top {
  background: #536874;
  padding: 36px 72px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
}

.ctc-pg .band-top::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 36px solid transparent;
  border-right: 36px solid transparent;
  border-top: 28px solid #536874;
  z-index: 2;
}

.ctc-pg .band-top-text {
  flex: 1;
}

.ctc-pg .band-top-text h1 {
  font-size: 66px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 12px 0;
  letter-spacing: -1px;
}

.ctc-pg .band-top-text p {
  font-size: 21px;
  line-height: 1.5;
  color: #ADD8F3;
  margin: 0;
  max-width: 480px;
}

.ctc-pg .band-top-img {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 1px 8px 52px 0 rgba(83, 104, 116, 0.14);
}

.ctc-pg .band-top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.75);
  transition: filter 0.55s ease-in-out;
}

.ctc-pg .band-top-img:hover img {
  filter: blur(0px) brightness(0.9);
}

.ctc-pg .contact-body {
  padding: 72px 72px 72px 72px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
  background: #f5f8fa;
  position: relative;
}

.ctc-pg .contact-body::before {
  content: '';
  position: absolute;
  top: -4px;
  right: 0;
  width: 320px;
  height: 320px;
  border-radius: 0 0 0 48px;
  background: linear-gradient(to left, rgba(173, 216, 243, 0.18), rgba(151, 169, 189, 0.08));
  pointer-events: none;
}

.ctc-pg .info-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.ctc-pg .info-label {
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #536874;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.ctc-pg .info-heading {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 12px 0;
  background: linear-gradient(to left, #536874, #97A9BD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ctc-pg .info-desc {
  font-size: 21px;
  line-height: 1.7;
  color: #3a4d57;
  margin: 0;
}

.ctc-pg .contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ctc-pg .contact-details-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.ctc-pg .detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(to left, #ADD8F3, #97A9BD);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 1px 4px 18px 0 rgba(83, 104, 116, 0.08);
  animation: icon-float 3.2s ease-in-out infinite;
}

.ctc-pg .contact-details-list li:nth-child(2) .detail-icon {
  animation-delay: 0.6s;
  animation-duration: 3.8s;
}

.ctc-pg .contact-details-list li:nth-child(3) .detail-icon {
  animation-delay: 1.1s;
  animation-duration: 3.5s;
}

@keyframes icon-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.ctc-pg .detail-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.ctc-pg .detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ctc-pg .detail-text span {
  font-size: 13px;
  line-height: 1.5;
  color: #536874;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.ctc-pg .detail-text a,
.ctc-pg .detail-text p {
  font-size: 21px;
  line-height: 1.5;
  color: #3a4d57;
  margin: 0;
  text-decoration: none;
  transition: color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ctc-pg .detail-text a:hover {
  color: #536874;
  text-decoration: underline;
}

.ctc-pg .form-col {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 1px 8px 52px 0 rgba(83, 104, 116, 0.14);
  position: relative;
}

.ctc-pg .form-col::before {
  content: '';
  position: absolute;
  top: 12px;
  right: -8px;
  bottom: -8px;
  left: 12px;
  border-radius: 20px;
  background: linear-gradient(to left, #ADD8F3, #97A9BD);
  z-index: -1;
  opacity: 0.35;
}

.ctc-pg .form-heading {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 8px 0;
  background: linear-gradient(to left, #536874, #97A9BD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ctc-pg .form-sub {
  font-size: 13px;
  line-height: 1.5;
  color: #7a9099;
  margin: 0 0 24px 0;
}

.ctc-pg .contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ctc-pg .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ctc-pg .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctc-pg .field-group label {
  font-size: 13px;
  line-height: 1.5;
  color: #536874;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ctc-pg .field-group input,
.ctc-pg .field-group select,
.ctc-pg .field-group textarea {
  font-size: 21px;
  line-height: 1.5;
  color: #2e3d45;
  background: #f5f8fa;
  border: 2px solid #c8d8e2;
  border-radius: 12px;
  padding: 12px 24px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.55s ease-in-out;
  box-shadow: inset 2px 3px 6px 0 rgba(83, 104, 116, 0.06);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.ctc-pg .field-group input::placeholder,
.ctc-pg .field-group textarea::placeholder {
  color: rgba(83, 104, 116, 0.4);
}

.ctc-pg .field-group input:focus,
.ctc-pg .field-group select:focus,
.ctc-pg .field-group textarea:focus {
  border-color: #97A9BD;
  box-shadow: inset 2px 3px 6px 0 rgba(83, 104, 116, 0.06), 1px 4px 18px 0 rgba(83, 104, 116, 0.08);
}

.ctc-pg .field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2397A9BD' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.ctc-pg .field-group select option {
  font-size: 21px;
  color: #2e3d45;
}

.ctc-pg .field-group textarea {
  resize: vertical;
  min-height: 120px;
}

.ctc-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.ctc-pg .privacy-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 7px;
  border: 2px solid #97A9BD;
  background: #f5f8fa;
  cursor: pointer;
  margin-top: 4px;
  accent-color: #536874;
  flex-shrink: 0;
}

.ctc-pg .privacy-row label {
  font-size: 13px;
  line-height: 1.7;
  color: #536874;
  cursor: pointer;
}

.ctc-pg .privacy-row label a {
  color: #97A9BD;
  text-decoration: underline;
  transition: color 0.5s ease-in-out;
}

.ctc-pg .privacy-row label a:hover {
  color: #536874;
}

.ctc-pg .submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  font-size: 21px;
  line-height: 1.5;
  color: #536874;
  background: transparent;
  border: 2px solid #536874;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.55s ease-in-out;
  align-self: flex-start;
}

.ctc-pg .submit-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: #536874;
  transition: height 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.ctc-pg .submit-btn::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: border-color 0.5s ease-in-out;
  z-index: 1;
  pointer-events: none;
}

.ctc-pg .submit-btn:hover::before {
  height: 100%;
}

.ctc-pg .submit-btn:hover::after {
  border-color: rgba(255, 255, 255, 0.35);
}

.ctc-pg .submit-btn:hover {
  color: #fff;
  border-color: #536874;
}

.ctc-pg .submit-btn:focus {
  outline: 3px solid #ADD8F3;
  outline-offset: 3px;
}

.ctc-pg .submit-btn span {
  position: relative;
  z-index: 2;
}

@media (max-width: 1280px) {
  .ctc-pg .band-top {
    padding: 36px 36px;
  }

  .ctc-pg .contact-body {
    padding: 72px 36px;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .ctc-pg .band-top {
    padding: 36px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ctc-pg .band-top-text h1 {
    font-size: 38px;
  }

  .ctc-pg .band-top-text p {
    font-size: 21px;
  }

  .ctc-pg .band-top-img {
    width: 100%;
    height: 180px;
  }

  .ctc-pg .contact-body {
    grid-template-columns: 1fr;
    padding: 72px 24px;
    gap: 36px;
  }

  .ctc-pg .field-row {
    grid-template-columns: 1fr;
  }

  .ctc-pg .form-col {
    padding: 24px;
  }
}

@media (max-width: 390px) {
  .ctc-pg .band-top {
    padding: 24px 12px;
  }

  .ctc-pg .band-top-text h1 {
    font-size: 38px;
  }

  .ctc-pg .contact-body {
    padding: 36px 12px;
  }

  .ctc-pg .form-col {
    padding: 24px 12px;
  }

  .ctc-pg .submit-btn {
    width: 100%;
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 24px;
  background: #ffffff;
}

.success-page .confirmation-wrapper {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.success-page .status-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 48px;
  background: linear-gradient(to left, #ADD8F3, #97A9BD);
  box-shadow: 1px 8px 52px 0 rgba(83, 104, 116, 0.14);
}

.success-page .status-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.success-page .confirm-heading {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 24px;
  background: linear-gradient(to left, #97A9BD, #536874);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-page .confirm-body {
  font-size: 21px;
  line-height: 1.7;
  color: #536874;
  margin: 0 0 36px;
}

.success-page .confirm-body span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: #97A9BD;
  margin-top: 12px;
}

.success-page .divider-line {
  width: 64px;
  height: 2px;
  background: linear-gradient(to left, #ADD8F3, #97A9BD);
  border-radius: 7px;
  margin: 0 auto 36px;
}

.success-page .action-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.success-page .action-group .btn-primary {
  display: inline-block;
  padding: 12px 36px;
  font-size: 13px;
  line-height: 1.5;
  color: #536874;
  border: 2px solid #536874;
  border-radius: 12px;
  background: transparent;
  text-decoration: none;
  position: relative;
  transition: color 0.55s ease-in-out, background 0.55s ease-in-out, box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-page .action-group .btn-primary::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color 0.6s ease-in-out;
  pointer-events: none;
}

.success-page .action-group .btn-primary:hover {
  background: #536874;
  color: #ffffff;
  box-shadow: 1px 4px 18px 0 rgba(83, 104, 116, 0.08);
}

.success-page .action-group .btn-primary:hover::after {
  border-color: rgba(173, 216, 243, 0.4);
}

.success-page .action-group .btn-secondary {
  display: inline-block;
  padding: 12px 36px;
  font-size: 13px;
  line-height: 1.5;
  color: #97A9BD;
  border: 2px solid #97A9BD;
  border-radius: 12px;
  background: transparent;
  text-decoration: none;
  position: relative;
  transition: color 0.5s ease-in-out, background 0.5s ease-in-out, box-shadow 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-page .action-group .btn-secondary::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color 0.58s ease-in-out;
  pointer-events: none;
}

.success-page .action-group .btn-secondary:hover {
  background: #97A9BD;
  color: #ffffff;
  box-shadow: 1px 4px 18px 0 rgba(151, 169, 189, 0.08);
}

.success-page .action-group .btn-secondary:hover::after {
  border-color: rgba(83, 104, 116, 0.3);
}

.success-page .meta-note {
  margin-top: 36px;
  font-size: 13px;
  line-height: 1.5;
  color: #97A9BD;
  padding: 12px 24px;
  border-radius: 12px;
  background: linear-gradient(to left, rgba(173, 216, 243, 0.1), rgba(151, 169, 189, 0.08));
  box-shadow: inset 1px 3px 6px 0 rgba(83, 104, 116, 0.06);
}

@media (max-width: 390px) {
  .success-page {
    padding: 36px 12px;
  }

  .success-page .confirm-heading {
    font-size: 21px;
  }

  .success-page .confirm-body {
    font-size: 13px;
  }

  .success-page .action-group {
    flex-direction: column;
    align-items: stretch;
  }

  .success-page .action-group .btn-primary,
  .success-page .action-group .btn-secondary {
    text-align: center;
  }
}