* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.site-header {
  background: linear-gradient(160deg, #486CAE 0%, #3a5a96 55%, #2e4a80 100%);
  position: relative;
}

.site-header::after {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #B0A8CC 0%, #486CAE 50%, #B0A8CC 100%);
}

.hd-upper {
  border-bottom: 1px solid rgba(176, 168, 204, 0.25);
  padding: 24px 32px;
}

.hd-upper-box {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-box {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09), 0 3px 2px 0 rgba(72, 108, 174, 0.05);
  padding: 8px;
  flex-shrink: 0;
}

.brand-logo-box img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 15px;
  color: rgba(176, 168, 204, 0.9);
  line-height: 1.35;
  font-weight: 400;
}

.hd-contact-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.hd-contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.hd-contact-label {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 15px;
  color: rgba(176, 168, 204, 0.75);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
}

.hd-contact-val {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.35;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hd-contact-val:hover,
.hd-contact-val:focus {
  color: #B0A8CC;
  outline: none;
}

.hd-contact-val:focus {
  background: rgba(176, 168, 204, 0.15);
  border-radius: 8px;
  padding: 4px 8px;
}

.hd-nav-row {
  padding: 0 32px;
}

.hd-nav-box {
  max-width: 1140px;
  margin: 0 auto;
}

.hd-nav {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hd-nav li {
  display: flex;
}

.hd-nav-link {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(242, 242, 247, 0.85);
  text-decoration: none;
  padding: 16px 24px;
  line-height: 1.35;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.0, 0, 0.2, 1), background 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  white-space: nowrap;
}

.hd-nav-link:hover {
  color: #ffffff;
  border-bottom-color: #B0A8CC;
  background: rgba(176, 168, 204, 0.1);
}

.hd-nav-link:focus {
  color: #ffffff;
  outline: none;
  background: rgba(176, 168, 204, 0.15);
  border-bottom-color: #B0A8CC;
}

.hd-nav-link.active {
  color: #ffffff;
  border-bottom-color: #ffffff;
  font-weight: 700;
}

.site-footer {
  background: #2e4a80;
  color: #F2F2F7;
  font-family: 'Merriweather', Georgia, serif;
}

.ft-upper {
  padding: 64px 32px 32px;
  border-bottom: 1px solid rgba(176, 168, 204, 0.2);
}

.ft-upper-box {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.ft-brand-col {
  flex: 0 0 auto;
  min-width: 220px;
  max-width: 280px;
}

.ft-brand-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(242, 242, 247, 0.75);
  margin: 16px 0 0;
  font-weight: 400;
}

.ft-contacts-col {
  flex: 1 1 200px;
}

.ft-col-head {
  font-size: 15px;
  font-weight: 700;
  color: #B0A8CC;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.ft-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-contact-list li {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(242, 242, 247, 0.8);
}

.ft-contact-list a {
  color: rgba(242, 242, 247, 0.8);
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ft-contact-list a:hover {
  color: #ffffff;
}

.ft-contact-list a:focus {
  color: #ffffff;
  outline: none;
  background: rgba(176, 168, 204, 0.15);
  border-radius: 8px;
  padding: 4px 8px;
}

.ft-links-col {
  flex: 0 0 auto;
  min-width: 160px;
}

.ft-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-link-list a {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(242, 242, 247, 0.75);
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ft-link-list a:hover {
  color: #ffffff;
}

.ft-link-list a:focus {
  color: #ffffff;
  outline: none;
  background: rgba(176, 168, 204, 0.15);
  border-radius: 8px;
  padding: 4px 8px;
}

.ft-lower {
  padding: 24px 32px;
  background: rgba(0, 0, 0, 0.15);
}

.ft-lower-box {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ft-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-logo-box {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.13), 0 3px 2px 0 rgba(72, 108, 174, 0.05);
}

.ft-logo-box img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.ft-copy {
  font-size: 15px;
  color: rgba(242, 242, 247, 0.5);
  line-height: 1.35;
  text-align: center;
  margin: 0;
}

.cookie-mount {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 8000;
  max-width: 340px;
  width: calc(100vw - 48px);
  display: none;
}

.cookie-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 52px 0 rgba(72, 108, 174, 0.13), 0 4px 18px 0 rgba(72, 108, 174, 0.09);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.18s cubic-bezier(0.0, 0, 0.2, 1), opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #F2F2F7;
  margin-bottom: 16px;
}

.cookie-icon-wrap svg {
  display: block;
}

.cookie-text {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 15px;
  line-height: 1.6;
  color: #1a2540;
  margin: 0 0 16px;
}

.cookie-text a {
  color: #486CAE;
  text-decoration: underline;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-text a:hover {
  color: #3a5a96;
}

.cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: #486CAE;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cookie-btn-accept:hover {
  background: #3a5a96;
}

.cookie-btn-accept:focus {
  outline: none;
  background: #3a5a96;
}

.cookie-btn-reject {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: #486CAE;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 8px 0;
  min-height: 44px;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-btn-reject:hover {
  color: #2e4a80;
}

.cookie-btn-reject:focus {
  outline: none;
  color: #2e4a80;
}

@media (max-width: 768px) {
  .hd-upper {
    padding: 16px;
  }

  .hd-upper-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hd-contact-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hd-contact-item {
    align-items: flex-start;
  }

  .hd-nav-row {
    padding: 0 16px;
  }

  .hd-nav-link {
    padding: 16px 16px;
    font-size: 15px;
  }

  .ft-upper {
    padding: 32px 16px 24px;
  }

  .ft-upper-box {
    flex-direction: column;
    gap: 24px;
  }

  .ft-brand-col {
    max-width: 100%;
  }

  .ft-lower {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 20px;
  }

  .hd-nav-link {
    padding: 16px 12px;
    font-size: 15px;
  }

  .cookie-mount {
    top: 16px;
    left: 16px;
    width: calc(100vw - 32px);
  }
}

@media (min-width: 1280px) {
  .hd-upper {
    padding: 24px 64px;
  }

  .hd-nav-row {
    padding: 0 64px;
  }

  .ft-upper {
    padding: 64px 64px 32px;
  }

  .ft-lower {
    padding: 24px 64px;
  }
}

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

.info-policy {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 32px;
}

.info-policy h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2a42;
  margin-bottom: 32px;
  margin-top: 0;
}

.info-policy h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #1b2a42;
  margin-top: 64px;
  margin-bottom: 24px;
}

.info-policy h3 {
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #1b2a42;
  margin-top: 32px;
  margin-bottom: 16px;
}

.info-policy h4 {
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: #1b2a42;
  margin-top: 32px;
  margin-bottom: 16px;
}

.info-policy h5 {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  color: #1b2a42;
  margin-top: 24px;
  margin-bottom: 8px;
}

.info-policy h6 {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0;
  color: #486CAE;
  margin-top: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-policy p {
  font-size: 16px;
  line-height: 1.8;
  color: #2c3a50;
  margin-top: 0;
  margin-bottom: 16px;
}

.info-policy ul,
.info-policy ol {
  font-size: 16px;
  line-height: 1.8;
  color: #2c3a50;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 24px;
}

.info-policy ul {
  list-style: none;
  padding-left: 0;
}

.info-policy ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.info-policy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background-color: #B0A8CC;
}

.info-policy ol {
  list-style: none;
  padding-left: 0;
  counter-reset: policy-counter;
}

.info-policy ol li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 8px;
  counter-increment: policy-counter;
}

.info-policy ol li::before {
  content: counter(policy-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 8px;
  background-color: #F2F2F7;
  color: #486CAE;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.info-policy li {
  font-size: 16px;
  line-height: 1.8;
  color: #2c3a50;
}

.info-policy strong,
.info-policy b {
  font-weight: 700;
  color: #1b2a42;
}

.info-policy a {
  color: #486CAE;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color 0.15s cubic-bezier(0.0, 0, 0.2, 1);
}

.info-policy a:hover {
  color: #2c4d82;
  text-decoration-color: #B0A8CC;
}

.info-policy table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
  border-radius: 8px;
  overflow: hidden;
}

.info-policy thead {
  background-color: #486CAE;
}

.info-policy thead th {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px;
  text-align: left;
}

.info-policy tbody tr {
  border-bottom: 1px solid #F2F2F7;
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-policy tbody tr:last-child {
  border-bottom: none;
}

.info-policy tbody tr:hover {
  background-color: #F2F2F7;
}

.info-policy td {
  padding: 16px;
  color: #2c3a50;
  font-size: 15px;
  line-height: 1.6;
  vertical-align: top;
}

.info-policy tbody tr:nth-child(even) {
  background-color: #fafafd;
}

.info-policy tbody tr:nth-child(even):hover {
  background-color: #F2F2F7;
}

.info-policy div {
  font-size: 16px;
  line-height: 1.8;
  color: #2c3a50;
}

@media (max-width: 768px) {
  .info-policy {
    padding: 32px 16px;
  }

  .info-policy h1 {
    font-size: 34px;
  }

  .info-policy h2 {
    font-size: 24px;
    margin-top: 32px;
  }

  .info-policy h3 {
    font-size: 20px;
  }

  .info-policy h4 {
    font-size: 16px;
  }

  .info-policy table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .info-policy {
    padding: 24px 16px;
  }

  .info-policy h1 {
    font-size: 24px;
  }

  .info-policy h2 {
    font-size: 20px;
    margin-top: 24px;
  }

  .info-policy h3 {
    font-size: 16px;
  }

  .info-policy p,
  .info-policy li,
  .info-policy td {
    font-size: 15px;
  }

  .info-policy thead th {
    padding: 8px;
  }

  .info-policy td {
    padding: 8px;
  }
}

.lrn-prog {
  max-width: 100%;
  overflow-x: hidden;
}

.lrn-prog .pg-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.lrn-prog .grad-text {
  background: linear-gradient(127deg, #486CAE 30%, #B0A8CC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lrn-prog .dot-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 0;
}

.lrn-prog .dot-div span {
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background: #B0A8CC;
  display: block;
}

.lrn-prog .dot-div span:nth-child(2) {
  background: #486CAE;
}

/* ── SECTION 1: TITLE BLOCK ── */
.lrn-prog .title-blk {
  padding: 48px 0 64px;
  position: relative;
}

.lrn-prog .title-blk .frame-deco {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 0;
  pointer-events: none;
  border: 1px solid rgba(72, 108, 174, 0.12);
  border-radius: 8px;
}

.lrn-prog .title-blk .frame-deco::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(176, 168, 204, 0.08);
  border-radius: 8px;
}

.lrn-prog .title-inner {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
  padding: 32px;
}

.lrn-prog .title-img-strip {
  width: 220px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.lrn-prog .title-img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lrn-prog .title-img-strip:hover img {
  transform: scale(1.04);
}

.lrn-prog .title-img-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(127deg, rgba(72, 108, 174, 0.28) 0%, rgba(176, 168, 204, 0.15) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.lrn-prog .title-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.lrn-prog .title-tag {
  display: inline-block;
  font-size: 15px;
  line-height: 1.35;
  color: #486CAE;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.lrn-prog .title-h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1e2a3a;
  margin: 0;
}

.lrn-prog .title-h1 .uline {
  text-decoration: none;
  position: relative;
  display: inline-block;
  color: #486CAE;
}

.lrn-prog .title-h1 .uline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #486CAE;
  border-radius: 8px;
}

.lrn-prog .title-sub {
  font-size: 20px;
  line-height: 1.6;
  color: #3a4558;
  margin: 0;
  max-width: 560px;
}

.lrn-prog .title-meta {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.lrn-prog .meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lrn-prog .meta-label {
  font-size: 15px;
  line-height: 1.35;
  color: #7a8aaa;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lrn-prog .meta-val {
  font-size: 20px;
  line-height: 1.35;
  color: #1e2a3a;
  font-weight: 700;
}

.lrn-prog .btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: #486CAE;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
  align-self: flex-start;
}

.lrn-prog .btn-primary:hover {
  background: #3a5a96;
  box-shadow: 0 10px 52px 0 rgba(72, 108, 174, 0.13);
}

.lrn-prog .btn-primary:focus {
  outline: 2px solid #486CAE;
  outline-offset: 3px;
}

.lrn-prog .btn-primary:active {
  background: #2e4a80;
}

/* ── SECTION 2: PROGRAM STRUCTURE ── */
.lrn-prog .prog-struct {
  background: #F2F2F7;
  padding: 64px 0;
  position: relative;
}

.lrn-prog .prog-struct .geo-circle {
  position: absolute;
  border-radius: 48px;
  pointer-events: none;
  opacity: 0.06;
}

.lrn-prog .prog-struct .geo-circle.gc1 {
  width: 320px;
  height: 320px;
  border: 2px solid #486CAE;
  border-radius: 50%;
  top: -80px;
  right: -60px;
  overflow: hidden;
}

.lrn-prog .prog-struct .geo-circle.gc2 {
  width: 180px;
  height: 180px;
  border: 2px solid #B0A8CC;
  border-radius: 50%;
  bottom: 40px;
  left: -40px;
  overflow: hidden;
}

.lrn-prog .struct-head {
  margin-bottom: 48px;
}

.lrn-prog .struct-head .sh-label {
  font-size: 15px;
  line-height: 1.35;
  color: #B0A8CC;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.lrn-prog .struct-head h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: #1e2a3a;
}

.lrn-prog .struct-head .sh-body {
  font-size: 16px;
  line-height: 1.6;
  color: #3a4558;
  max-width: 640px;
  margin: 0;
}

.lrn-prog .struct-cols {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.lrn-prog .struct-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: 0 3px 2px 0 rgba(72, 108, 174, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.lrn-prog .struct-card:hover {
  box-shadow: 0 10px 52px 0 rgba(72, 108, 174, 0.13);
}

.lrn-prog .struct-card.center-card {
  padding: 40px 28px;
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
}

.lrn-prog .card-num {
  width: 36px;
  height: 36px;
  border-radius: 48px;
  background: #486CAE;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lrn-prog .card-num.sec {
  background: #B0A8CC;
}

.lrn-prog .card-num.ter {
  background: linear-gradient(127deg, #486CAE 30%, #B0A8CC 100%);
}

.lrn-prog .struct-card h4 {
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #1e2a3a;
  margin: 0;
}

.lrn-prog .struct-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a4558;
  margin: 0;
}

.lrn-prog .struct-card ol {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lrn-prog .struct-card ol li {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4558;
}

.lrn-prog .struct-card ol li::marker {
  color: #486CAE;
  font-weight: 700;
}

/* pyramid */
.lrn-prog .pyramid-wrap {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.lrn-prog .pyr-layer {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: #fff;
  padding: 8px 0;
  transition: opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.lrn-prog .pyr-layer:hover {
  opacity: 0.85;
}

.lrn-prog .pyr-layer.pl1 {
  width: 55%;
  background: #486CAE;
}

.lrn-prog .pyr-layer.pl2 {
  width: 70%;
  background: #5a7ec0;
}

.lrn-prog .pyr-layer.pl3 {
  width: 85%;
  background: #7a9ad0;
}

.lrn-prog .pyr-layer.pl4 {
  width: 100%;
  background: #B0A8CC;
}

.lrn-prog .pyr-label {
  font-size: 15px;
  line-height: 1.35;
  color: #7a8aaa;
  text-align: center;
  margin-top: 8px;
}

/* fill animation on struct-card */
.lrn-prog .fill-btn {
  display: inline-block;
  position: relative;
  padding: 12px 24px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: #486CAE;
  border: 1.5px solid #486CAE;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  align-self: flex-start;
}

.lrn-prog .fill-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #486CAE;
  border-radius: 8px;
  transition: width 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.lrn-prog .fill-btn:hover::before {
  width: 100%;
}

.lrn-prog .fill-btn:hover {
  color: #fff;
}

.lrn-prog .fill-btn span {
  position: relative;
  z-index: 1;
}

/* ── SECTION 3: INSTRUCTORS / COMPLEX BLOCK ── */
.lrn-prog .experts-blk {
  background: #486CAE;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.lrn-prog .experts-blk .geo-bg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.07;
  border: 2px solid #fff;
}

.lrn-prog .experts-blk .geo-bg.gb1 {
  width: 400px;
  height: 400px;
  top: -120px;
  left: -80px;
  overflow: hidden;
}

.lrn-prog .experts-blk .geo-bg.gb2 {
  width: 260px;
  height: 260px;
  bottom: -80px;
  right: 10%;
  overflow: hidden;
}

.lrn-prog .experts-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.lrn-prog .experts-top {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-end;
}

.lrn-prog .experts-top-text {
  flex: 1;
}

.lrn-prog .experts-top-text .et-label {
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.lrn-prog .experts-top-text h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 16px;
}

.lrn-prog .experts-top-text .et-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 520px;
}

.lrn-prog .experts-top-cta {
  flex-shrink: 0;
}

.lrn-prog .btn-inv {
  display: inline-block;
  padding: 16px 32px;
  background: #fff;
  color: #486CAE;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s cubic-bezier(0.0, 0, 0.2, 1), color 0.18s cubic-bezier(0.0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
}

.lrn-prog .btn-inv:hover {
  background: #F2F2F7;
  box-shadow: 0 10px 52px 0 rgba(72, 108, 174, 0.13);
}

.lrn-prog .btn-inv:focus {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.lrn-prog .experts-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lrn-prog .exp-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.lrn-prog .exp-card:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lrn-prog .exp-card:hover .exp-portrait img {
  transform: scale(1.04);
}

.lrn-prog .exp-portrait {
  width: 100%;
  aspect-ratio: 7/9;
  border-radius: 8px;
  overflow: hidden;
}

.lrn-prog .exp-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lrn-prog .exp-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lrn-prog .exp-name {
  font-size: 20px;
  line-height: 1.35;
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.lrn-prog .exp-role {
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.lrn-prog .exp-bio {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.lrn-prog .exp-aside {
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* hover fade inner layers */
.lrn-prog .exp-card .exp-overlay {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(127deg, rgba(72, 108, 174, 0.18) 0%, rgba(176, 168, 204, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.lrn-prog .exp-card:hover .exp-overlay {
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1280px) {
  .lrn-prog .title-h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .lrn-prog .title-inner {
    flex-direction: column;
    padding: 24px;
  }

  .lrn-prog .title-img-strip {
    width: 100%;
    height: 220px;
  }

  .lrn-prog .title-h1 {
    font-size: 34px;
  }

  .lrn-prog .title-sub {
    font-size: 16px;
  }

  .lrn-prog .struct-cols {
    grid-template-columns: 1fr;
  }

  .lrn-prog .struct-card.center-card {
    padding: 32px 24px;
  }

  .lrn-prog .experts-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .lrn-prog .experts-cards {
    grid-template-columns: 1fr;
  }

  .lrn-prog .experts-blk {
    padding: 48px 0;
  }

  .lrn-prog .prog-struct {
    padding: 48px 0;
  }

  .lrn-prog .title-blk {
    padding: 32px 0 48px;
  }
}

@media (max-width: 480px) {
  .lrn-prog .pg-wrap {
    padding: 0 16px;
  }

  .lrn-prog .title-h1 {
    font-size: 24px;
  }

  .lrn-prog .struct-head h2,
  .lrn-prog .experts-top-text h2 {
    font-size: 24px;
  }

  .lrn-prog .title-meta {
    gap: 16px;
  }

  .lrn-prog .btn-primary,
  .lrn-prog .btn-inv {
    padding: 16px 24px;
  }

  .lrn-prog .experts-cards {
    grid-template-columns: 1fr;
  }
}

.dbt-pg {
  max-width: 100%;
  overflow-x: hidden;
}

.dbt-pg .pg-row {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.dbt-pg .t-band {
  background: #ffffff;
  padding-top: 32px;
  padding-bottom: 32px;
}

.dbt-pg .t-band .pg-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.dbt-pg .t-head-col {
  flex: 1 1 0;
  min-width: 0;
}

.dbt-pg .t-img-col {
  flex: 0 0 340px;
  position: relative;
}

.dbt-pg .t-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 200px;
}

.dbt-pg .t-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dbt-pg .t-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(72, 108, 174, 0.45);
  border-radius: 8px;
}

.dbt-pg .t-dots {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-bottom: 16px;
}

.dbt-pg .t-dot {
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #486CAE;
  opacity: 0.35;
}

.dbt-pg .t-dot.active {
  opacity: 1;
  width: 24px;
}

.dbt-pg .t-dot.mid {
  opacity: 0.65;
}

.dbt-pg .t-label {
  font-size: 15px;
  line-height: 1.35;
  color: #486CAE;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dbt-pg .t-h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 8px 0;
  background: linear-gradient(127deg, #486CAE 30%, #B0A8CC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dbt-pg .t-h1 span {
  display: block;
}

.dbt-pg .t-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a4a;
  max-width: 480px;
  margin: 0;
}

.dbt-pg .t-sub em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: #486CAE;
  text-underline-offset: 3px;
}

.dbt-pg .avail-sec {
  background: #F2F2F7;
  padding-top: 64px;
  padding-bottom: 64px;
}

.dbt-pg .avail-sec .pg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.dbt-pg .avail-left {
  position: relative;
}

.dbt-pg .avail-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 320px;
}

.dbt-pg .avail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dbt-pg .avail-img-wrap:hover img {
  transform: scale(1.04);
}

.dbt-pg .avail-badge {
  display: inline-block;
  background: #486CAE;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
  padding: 4px 16px;
  border-radius: 8px;
  margin-top: 16px;
  box-shadow: 0 3px 2px 0 rgba(72, 108, 174, 0.05);
}

.dbt-pg .avail-right {
  padding-top: 8px;
}

.dbt-pg .sec-label {
  font-size: 15px;
  line-height: 1.35;
  color: #B0A8CC;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dbt-pg .avail-h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 24px 0;
  background: linear-gradient(127deg, #486CAE 25%, #B0A8CC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dbt-pg .avail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: avail-counter;
}

.dbt-pg .avail-list li {
  counter-increment: avail-counter;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(72, 108, 174, 0.12);
}

.dbt-pg .avail-list li:last-child {
  border-bottom: none;
}

.dbt-pg .avail-num {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  min-width: 32px;
  color: #486CAE;
}

.dbt-pg .avail-num span.frac {
  color: #B0A8CC;
}

.dbt-pg .avail-item-body {
  flex: 1 1 0;
}

.dbt-pg .avail-item-body strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
  color: #1e2235;
  margin-bottom: 4px;
}

.dbt-pg .avail-item-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a5a;
  margin: 0;
}

.dbt-pg .hesit-sec {
  background: #ffffff;
  padding-top: 64px;
  padding-bottom: 64px;
}

.dbt-pg .hesit-sec .pg-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dbt-pg .hesit-top {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.dbt-pg .hesit-q-col {
  flex: 0 0 380px;
}

.dbt-pg .hesit-h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 16px 0;
  color: #1e2235;
}

.dbt-pg .hesit-h2 .acc-word {
  display: inline-block;
  color: #486CAE;
  text-decoration: underline;
  text-decoration-color: #B0A8CC;
  text-underline-offset: 4px;
}

.dbt-pg .hesit-note {
  font-size: 15px;
  line-height: 1.6;
  color: #6a6a7a;
  font-style: italic;
  border-left: none;
  padding: 0;
  margin: 0;
}

.dbt-pg .hesit-a-col {
  flex: 1 1 0;
  min-width: 0;
}

.dbt-pg .hesit-body {
  font-size: 16px;
  line-height: 1.8;
  color: #2e2e3e;
  margin: 0 0 16px 0;
}

.dbt-pg .hesit-aside {
  font-size: 15px;
  line-height: 1.6;
  color: #5a5a6a;
  background: #F2F2F7;
  border-radius: 8px;
  padding: 16px 24px;
}

.dbt-pg .hesit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dbt-pg .hesit-card {
  background: #F2F2F7;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 3px 2px 0 rgba(72, 108, 174, 0.05);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dbt-pg .hesit-card:hover {
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
}

.dbt-pg .hesit-card-num {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.dbt-pg .hesit-card-num .int {
  color: #486CAE;
}

.dbt-pg .hesit-card-num .frc {
  color: #B0A8CC;
}

.dbt-pg .hesit-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a4a;
  margin: 0;
}

.dbt-pg .approach-sec {
  background: linear-gradient(127deg, #2a3550 0%, #486CAE 60%, #F2F2F7 100%);
  padding-top: 64px;
  padding-bottom: 64px;
}

.dbt-pg .approach-sec .pg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.dbt-pg .approach-left {
  color: #ffffff;
}

.dbt-pg .approach-label {
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dbt-pg .approach-h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin: 0 0 24px 0;
}

.dbt-pg .approach-h2 .acc {
  color: #B0A8CC;
}

.dbt-pg .approach-p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 16px 0;
}

.dbt-pg .approach-p:last-child {
  margin-bottom: 0;
}

.dbt-pg .approach-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dbt-pg .approach-step {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  backdrop-filter: blur(4px);
  transition: background 0.2s cubic-bezier(0.0, 0, 0.2, 1);
  cursor: default;
}

.dbt-pg .approach-step:hover {
  background: rgba(255, 255, 255, 0.18);
}

.dbt-pg .approach-step-n {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
  min-width: 32px;
}

.dbt-pg .approach-step-n .sfrac {
  color: #B0A8CC;
}

.dbt-pg .approach-step-body strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 4px;
}

.dbt-pg .approach-step-body p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.dbt-pg .gap-sec {
  background: #ffffff;
  padding-top: 64px;
  padding-bottom: 64px;
}

.dbt-pg .gap-sec .pg-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.dbt-pg .gap-main {
  flex: 1 1 0;
  min-width: 0;
}

.dbt-pg .gap-h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 24px 0;
  background: linear-gradient(127deg, #486CAE 25%, #B0A8CC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dbt-pg .gap-p {
  font-size: 16px;
  line-height: 1.8;
  color: #2e2e3e;
  margin: 0 0 16px 0;
}

.dbt-pg .gap-p:last-child {
  margin-bottom: 0;
}

.dbt-pg .gap-p em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: #486CAE;
  text-underline-offset: 3px;
}

.dbt-pg .gap-aside {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dbt-pg .gap-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 180px;
}

.dbt-pg .gap-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.dbt-pg .gap-note {
  background: #F2F2F7;
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a5a;
}

.dbt-pg .grad-sec {
  background: #F2F2F7;
  padding-top: 64px;
  padding-bottom: 64px;
}

.dbt-pg .grad-sec .pg-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dbt-pg .grad-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.dbt-pg .grad-h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 16px 0;
  color: #1e2235;
}

.dbt-pg .grad-h2 .acc {
  text-decoration: underline;
  text-decoration-color: #486CAE;
  text-underline-offset: 4px;
  color: #486CAE;
}

.dbt-pg .grad-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #2e2e3e;
  margin: 0;
}

.dbt-pg .grad-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 260px;
}

.dbt-pg .grad-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.dbt-pg .grad-img-wrap:hover img {
  transform: scale(1.04);
}

.dbt-pg .grad-outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dbt-pg .grad-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 3px 2px 0 rgba(72, 108, 174, 0.05);
  transition: box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.dbt-pg .grad-item:hover {
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
  transform: translateY(-2px);
}

.dbt-pg .grad-item-n {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.dbt-pg .grad-item-n .int {
  color: #486CAE;
}

.dbt-pg .grad-item-n .frc {
  color: #B0A8CC;
}

.dbt-pg .grad-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a4a;
  margin: 0;
}

.dbt-pg .grad-person {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
}

.dbt-pg .grad-portrait-wrap {
  flex: 0 0 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.dbt-pg .grad-portrait-wrap img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dbt-pg .grad-person-text {
  flex: 1 1 0;
  min-width: 0;
}

.dbt-pg .grad-person-text blockquote {
  font-size: 16px;
  line-height: 1.8;
  color: #2e2e3e;
  margin: 0 0 8px 0;
  font-style: italic;
}

.dbt-pg .grad-person-text cite {
  font-size: 15px;
  line-height: 1.35;
  color: #486CAE;
  font-style: normal;
}

.dbt-pg .fill-bar-wrap {
  margin-top: 8px;
}

.dbt-pg .fill-bar-label {
  font-size: 15px;
  line-height: 1.35;
  color: #4a4a5a;
  margin-bottom: 4px;
}

.dbt-pg .fill-bar-track {
  height: 6px;
  background: #e8e8f0;
  border-radius: 48px;
  overflow: hidden;
}

.dbt-pg .fill-bar-fill {
  height: 100%;
  border-radius: 48px;
  background: linear-gradient(90deg, #486CAE 0%, #B0A8CC 100%);
  animation: fill-in 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: left;
}

@keyframes fill-in {
  from {
    width: 0%;
  }

  to {
    width: var(--fill-w);
  }
}

.dbt-pg .curve-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.dbt-pg .curve-divider svg {
  display: block;
  width: 100%;
}

@media (max-width: 1280px) {
  .dbt-pg .grad-outcomes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dbt-pg .t-band .pg-row {
    flex-direction: column;
    gap: 24px;
  }

  .dbt-pg .t-img-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .dbt-pg .t-h1 {
    font-size: 34px;
  }

  .dbt-pg .avail-sec .pg-row {
    grid-template-columns: 1fr;
  }

  .dbt-pg .hesit-top {
    flex-direction: column;
    gap: 24px;
  }

  .dbt-pg .hesit-q-col {
    flex: 0 0 auto;
  }

  .dbt-pg .hesit-cards {
    grid-template-columns: 1fr;
  }

  .dbt-pg .approach-sec .pg-row {
    grid-template-columns: 1fr;
  }

  .dbt-pg .gap-sec .pg-row {
    flex-direction: column;
  }

  .dbt-pg .gap-aside {
    flex: 0 0 auto;
    width: 100%;
  }

  .dbt-pg .grad-top {
    grid-template-columns: 1fr;
  }

  .dbt-pg .grad-outcomes {
    grid-template-columns: 1fr 1fr;
  }

  .dbt-pg .grad-person {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .dbt-pg .pg-row {
    padding-left: 16px;
    padding-right: 16px;
  }

  .dbt-pg .t-h1 {
    font-size: 24px;
  }

  .dbt-pg .avail-h2,
  .dbt-pg .hesit-h2,
  .dbt-pg .approach-h2,
  .dbt-pg .gap-h2,
  .dbt-pg .grad-h2 {
    font-size: 24px;
  }

  .dbt-pg .grad-outcomes {
    grid-template-columns: 1fr;
  }

  .dbt-pg .hesit-cards {
    grid-template-columns: 1fr;
  }

  .dbt-pg .avail-sec {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .dbt-pg .hesit-sec,
  .dbt-pg .approach-sec,
  .dbt-pg .gap-sec,
  .dbt-pg .grad-sec {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.srvs-pg {
  max-width: 100%;
  overflow-x: hidden;
}

.srvs-pg .pg-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.srvs-pg .grad-txt {
  background: linear-gradient(127deg, #486CAE 30%, #B0A8CC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes track-expand {
  from {
    letter-spacing: -0.04em;
    opacity: 0;
  }

  to {
    letter-spacing: -0.01em;
    opacity: 1;
  }
}

.srvs-pg .anim-track {
  animation: track-expand 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.srvs-pg .accent-dot {
  color: #486CAE;
  -webkit-text-fill-color: #486CAE;
}

.srvs-pg .accent-ul {
  text-decoration: underline;
  text-decoration-color: #486CAE;
  text-underline-offset: 3px;
}

.srvs-pg .wavy-top {
  position: relative;
}

.srvs-pg .wavy-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='4'%3E%3Cpath d='M0 2 Q15 0 30 2 Q45 4 60 2 Q75 0 90 2 Q105 4 120 2' fill='none' stroke='%23B0A8CC' stroke-width='1.5'/%3E%3C/svg%3E") repeat-x center;
}

.srvs-pg .wavy-bot {
  position: relative;
}

.srvs-pg .wavy-bot::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='4'%3E%3Cpath d='M0 2 Q15 0 30 2 Q45 4 60 2 Q75 0 90 2 Q105 4 120 2' fill='none' stroke='%23486CAE' stroke-width='1.5'/%3E%3C/svg%3E") repeat-x center;
}

.srvs-pg .step-divider {
  width: 100%;
  height: 32px;
  background: linear-gradient(to right, #F2F2F7 50%, #ffffff 50%);
  clip-path: polygon(0 0, 50% 0, 50% 60%, 100% 0, 100% 100%, 0 100%);
}

.srvs-pg .step-divider-rev {
  width: 100%;
  height: 32px;
  background: linear-gradient(to right, #ffffff 50%, #F2F2F7 50%);
  clip-path: polygon(0 100%, 50% 40%, 50% 100%, 100% 100%, 100% 0, 0 0);
}

.srvs-pg .title-strip {
  background: #ffffff;
  padding: 48px 0 32px;
  position: relative;
}

.srvs-pg .title-strip .pg-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.srvs-pg .title-img-card {
  flex: 0 0 260px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
  position: relative;
}

.srvs-pg .title-img-card img {
  width: 260px;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85) brightness(0.97);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.srvs-pg .title-img-card:hover img {
  transform: scale(1.04);
}

.srvs-pg .title-img-card .grain-layer {
  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%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  border-radius: 8px;
}

.srvs-pg .geo-deco {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(72, 108, 174, 0.18);
  border-radius: 8px;
  transform: rotate(20deg);
  pointer-events: none;
}

.srvs-pg .geo-deco2 {
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(176, 168, 204, 0.22);
  border-radius: 8px;
  transform: rotate(-12deg);
  pointer-events: none;
}

.srvs-pg .title-text {
  flex: 1;
}

.srvs-pg .title-text .eyebrow {
  font-size: 15px;
  color: #486CAE;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.35;
}

.srvs-pg .title-text h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: #1e2a3a;
}

.srvs-pg .title-text .sub {
  font-size: 16px;
  line-height: 1.6;
  color: #3a4a5c;
  margin: 0;
  max-width: 520px;
}

.srvs-pg .cards-band {
  background: #F2F2F7;
  padding: 64px 0;
  position: relative;
}

.srvs-pg .cards-band .band-head {
  margin-bottom: 32px;
}

.srvs-pg .cards-band .band-head h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: #1e2a3a;
}

.srvs-pg .cards-band .band-head p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a4a5c;
  margin: 0;
  max-width: 600px;
}

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

.srvs-pg .svc-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: 0 3px 2px 0 rgba(72, 108, 174, 0.05);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.srvs-pg .svc-card:hover {
  box-shadow: 0 10px 52px 0 rgba(72, 108, 174, 0.13);
  transform: translateY(-3px);
}

.srvs-pg .svc-card .card-num {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(127deg, #486CAE 30%, #B0A8CC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.srvs-pg .svc-card h3 {
  font-size: 20px;
  line-height: 1.35;
  color: #1e2a3a;
  margin: 0;
}

.srvs-pg .svc-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4a5c;
  margin: 0;
  flex: 1;
}

.srvs-pg .svc-card .card-tag {
  display: inline-block;
  font-size: 15px;
  color: #486CAE;
  background: rgba(72, 108, 174, 0.07);
  border-radius: 48px;
  padding: 4px 16px;
  align-self: flex-start;
}

.srvs-pg .before-after-band {
  background: #ffffff;
  padding: 64px 0;
  position: relative;
}

.srvs-pg .before-after-band .pg-wrap {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.srvs-pg .ba-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srvs-pg .ba-text-col h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1e2a3a;
  margin: 0;
}

.srvs-pg .ba-text-col .lead {
  font-size: 16px;
  line-height: 1.6;
  color: #3a4a5c;
  margin: 0;
}

.srvs-pg .ba-text-col aside {
  font-size: 15px;
  line-height: 1.6;
  color: #486CAE;
  border-top: 1px solid rgba(72, 108, 174, 0.18);
  padding-top: 16px;
  margin-top: 8px;
}

.srvs-pg .ba-steps-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srvs-pg .ba-step {
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srvs-pg .ba-step.before {
  background: rgba(176, 168, 204, 0.12);
  border: 1px solid rgba(176, 168, 204, 0.3);
}

.srvs-pg .ba-step.after {
  background: rgba(72, 108, 174, 0.07);
  border: 1px solid rgba(72, 108, 174, 0.2);
}

.srvs-pg .ba-step .step-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #486CAE;
}

.srvs-pg .ba-step.before .step-label {
  color: #7a6fa0;
}

.srvs-pg .ba-step h4 {
  font-size: 20px;
  line-height: 1.35;
  color: #1e2a3a;
  margin: 0;
}

.srvs-pg .ba-step p {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4a5c;
  margin: 0;
}

.srvs-pg .ba-step ol {
  margin: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.srvs-pg .ba-step ol li {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4a5c;
  list-style-type: decimal;
}

.srvs-pg .split-band {
  position: relative;
  padding: 0;
}

.srvs-pg .split-bg {
  display: flex;
  flex-direction: row;
  min-height: 420px;
}

.srvs-pg .split-left {
  flex: 1;
  background: #486CAE;
  padding: 64px 32px 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.srvs-pg .split-left .sl-inner {
  max-width: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.srvs-pg .split-right {
  flex: 1;
  background: #F2F2F7;
  padding: 64px 0 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.srvs-pg .split-right .sr-inner {
  max-width: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.srvs-pg .split-left h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0;
}

.srvs-pg .split-left p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.srvs-pg .split-left .expert-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
}

.srvs-pg .split-left .expert-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.srvs-pg .split-left .expert-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.srvs-pg .split-left .expert-name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}

.srvs-pg .split-left .expert-role {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
}

.srvs-pg .split-left .expert-quote {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 8px;
}

.srvs-pg .split-right h3 {
  font-size: 24px;
  line-height: 1.35;
  color: #1e2a3a;
  margin: 0;
}

.srvs-pg .split-right .metric-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srvs-pg .metric-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.srvs-pg .metric-item .m-num {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  color: #486CAE;
  flex-shrink: 0;
  min-width: 64px;
}

.srvs-pg .metric-item .m-desc {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.srvs-pg .metric-item .m-label {
  font-size: 16px;
  font-weight: 700;
  color: #1e2a3a;
  line-height: 1.35;
}

.srvs-pg .metric-item .m-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4a5c;
}

.srvs-pg .split-right .cta-btn {
  display: inline-block;
  background: #486CAE;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
}

.srvs-pg .split-right .cta-btn:hover {
  background: #3a5a96;
  box-shadow: 0 10px 52px 0 rgba(72, 108, 174, 0.13);
}

.srvs-pg .split-right .cta-btn:focus {
  outline: 2px solid #486CAE;
  outline-offset: 3px;
}

.srvs-pg .split-right .cta-btn:active {
  background: #2d4a7a;
}

.srvs-pg .overlay-squares {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.srvs-pg .overlay-squares span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.srvs-pg .overlay-squares span:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 40px;
  left: 60px;
  transform: rotate(15deg);
}

.srvs-pg .overlay-squares span:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 120px;
  left: 20px;
  transform: rotate(-8deg);
}

.srvs-pg .overlay-squares span:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 60px;
  left: 140px;
  transform: rotate(30deg);
}

.srvs-pg .empty-space-band {
  background: #ffffff;
  padding: 64px 0;
  position: relative;
}

.srvs-pg .empty-space-band .pg-wrap {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  gap: 32px;
  align-items: start;
}

.srvs-pg .esb-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srvs-pg .esb-left h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1e2a3a;
  margin: 0;
}

.srvs-pg .esb-left p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a4a5c;
  margin: 0;
}

.srvs-pg .esb-left aside {
  font-size: 15px;
  line-height: 1.6;
  color: #7a6fa0;
}

.srvs-pg .esb-void {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 8px;
  gap: 16px;
}

.srvs-pg .esb-void .void-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(72, 108, 174, 0.3), rgba(176, 168, 204, 0.1));
}

.srvs-pg .esb-void .void-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #486CAE;
  box-shadow: 0 3px 2px 0 rgba(72, 108, 174, 0.05);
}

.srvs-pg .esb-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srvs-pg .esb-right h3 {
  font-size: 24px;
  line-height: 1.35;
  color: #1e2a3a;
  margin: 0;
}

.srvs-pg .esb-right .prog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: prog-counter;
}

.srvs-pg .esb-right .prog-list li {
  counter-increment: prog-counter;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #3a4a5c;
}

.srvs-pg .esb-right .prog-list li::before {
  content: counter(prog-counter, decimal);
  font-size: 15px;
  font-weight: 700;
  color: #486CAE;
  min-width: 24px;
  line-height: 1.6;
}

.srvs-pg .esb-right .link-btn {
  display: inline-block;
  border: 2px solid #486CAE;
  color: #486CAE;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
}

.srvs-pg .esb-right .link-btn:hover {
  background: #486CAE;
  color: #ffffff;
}

.srvs-pg .esb-right .link-btn:focus {
  outline: 2px solid #486CAE;
  outline-offset: 3px;
}

@media (max-width: 1280px) {
  .srvs-pg .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .srvs-pg .title-strip .pg-wrap {
    flex-direction: column;
    gap: 24px;
  }

  .srvs-pg .title-img-card {
    flex: none;
    width: 100%;
  }

  .srvs-pg .title-img-card img {
    width: 100%;
    height: 180px;
  }

  .srvs-pg .title-text h1 {
    font-size: 34px;
  }

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

  .srvs-pg .before-after-band .pg-wrap {
    flex-direction: column;
  }

  .srvs-pg .split-bg {
    flex-direction: column;
  }

  .srvs-pg .split-left {
    padding: 48px 24px;
    align-items: flex-start;
  }

  .srvs-pg .split-left .sl-inner {
    max-width: 100%;
  }

  .srvs-pg .split-right {
    padding: 48px 24px;
  }

  .srvs-pg .split-right .sr-inner {
    max-width: 100%;
  }

  .srvs-pg .empty-space-band .pg-wrap {
    grid-template-columns: 1fr;
  }

  .srvs-pg .esb-void {
    flex-direction: row;
    padding-top: 0;
  }

  .srvs-pg .esb-void .void-line {
    width: 80px;
    height: 2px;
  }
}

@media (max-width: 480px) {
  .srvs-pg .title-strip {
    padding: 32px 0 24px;
  }

  .srvs-pg .cards-band {
    padding: 48px 0;
  }

  .srvs-pg .before-after-band {
    padding: 48px 0;
  }

  .srvs-pg .empty-space-band {
    padding: 48px 0;
  }

  .srvs-pg .title-text h1 {
    font-size: 24px;
  }

  .srvs-pg .ba-text-col h2,
  .srvs-pg .esb-left h2 {
    font-size: 24px;
  }

  .srvs-pg .split-left h2 {
    font-size: 24px;
  }

  .srvs-pg .cards-band .band-head h2 {
    font-size: 24px;
  }
}

.abt-us {
  max-width: 100%;
  overflow-x: hidden;
}

.abt-us .pg-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.abt-us .grad-text {
  background: linear-gradient(127deg, #486CAE 30%, #B0A8CC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt-us .accent-word {
  display: inline-block;
  color: #486CAE;
  text-decoration: underline;
  text-decoration-color: #486CAE;
  text-underline-offset: 4px;
}

/* ── SECTION 1: TITLE BLOCK ── */
.abt-us .title-blk {
  background: #fff;
  padding: 64px 0 0;
  position: relative;
}

.abt-us .title-blk .pg-wrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  min-height: 420px;
}

.abt-us .title-text-zone {
  flex: 1 1 60%;
  padding: 32px 64px 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.abt-us .corner-bracket {
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
}

.abt-us .corner-bracket.tl {
  top: 16px;
  left: -8px;
  border-top: 2px solid #486CAE;
  border-left: 2px solid #486CAE;
  border-radius: 8px 0 0 0;
}

.abt-us .corner-bracket.br {
  bottom: 48px;
  right: 48px;
  border-bottom: 2px solid #B0A8CC;
  border-right: 2px solid #B0A8CC;
  border-radius: 0 0 8px 0;
}

.abt-us .title-eyebrow {
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #486CAE;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.35;
}

.abt-us .title-h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: #222;
}

.abt-us .title-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.35;
  color: #fff;
  background: #486CAE;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
}

.abt-us .title-action:hover {
  background: #3a5a96;
  box-shadow: 0 10px 52px 0 rgba(72, 108, 174, 0.13);
}

.abt-us .title-action:focus {
  outline: 2px solid #486CAE;
  outline-offset: 3px;
}

.abt-us .title-img-zone {
  flex: 0 0 36%;
  position: relative;
  display: flex;
  align-items: stretch;
}

.abt-us .img-frame {
  width: 100%;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  position: relative;
}

.abt-us .img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.abt-us .img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(72, 108, 174, 0.45);
  border-radius: 8px 8px 0 0;
  pointer-events: none;
}

.abt-us .img-corner-tl {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-radius: 8px 0 0 0;
  z-index: 2;
  pointer-events: none;
}

.abt-us .img-corner-br {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 0 0 8px 0;
  z-index: 2;
  pointer-events: none;
}

.abt-us .zigzag-divider {
  width: 100%;
  line-height: 0;
  display: block;
}

/* ── SECTION 2: WHO WE ARE ── */
.abt-us .who-blk {
  background: #F2F2F7;
  padding: 64px 0;
  position: relative;
}

.abt-us .who-blk .pg-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.abt-us .who-label {
  font-size: 15px;
  color: #486CAE;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.35;
  padding-top: 8px;
}

.abt-us .who-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abt-us .who-h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: #222;
}

.abt-us .who-body {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.abt-us .who-metrics {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abt-us .metric-item {
  background: #fff;
  border-radius: 8px;
  padding: 24px 16px;
  box-shadow: 0 3px 2px 0 rgba(72, 108, 174, 0.05);
  text-align: center;
  opacity: 0;
  animation: cardFlip 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.abt-us .metric-item:nth-child(1) {
  animation-delay: 0.1s;
}

.abt-us .metric-item:nth-child(2) {
  animation-delay: 0.22s;
}

.abt-us .metric-item:nth-child(3) {
  animation-delay: 0.34s;
}

@keyframes cardFlip {
  0% {
    opacity: 0;
    transform: rotateY(90deg) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
}

.abt-us .metric-num {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #486CAE;
  display: block;
  font-weight: 700;
}

.abt-us .metric-desc {
  font-size: 15px;
  line-height: 1.35;
  color: #555;
  display: block;
  margin-top: 4px;
}

.abt-us .who-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-us .aside-note {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 3px 2px 0 rgba(176, 168, 204, 0.05);
}

.abt-us .brushstroke-divider {
  width: 100%;
  line-height: 0;
  display: block;
}

/* ── SECTION 3: TEAM + APPROACH ── */
.abt-us .team-blk {
  background: #fff;
  padding: 64px 0 64px;
}

.abt-us .team-blk .pg-wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.abt-us .team-upper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.abt-us .team-upper .col-wide {
  grid-column: span 2;
}

.abt-us .team-h3 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: #222;
}

.abt-us .team-body {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 16px;
}

.abt-us .portrait-card {
  background: #F2F2F7;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
  opacity: 0;
  animation: cardFlip 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
}

.abt-us .portrait-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(80%);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .portrait-card:hover img {
  transform: scale(1.04);
  filter: grayscale(30%);
}

.abt-us .portrait-info {
  padding: 16px;
}

.abt-us .portrait-name {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  line-height: 1.35;
  margin: 0 0 4px;
}

.abt-us .portrait-role {
  font-size: 15px;
  color: #486CAE;
  line-height: 1.35;
  margin: 0;
}

.abt-us .approach-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.abt-us .approach-item {
  background: #F2F2F7;
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 3px 2px 0 rgba(72, 108, 174, 0.05);
  opacity: 0;
  animation: cardFlip 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.abt-us .approach-item:nth-child(1) {
  animation-delay: 0.08s;
}

.abt-us .approach-item:nth-child(2) {
  animation-delay: 0.2s;
}

.abt-us .approach-item:nth-child(3) {
  animation-delay: 0.32s;
}

.abt-us .approach-num {
  font-size: 24px;
  font-weight: 700;
  color: #B0A8CC;
  line-height: 1.1;
}

.abt-us .approach-h4 {
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
  color: #222;
}

.abt-us .approach-p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.abt-us .img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-radius: 8px;
  overflow: hidden;
}

.abt-us .img-thumb {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
  position: relative;
}

.abt-us .img-thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.abt-us .img-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(72, 108, 174, 0.3);
  pointer-events: none;
  border-radius: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1280px) {
  .abt-us .title-h1 {
    font-size: 48px;
  }

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

@media (max-width: 768px) {
  .abt-us .title-blk .pg-wrap {
    flex-direction: column;
    min-height: unset;
  }

  .abt-us .title-text-zone {
    padding: 32px 0 32px;
    flex: unset;
  }

  .abt-us .title-img-zone {
    flex: unset;
    min-height: 260px;
  }

  .abt-us .title-h1 {
    font-size: 34px;
  }

  .abt-us .who-blk .pg-wrap {
    grid-template-columns: 1fr;
  }

  .abt-us .who-metrics {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .abt-us .metric-item {
    flex: 1 1 140px;
  }

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

  .abt-us .team-upper .col-wide {
    grid-column: span 2;
  }

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

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

  .abt-us .img-thumb img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .abt-us .title-h1 {
    font-size: 24px;
  }

  .abt-us .who-h2 {
    font-size: 24px;
  }

  .abt-us .team-h3 {
    font-size: 24px;
  }

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

  .abt-us .team-upper .col-wide {
    grid-column: span 1;
  }

  .abt-us .who-metrics {
    flex-direction: column;
  }

  .abt-us .title-blk {
    padding: 32px 0 0;
  }

  .abt-us .who-blk {
    padding: 32px 0;
  }

  .abt-us .team-blk {
    padding: 32px 0;
  }

  .abt-us .team-blk .pg-wrap {
    gap: 32px;
  }
}

.ctus-pg {
  max-width: 100%;
  overflow-x: hidden;
}

.ctus-pg .pg-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.ctus-pg .grad-text {
  background: linear-gradient(127deg, #486CAE 30%, #B0A8CC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ctus-pg .diamond-sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #486CAE;
  transform: rotate(45deg);
  margin: 0 8px;
  vertical-align: middle;
}

.ctus-pg .accent-line {
  display: inline;
  text-decoration: underline;
  text-decoration-color: #486CAE;
  text-underline-offset: 4px;
}

/* ── BLOCK 1: SPLIT HERO ── */
.ctus-pg .split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  position: relative;
}

.ctus-pg .split-img-side {
  position: relative;
  overflow: hidden;
}

.ctus-pg .split-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.18;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus-pg .split-img-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(127deg, rgba(72, 108, 174, 0.82) 0%, rgba(176, 168, 204, 0.55) 100%);
  pointer-events: none;
}

.ctus-pg .split-img-side .img-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.ctus-pg .split-img-side .img-shapes::before {
  content: "";
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(176, 168, 204, 0.3);
  border-radius: 48px;
  transform: rotate(20deg);
}

.ctus-pg .split-img-side .img-shapes::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 32px;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transform: rotate(45deg);
}

.ctus-pg .split-diag {
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  transform: translateX(-50%);
}

.ctus-pg .split-diag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #B0A8CC 40%, #486CAE 60%, transparent 100%);
  transform: translateX(-50%) skewX(-4deg);
}

.ctus-pg .split-text-side {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px 64px 64px;
  position: relative;
}

.ctus-pg .split-text-side .eyebrow {
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #486CAE;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ctus-pg .split-text-side h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a2a42;
  margin: 0 0 24px 0;
}

.ctus-pg .split-text-side .sub-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #3a4a5e;
  margin: 0 0 32px 0;
  max-width: 360px;
}

.ctus-pg .contact-quick {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ctus-pg .cq-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #F2F2F7;
  box-shadow: 0 3px 2px 0 rgba(72, 108, 174, 0.05);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.ctus-pg .cq-item:hover {
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
  background: #eeeef5;
}

.ctus-pg .cq-item:active {
  background: #486CAE;
}

.ctus-pg .cq-item:active .cq-label,
.ctus-pg .cq-item:active .cq-val {
  color: #fff;
}

.ctus-pg .cq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctus-pg .cq-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #486CAE;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus-pg .cq-item:active .cq-icon svg {
  stroke: #fff;
}

.ctus-pg .cq-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ctus-pg .cq-label {
  font-size: 15px;
  color: #6a7a90;
  line-height: 1.35;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus-pg .cq-val {
  font-size: 16px;
  font-weight: 600;
  color: #1a2a42;
  line-height: 1.35;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── BLOCK 2: FORM ── */
.ctus-pg .form-block {
  background: #F2F2F7;
  padding: 64px 0;
  position: relative;
}

.ctus-pg .form-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #F2F2F7;
  z-index: 0;
  pointer-events: none;
}

.ctus-pg .form-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #fff;
  z-index: 0;
  pointer-events: none;
}

.ctus-pg .form-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.ctus-pg .form-aside {
  padding-top: 8px;
}

.ctus-pg .form-aside h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 16px 0;
}

.ctus-pg .form-aside .aside-note {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4a5e;
  margin: 0 0 24px 0;
}

.ctus-pg .form-aside .side-ann {
  font-size: 15px;
  line-height: 1.8;
  color: #6a7a90;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 2px 0 rgba(72, 108, 174, 0.05);
}

.ctus-pg .form-aside .side-ann strong {
  color: #486CAE;
  font-weight: 600;
}

.ctus-pg .contact-form {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
}

.ctus-pg .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ctus-pg .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.ctus-pg .form-field label {
  font-size: 15px;
  font-weight: 600;
  color: #1a2a42;
  line-height: 1.35;
}

.ctus-pg .form-field input[type="text"],
.ctus-pg .form-field input[type="email"],
.ctus-pg .form-field textarea,
.ctus-pg .form-field select {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #d0d4dc;
  font-size: 16px;
  color: #1a2a42;
  background: #fff;
  box-shadow: inset 0 2px 4px rgba(72, 108, 174, 0.06);
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box;
  line-height: 1.6;
}

.ctus-pg .form-field input[type="text"]:focus,
.ctus-pg .form-field input[type="email"]:focus,
.ctus-pg .form-field textarea:focus,
.ctus-pg .form-field select:focus {
  border-color: #486CAE;
  box-shadow: inset 0 2px 4px rgba(72, 108, 174, 0.08), 0 0 0 3px rgba(72, 108, 174, 0.12);
  outline: none;
}

.ctus-pg .form-field input::placeholder,
.ctus-pg .form-field textarea::placeholder {
  color: #9aa3b0;
}

.ctus-pg .form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.ctus-pg .form-field select {
  appearance: none;
  cursor: pointer;
  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 d='M4 6l4 4 4-4' stroke='%23486CAE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.ctus-pg .method-opts {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}

.ctus-pg .method-opt {
  position: relative;
}

.ctus-pg .method-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ctus-pg .method-opt label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 48px;
  border: 1.5px solid #d0d4dc;
  font-size: 15px;
  font-weight: 500;
  color: #3a4a5e;
  cursor: pointer;
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.ctus-pg .method-opt input[type="radio"]:focus+label {
  outline: 2px solid #486CAE;
  outline-offset: 2px;
}

.ctus-pg .method-opt.selected label {
  border-color: #486CAE;
  background: #486CAE;
  color: #fff;
}

.ctus-pg .cond-field {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.ctus-pg .cond-field.visible {
  display: flex;
}

.ctus-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0 24px 0;
  padding: 16px;
  border-radius: 8px;
  background: #F2F2F7;
}

.ctus-pg .privacy-row input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: #486CAE;
  flex-shrink: 0;
  cursor: pointer;
}

.ctus-pg .privacy-row .priv-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4a5e;
}

.ctus-pg .privacy-row .priv-text a {
  color: #486CAE;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ctus-pg .submit-btn {
  width: 100%;
  padding: 14px 32px;
  border-radius: 8px;
  border: none !important;
  background: linear-gradient(127deg, #486CAE 30%, #B0A8CC 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s cubic-bezier(0.0, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ctus-pg .submit-btn:hover {
  box-shadow: 0 10px 52px 0 rgba(72, 108, 174, 0.13);
  transform: translateY(-1px);
}

.ctus-pg .submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 2px 0 rgba(72, 108, 174, 0.05);
}

.ctus-pg .submit-btn:focus {
  outline: 3px solid rgba(72, 108, 174, 0.4);
  outline-offset: 2px;
}

/* ── BLOCK 3: ADDRESS + CONTEXT ── */
.ctus-pg .addr-block {
  background: #fff;
  padding: 64px 0 64px 0;
}

.ctus-pg .addr-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.ctus-pg .addr-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.ctus-pg .addr-top h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
}

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

.ctus-pg .addr-card {
  border-radius: 8px;
  padding: 24px;
  background: #F2F2F7;
  box-shadow: 0 3px 2px 0 rgba(72, 108, 174, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus-pg .addr-card:hover {
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
}

.ctus-pg .addr-card .card-label {
  font-size: 15px;
  color: #6a7a90;
  font-weight: 500;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ctus-pg .addr-card .card-label svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #B0A8CC;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.ctus-pg .addr-card .card-val {
  font-size: 16px;
  font-weight: 700;
  color: #1a2a42;
  line-height: 1.35;
  text-decoration: none;
  display: block;
}

.ctus-pg .addr-card .card-val:hover {
  color: #486CAE;
}

.ctus-pg .addr-card .card-sub {
  font-size: 15px;
  color: #6a7a90;
  line-height: 1.6;
}

.ctus-pg .divider-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
}

.ctus-pg .divider-line .dl-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #B0A8CC 50%, transparent);
}

.ctus-pg .divider-line .dl-center {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ctus-pg .addr-note {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

.ctus-pg .addr-note .main-text {
  font-size: 16px;
  line-height: 1.6;
  color: #3a4a5e;
  margin: 0;
}

.ctus-pg .addr-note .side-note {
  font-size: 15px;
  line-height: 1.8;
  color: #6a7a90;
  padding: 16px;
  border-radius: 8px;
  background: #F2F2F7;
}

/* ── RESPONSIVE ── */
@media (max-width: 1280px) {
  .ctus-pg .split-text-side {
    padding: 48px 32px 48px 48px;
  }

  .ctus-pg .split-text-side h1 {
    font-size: 34px;
  }

  .ctus-pg .form-inner {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .ctus-pg .split-block {
    grid-template-columns: 1fr;
  }

  .ctus-pg .split-img-side {
    height: 220px;
  }

  .ctus-pg .split-diag {
    display: none;
  }

  .ctus-pg .split-text-side {
    padding: 32px 24px;
  }

  .ctus-pg .split-text-side h1 {
    font-size: 34px;
  }

  .ctus-pg .form-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ctus-pg .form-row {
    grid-template-columns: 1fr;
  }

  .ctus-pg .addr-grid {
    grid-template-columns: 1fr;
  }

  .ctus-pg .addr-note {
    grid-template-columns: 1fr;
  }

  .ctus-pg .addr-top h2 {
    font-size: 24px;
  }

  .ctus-pg .form-aside h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .ctus-pg .split-text-side h1 {
    font-size: 24px;
  }

  .ctus-pg .contact-form {
    padding: 24px 16px;
  }

  .ctus-pg .method-opts {
    flex-direction: column;
  }

  .ctus-pg .method-opt label {
    width: 100%;
    justify-content: center;
  }

  .ctus-pg .addr-block {
    padding: 32px 0;
  }

  .ctus-pg .form-block {
    padding: 32px 0;
  }
}

.succ-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  background-color: #F2F2F7;
}

.succ-page .succ-wrap {
  max-width: 560px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 52px 0 rgba(72, 108, 174, 0.13);
  padding: 64px 48px;
  text-align: center;
}

.succ-page .succ-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 48px;
  background: linear-gradient(127deg, #486CAE 0%, #B0A8CC 100%);
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
}

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

.succ-page .succ-label {
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #486CAE;
  margin-bottom: 16px;
  font-weight: 600;
}

.succ-page .succ-heading {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  background: linear-gradient(127deg, #486CAE 18%, #B0A8CC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.succ-page .succ-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a4a;
  margin: 0 0 32px;
}

.succ-page .succ-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(127deg, #486CAE 0%, #B0A8CC 100%);
  border-radius: 8px;
  margin: 0 auto 32px;
}

.succ-page .succ-note {
  font-size: 15px;
  line-height: 1.6;
  color: #5a5a72;
  background: #F2F2F7;
  border-radius: 8px;
  padding: 16px 24px;
  margin-bottom: 32px;
  text-align: left;
}

.succ-page .succ-note strong {
  color: #486CAE;
}

.succ-page .succ-btn {
  display: inline-block;
  background: linear-gradient(127deg, #486CAE 18%, #B0A8CC 100%);
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 18px 0 rgba(72, 108, 174, 0.09);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.succ-page .succ-btn:hover {
  box-shadow: 0 10px 52px 0 rgba(72, 108, 174, 0.13);
  transform: translateY(-2px);
}

.succ-page .succ-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 2px 0 rgba(72, 108, 174, 0.05);
}

.succ-page .succ-btn:focus-visible {
  outline: 3px solid #486CAE;
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .succ-page {
    padding: 32px 16px;
  }

  .succ-page .succ-wrap {
    padding: 32px 24px;
  }

  .succ-page .succ-heading {
    font-size: 24px;
  }

  .succ-page .succ-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
}