html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  scrollbar-gutter: stable;
  min-height: 100vh;
  font-family: 'Lexend', sans-serif;
}

*:focus-visible {
  outline: 2px solid #4282A4;
  outline-offset: 4px;
  border-radius: 2px;
}

.hd-root {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hd-bg-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #4282A4 0%, #ADC2D0 55%, #F5F5F7 100%);
  z-index: 0;
}

.hd-bg-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}

.hd-bg-layer::after {
  content: "";
  position: absolute;
  top: -64px;
  right: -64px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(66, 130, 164, 0.13) 0%, rgba(173, 194, 208, 0.08) 100%);
}

.hd-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.hd-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0 16px;
  gap: 16px;
}

.hd-brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hd-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #ffffff;
  border: 1.5px solid rgba(66, 130, 164, 0.18);
  box-shadow: inset 0 3px 6px -1px rgba(66, 130, 164, 0.06), 0 4px 22px -1px rgba(66, 130, 164, 0.08);
}

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

.hd-brand-name {
  font-family: 'Lexend', sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #1a3a4d;
  margin: 0;
  text-align: center;
}

.hd-brand-tag {
  display: inline-block;
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #4282A4;
  background: rgba(66, 130, 164, 0.09);
  border-radius: 2px;
  padding: 4px 16px;
  text-transform: uppercase;
}

.hd-divider {
  border: none;
  border-top: 1.5px solid rgba(66, 130, 164, 0.13);
  margin: 0;
}

.hd-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 16px 0 32px;
}

.hd-nav-row a {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #2a4d62;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  transition: color 0.28s ease-in-out, border-color 0.28s ease-in-out, background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.hd-nav-row a:hover {
  color: #4282A4;
  border-color: rgba(66, 130, 164, 0.22);
  background: rgba(66, 130, 164, 0.06);
}

.hd-nav-row a[data-active] {
  color: #4282A4;
  border-color: rgba(66, 130, 164, 0.3);
  background: rgba(66, 130, 164, 0.08);
  font-weight: 700;
}

.hd-contact-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 8px 0 16px;
  flex-wrap: wrap;
}

.hd-contact-strip a,
.hd-contact-strip span {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #4282A4;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.26s ease-in-out;
}

.hd-contact-strip a:hover {
  color: #2a5f7a;
}

.hd-contact-strip .material-icons {
  font-size: 18px;
}

@media (max-width: 900px) {
  .hd-inner {
    padding: 0 16px;
  }

  .hd-nav-row {
    gap: 4px;
  }

  .hd-nav-row a {
    padding: 8px 8px;
    font-size: 15px;
  }

  .hd-contact-strip {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .hd-brand-name {
    font-size: 21px;
  }

  .hd-top {
    padding: 16px 0 8px;
  }

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

  .hd-contact-strip span {
    display: none;
  }
}

.ft-root {
  background: #2a4d62;
  position: relative;
  overflow: hidden;
}

.ft-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(173, 194, 208, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.ft-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 32px 32px;
}

.ft-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(173, 194, 208, 0.15);
  border-radius: 22px;
  padding: 32px;
  box-shadow: inset 0 3px 6px -1px rgba(66, 130, 164, 0.06), 0 9px 36px -1px rgba(66, 130, 164, 0.13);
}

.ft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.ft-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.ft-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 22px;
  background: #ffffff;
  border: 1.5px solid rgba(173, 194, 208, 0.3);
  box-shadow: inset 0 3px 6px -1px rgba(66, 130, 164, 0.06), 0 4px 22px -1px rgba(66, 130, 164, 0.08);
}

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

.ft-brand-name {
  font-family: 'Lexend', sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}

.ft-tagline {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #ADC2D0;
  margin: 0;
}

.ft-nav-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-col-label {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.1em;
  color: #ADC2D0;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.ft-nav-col a {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.26s ease-in-out;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.ft-nav-col a:hover {
  color: #ffffff;
}

.ft-contact-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-contact-col a,
.ft-contact-col p {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: color 0.26s ease-in-out;
}

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

.ft-contact-col .material-icons {
  font-size: 18px;
  color: #ADC2D0;
  flex-shrink: 0;
  margin-top: 2px;
}

.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(173, 194, 208, 0.15);
  margin-top: 32px;
}

.ft-copy {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(173, 194, 208, 0.7);
  margin: 0;
}

.ft-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ft-legal-links a {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(173, 194, 208, 0.7);
  text-decoration: none;
  transition: color 0.26s ease-in-out;
}

.ft-legal-links a:hover {
  color: #ADC2D0;
}

@media (max-width: 900px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .ft-brand-col {
    grid-column: 1 / -1;
  }

  .ft-inner {
    padding: 32px 16px 32px;
  }

  .ft-card {
    padding: 32px 16px;
  }
}

@media (max-width: 600px) {
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ft-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cookie-notice {
  position: fixed;
  top: 32px;
  left: 32px;
  z-index: 1200;
  width: 300px;
  background: #ffffff;
  border: 1.5px solid rgba(66, 130, 164, 0.18);
  border-radius: 22px;
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
  padding: 16px;
  display: none;
}

.cookie-notice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 22px;
  background: rgba(66, 130, 164, 0.09);
  margin-bottom: 8px;
}

.cookie-notice-icon .material-icons {
  font-size: 20px;
  color: #4282A4;
}

.cookie-notice-text {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #2a4d62;
  margin: 0 0 16px;
}

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

.cookie-btn-accept {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
  background: #4282A4;
  border: none;
  border-radius: 2px;
  padding: 8px 16px;
  cursor: pointer;
  text-decoration: underline;
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s ease-in-out;
  min-height: 44px;
}

.cookie-btn-accept:hover {
  background: #2a5f7a;
}

.cookie-btn-accept:focus-visible {
  outline: 2px solid #4282A4;
  outline-offset: 4px;
  border-radius: 2px;
}

.cookie-btn-decline {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #4282A4;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 8px 0;
  transition: color 0.26s ease-in-out;
  min-height: 44px;
}

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

.cookie-btn-decline:focus-visible {
  outline: 2px solid #4282A4;
  outline-offset: 4px;
  border-radius: 2px;
}

.cookie-mini {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 1200;
  background: #ffffff;
  border: 1.5px solid rgba(66, 130, 164, 0.18);
  border-radius: 22px;
  box-shadow: 0 4px 22px -1px rgba(66, 130, 164, 0.08);
  padding: 8px 16px;
  display: none;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.cookie-mini-label {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #4282A4;
}

.cookie-mini .material-icons {
  font-size: 18px;
  color: #4282A4;
}

.cookie-mini:hover .cookie-mini-label {
  color: #2a4d62;
}

.cookie-mini:hover .material-icons {
  color: #2a4d62;
}

@media (max-width: 600px) {
  .cookie-notice {
    top: 8px;
    left: 8px;
    right: 8px;
    width: auto;
  }

  .cookie-mini {
    bottom: 16px;
    left: 16px;
  }
}

.policy-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 96px;
}

.policy-container h1 {
  font-size: 51px;
  line-height: 1.1;
  color: #2c3e50;
  margin-bottom: 32px;
  margin-top: 0;
  letter-spacing: -0.5px;
}

.policy-container h2 {
  font-size: 27px;
  line-height: 1.1;
  color: #2c3e50;
  margin-top: 64px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ADC2D0;
}

.policy-container h3 {
  font-size: 21px;
  line-height: 1.1;
  color: #3a4f5e;
  margin-top: 32px;
  margin-bottom: 16px;
}

.policy-container h4 {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4f5e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 8px;
}

.policy-container h5 {
  font-size: 15px;
  line-height: 1.6;
  color: #4282A4;
  margin-top: 16px;
  margin-bottom: 8px;
}

.policy-container h6 {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7a8e;
  letter-spacing: 0.05em;
  margin-top: 16px;
  margin-bottom: 8px;
}

.policy-container p {
  font-size: 15px;
  line-height: 1.6;
  color: #2e3d47;
  margin-top: 0;
  margin-bottom: 16px;
  max-width: 72ch;
}

.policy-container ul {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 32px;
  list-style: none;
}

.policy-container ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 32px;
  list-style: none;
  counter-reset: policy-counter;
}

.policy-container ul li {
  font-size: 15px;
  line-height: 1.6;
  color: #2e3d47;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  max-width: 72ch;
}

.policy-container ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #4282A4;
}

.policy-container ol li {
  font-size: 15px;
  line-height: 1.6;
  color: #2e3d47;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  max-width: 72ch;
  counter-increment: policy-counter;
}

.policy-container ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: -16px;
  top: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #4282A4;
  font-weight: 600;
}

.policy-container ul ul,
.policy-container ol ol,
.policy-container ul ol,
.policy-container ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

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

.policy-container em,
.policy-container i {
  font-style: italic;
  color: #3a4f5e;
}

.policy-container a {
  color: #4282A4;
  text-decoration: underline;
  text-decoration-color: #ADC2D0;
  text-underline-offset: 3px;
  transition: color 0.28s ease-in-out, text-decoration-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-container a:hover {
  color: #2c5f7a;
  text-decoration-color: #4282A4;
}

.policy-container div {
  margin-bottom: 16px;
}

.policy-container div p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .policy-container {
    padding: 64px 64px;
  }
}

@media (max-width: 900px) {
  .policy-container {
    padding: 32px 32px;
  }

  .policy-container h1 {
    font-size: 27px;
  }

  .policy-container h2 {
    font-size: 21px;
    margin-top: 32px;
  }

  .policy-container h3 {
    font-size: 15px;
    margin-top: 32px;
  }
}

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

  .policy-container h1 {
    font-size: 21px;
    margin-bottom: 16px;
  }

  .policy-container h2 {
    font-size: 15px;
    margin-top: 32px;
  }

  .policy-container ul {
    padding-left: 16px;
  }

  .policy-container ol {
    padding-left: 16px;
  }

  .policy-container p,
  .policy-container ul li,
  .policy-container ol li {
    max-width: 100%;
  }
}

.prog-detail {
  max-width: 1440px;
  margin: 0 auto;
  background: #ffffff;
  overflow: hidden;
}

.prog-detail .split-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.prog-detail .split-left {
  background: #4282A4;
  padding: 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.prog-detail .split-left::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(173, 194, 208, 0.35);
  border-radius: 2px;
  pointer-events: none;
}

.prog-detail .split-left::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid rgba(173, 194, 208, 0.18);
  border-radius: 2px;
  pointer-events: none;
}

.prog-detail .pub-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.prog-detail .pub-date {
  font-size: 15px;
  color: #ADC2D0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prog-detail .like-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(173, 194, 208, 0.18);
  border-radius: 22px;
  padding: 4px 16px;
}

.prog-detail .like-badge .material-icons {
  font-size: 15px;
  color: #ADC2D0;
}

.prog-detail .like-count {
  font-size: 15px;
  color: #ADC2D0;
}

.prog-detail .main-heading {
  font-size: 51px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 32px;
  font-weight: 700;
}

.prog-detail .main-heading .punct {
  color: #ADC2D0;
}

.prog-detail .heading-accent-line {
  width: 48px;
  height: 3px;
  background: #ADC2D0;
  border-radius: 2px;
  margin-bottom: 32px;
}

.prog-detail .split-meta-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
}

.prog-detail .meta-chip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  padding: 8px 16px;
}

.prog-detail .meta-chip .material-icons {
  font-size: 21px;
  color: #ADC2D0;
}

.prog-detail .meta-chip span {
  font-size: 15px;
  color: #ffffff;
}

.prog-detail .split-right {
  position: relative;
  overflow: hidden;
}

.prog-detail .split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.prog-detail .img-tint {
  position: absolute;
  inset: 0;
  background: rgba(66, 130, 164, 0.22);
  pointer-events: none;
}

.prog-detail .body-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  padding: 96px 64px;
  align-items: start;
}

.prog-detail .desc-col {}

.prog-detail .sec-accent {
  width: 40px;
  height: 3px;
  background: #4282A4;
  border-radius: 2px;
  margin-bottom: 16px;
}

.prog-detail .col-heading {
  font-size: 27px;
  line-height: 1.1;
  color: #1b2d3a;
  margin: 0 0 32px;
  font-weight: 700;
  text-align: center;
}

.prog-detail .desc-body {
  color: #2c3e4a;
  font-size: 15px;
  line-height: 1.6;
}

.prog-detail .desc-body p {
  text-indent: 1.5em;
  margin: 0;
}

.prog-detail .desc-body h2 {
  font-size: 21px;
  line-height: 1.1;
  color: #1b2d3a;
  margin: 32px 0 8px;
  text-indent: 0;
  font-weight: 700;
}

.prog-detail .desc-body h3 {
  font-size: 15px;
  line-height: 1.6;
  color: #4282A4;
  margin: 16px 0 4px;
  text-indent: 0;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prog-detail .desc-body cite {
  display: block;
  font-style: italic;
  color: #4282A4;
  font-size: 21px;
  line-height: 1.6;
  border-top: 1px solid #ADC2D0;
  border-bottom: 1px solid #ADC2D0;
  padding: 16px 32px;
  margin: 32px 0;
  text-indent: 0;
}

.prog-detail .desc-body blockquote {
  margin: 32px 0;
  padding: 16px 32px;
  background: #F5F5F7;
  border-radius: 2px;
  color: #2c3e4a;
  font-size: 15px;
  line-height: 1.6;
  text-indent: 0;
}

.prog-detail .desc-body ol {
  padding-left: 0;
  list-style: none;
  counter-reset: desc-counter;
  margin: 16px 0;
}

.prog-detail .desc-body ol li {
  counter-increment: desc-counter;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e4a;
}

.prog-detail .desc-body ol li::before {
  content: counter(desc-counter);
  font-size: 27px;
  font-weight: 700;
  color: #4282A4;
  line-height: 1.1;
  min-width: 32px;
  text-align: center;
}

.prog-detail .desc-body dl {
  margin: 16px 0;
}

.prog-detail .desc-body dt {
  font-size: 15px;
  font-weight: 700;
  color: #1b2d3a;
  letter-spacing: 0.05em;
  margin-top: 16px;
}

.prog-detail .desc-body dd {
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e4a;
  margin-left: 32px;
}

.prog-detail .sidebar-col {}

.prog-detail .price-card {
  background: #F5F5F7;
  border-radius: 2px;
  box-shadow: 0 4px 22px -1px rgba(66, 130, 164, 0.08);
  padding: 32px;
  position: sticky;
  top: 32px;
  box-sizing: border-box;
}

.prog-detail .price-card-inner {
  border: 1px solid #ADC2D0;
  border-radius: 2px;
  padding: 32px;
  box-shadow: inset 0 3px 6px -1px rgba(66, 130, 164, 0.06);
}

.prog-detail .price-tag {
  font-size: 51px;
  line-height: 1.1;
  color: #4282A4;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.prog-detail .price-desc {
  font-size: 15px;
  color: #2c3e4a;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 16px;
}

.prog-detail .price-note {
  font-size: 15px;
  color: #4282A4;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 32px;
  font-style: italic;
}

.prog-detail .seats-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.prog-detail .seats-ring {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.prog-detail .seats-ring svg {
  width: 48px;
  height: 48px;
}

.prog-detail .seats-label {
  font-size: 15px;
  color: #2c3e4a;
  line-height: 1.6;
}

.prog-detail .seats-label strong {
  color: #4282A4;
  font-weight: 700;
}

.prog-detail .enroll-btn {
  display: block;
  width: 100%;
  background: #4282A4;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 22px -1px rgba(66, 130, 164, 0.13);
  background-image: linear-gradient(135deg, #4282A4 0%, #4282A4 50%, #2f6080 50%, #2f6080 100%);
  background-size: 250% 100%;
  background-position: 0% 0%;
  transition: background-position 0.38s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s ease-in-out;
  box-sizing: border-box;
}

.prog-detail .enroll-btn:hover {
  background-position: 100% 0%;
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
  color: #ffffff;
  text-decoration: none;
}

.prog-detail .enroll-btn:focus {
  outline: 2px solid #4282A4;
  outline-offset: 3px;
}

.prog-detail .divider-shape {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 64px 0;
}

.prog-detail .divider-shape .d-line {
  flex: 1;
  height: 1px;
  background: #ADC2D0;
}

.prog-detail .divider-shape .d-diamond {
  width: 10px;
  height: 10px;
  background: #4282A4;
  border-radius: 2px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.prog-detail .program-section {
  background: #F5F5F7;
  padding: 96px 64px;
  position: relative;
}

.prog-detail .program-section::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(66, 130, 164, 0.1);
  border-radius: 2px;
  pointer-events: none;
}

.prog-detail .prog-heading-wrap {
  text-align: center;
  margin-bottom: 64px;
}

.prog-detail .prog-heading-wrap .sec-accent {
  margin: 0 auto 16px;
}

.prog-detail .prog-heading {
  font-size: 27px;
  line-height: 1.1;
  color: #1b2d3a;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.prog-detail .program-body {
  max-width: 860px;
  margin: 0 auto;
}

.prog-detail .program-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e4a;
  text-indent: 1.5em;
  margin: 0;
}

.prog-detail .program-body h2 {
  font-size: 21px;
  line-height: 1.1;
  color: #1b2d3a;
  font-weight: 700;
  margin: 32px 0 8px;
  text-indent: 0;
}

.prog-detail .program-body small {
  font-size: 15px;
  color: #4282A4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.prog-detail .program-body ul,
.prog-detail .program-body ol {
  padding-left: 0;
  list-style: none;
  counter-reset: prog-counter;
  margin: 16px 0;
}

.prog-detail .program-body ol li {
  counter-increment: prog-counter;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e4a;
}

.prog-detail .program-body ol li::before {
  content: counter(prog-counter);
  font-size: 27px;
  font-weight: 700;
  color: #4282A4;
  line-height: 1.1;
  min-width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.prog-detail .program-body ul li {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e4a;
}

.prog-detail .program-body ul li .material-icons {
  font-size: 21px;
  color: #4282A4;
  flex-shrink: 0;
  margin-top: 1px;
}

.prog-detail .reaction-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
  justify-content: center;
  flex-wrap: wrap;
}

.prog-detail .reaction-label {
  font-size: 15px;
  color: #2c3e4a;
  letter-spacing: 0.05em;
}

.prog-detail .reactions {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.prog-detail .reactions input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.prog-detail .reactions label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 22px;
  border: 1px solid #ADC2D0;
  background: #ffffff;
  font-size: 21px;
  transition: background 0.28s ease-in-out, border-color 0.28s ease-in-out, box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  line-height: 1.1;
}

.prog-detail .reactions label .r-text {
  font-size: 15px;
  color: #4282A4;
  line-height: 1.1;
}

.prog-detail .reactions label svg {
  width: 28px;
  height: 28px;
  display: block;
}

.prog-detail .reactions input[type="radio"]:checked+label {
  background: #4282A4;
  border-color: #4282A4;
  box-shadow: 0 4px 22px -1px rgba(66, 130, 164, 0.13);
}

.prog-detail .reactions input[type="radio"]:checked+label .r-text {
  color: #ffffff;
}

.prog-detail .reactions input[type="radio"]:focus+label {
  outline: 2px solid #4282A4;
  outline-offset: 2px;
}

.prog-detail .reactions label:hover {
  border-color: #4282A4;
  box-shadow: 0 3px 6px -1px rgba(66, 130, 164, 0.06);
}

.prog-detail .bg-anim {
  animation: bg-shift 15s linear infinite;
}

@keyframes bg-shift {
  0% {
    background-color: #F5F5F7;
  }

  50% {
    background-color: #eaf0f4;
  }

  100% {
    background-color: #F5F5F7;
  }
}

@media (max-width: 1200px) {
  .prog-detail .split-top {
    grid-template-columns: 1fr 1fr;
  }

  .prog-detail .body-grid {
    grid-template-columns: 1fr 320px;
    gap: 32px;
    padding: 64px 32px;
  }

  .prog-detail .program-section {
    padding: 64px 32px;
  }
}

@media (max-width: 900px) {
  .prog-detail .split-top {
    grid-template-columns: 1fr;
  }

  .prog-detail .split-right {
    height: 300px;
  }

  .prog-detail .split-left {
    padding: 64px 32px;
  }

  .prog-detail .main-heading {
    font-size: 27px;
  }

  .prog-detail .body-grid {
    grid-template-columns: 1fr;
    padding: 64px 32px;
    gap: 32px;
  }

  .prog-detail .price-card {
    position: static;
  }

  .prog-detail .program-section {
    padding: 64px 32px;
  }
}

@media (max-width: 600px) {
  .prog-detail .split-left {
    padding: 64px 16px;
  }

  .prog-detail .main-heading {
    font-size: 21px;
  }

  .prog-detail .body-grid {
    padding: 32px 16px;
  }

  .prog-detail .program-section {
    padding: 32px 16px;
  }

  .prog-detail .price-card {
    padding: 16px;
  }

  .prog-detail .price-card-inner {
    padding: 16px;
  }

  .prog-detail .split-meta-row {
    gap: 8px;
  }

  .prog-detail .reaction-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

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

.pod-pg .reveal-row {
  opacity: 0;
  transform: translateY(28px);
  animation: rowUp 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pod-pg .reveal-row:nth-child(1) {
  animation-delay: 0.08s;
}

.pod-pg .reveal-row:nth-child(2) {
  animation-delay: 0.2s;
}

.pod-pg .reveal-row:nth-child(3) {
  animation-delay: 0.32s;
}

.pod-pg .reveal-row:nth-child(4) {
  animation-delay: 0.44s;
}

.pod-pg .reveal-row:nth-child(5) {
  animation-delay: 0.56s;
}

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

.pod-pg .tone-cycle {
  animation: toneCycle 6s ease-in-out infinite;
}

@keyframes toneCycle {

  0%,
  100% {
    background-color: #F5F5F7;
  }

  50% {
    background-color: #e8eef3;
  }
}

.pod-pg .ep-area {
  padding: 96px 64px;
  background: linear-gradient(160deg, #ffffff 0%, #F5F5F7 55%, #dce8f0 100%);
  position: relative;
}

.pod-pg .ep-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(66, 130, 164, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(173, 194, 208, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 55% 90%, rgba(66, 130, 164, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.pod-pg .ep-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.pod-pg .ep-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #4282A4;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.pod-pg .ep-aside {
  position: sticky;
  top: 32px;
}

.pod-pg .ep-aside-head {
  font-size: 51px;
  line-height: 1.1;
  color: #1b2e3c;
  margin: 0 0 32px;
  font-weight: 700;
}

.pod-pg .ep-aside-head span {
  color: #4282A4;
}

.pod-pg .ep-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4a56;
  margin: 0 0 32px;
  text-indent: 1.5em;
}

.pod-pg .ep-metric-dash {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.pod-pg .ep-stat {
  background: #ffffff;
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 3px 6px -1px rgba(66, 130, 164, 0.06), 0 4px 22px -1px rgba(66, 130, 164, 0.08);
  text-align: center;
}

.pod-pg .ep-stat-num {
  font-size: 27px;
  line-height: 1.1;
  color: #4282A4;
  font-weight: 700;
  display: block;
}

.pod-pg .ep-stat-lbl {
  font-size: 15px;
  color: #5a7080;
  line-height: 1.6;
  display: block;
  margin-top: 4px;
}

.pod-pg .ep-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pod-pg .ep-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 4px 22px -1px rgba(66, 130, 164, 0.08), inset 0 1px 4px rgba(173, 194, 208, 0.13);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.pod-pg .ep-card:hover {
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
  transform: translateY(-3px);
}

.pod-pg .ep-num-badge {
  width: 48px;
  height: 48px;
  border-radius: 22px;
  background: #4282A4;
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1.1;
}

.pod-pg .ep-card-body {}

.pod-pg .ep-card-tag {
  display: inline-block;
  background: #ADC2D0;
  color: #1b2e3c;
  font-size: 15px;
  letter-spacing: 0.06em;
  border-radius: 2px;
  padding: 4px 8px;
  margin-bottom: 8px;
}

.pod-pg .ep-card-title {
  font-size: 21px;
  line-height: 1.1;
  color: #1b2e3c;
  margin: 0 0 8px;
  font-weight: 600;
}

.pod-pg .ep-card-title::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: #4282A4;
  margin-bottom: 8px;
  border-radius: 2px;
}

.pod-pg .ep-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4a56;
  margin: 0;
  text-indent: 1.5em;
}

.pod-pg .ep-card-meta {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.pod-pg .ep-dur {
  font-size: 15px;
  color: #4282A4;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pod-pg .ep-dur .material-icons {
  font-size: 15px;
}

.pod-pg .ep-guest {
  font-size: 15px;
  color: #5a7080;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pod-pg .ep-guest .material-icons {
  font-size: 15px;
}

.pod-pg .ep-listen-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4282A4;
  color: #ffffff;
  border: none;
  border-radius: 2px;
  font-size: 15px;
  padding: 8px 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.28s ease-in-out;
}

.pod-pg .ep-listen-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.pod-pg .ep-listen-btn:hover::after {
  transform: translateX(100%);
}

.pod-pg .ep-listen-btn:hover {
  background: #2f6585;
}

.pod-pg .ep-listen-btn:focus {
  outline: 2px solid #4282A4;
  outline-offset: 2px;
}

.pod-pg .ep-listen-btn .material-icons {
  font-size: 21px;
}

.pod-pg .feat-area {
  padding: 96px 64px;
  background: #1b2e3c;
  position: relative;
  overflow: hidden;
}

.pod-pg .feat-area::before {
  content: "";
  position: absolute;
  top: -64px;
  right: -64px;
  width: 400px;
  height: 400px;
  border-radius: 22px;
  border: 2px solid rgba(173, 194, 208, 0.08);
  transform: rotate(18deg);
  pointer-events: none;
}

.pod-pg .feat-area::after {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 40px;
  width: 220px;
  height: 220px;
  border-radius: 22px;
  border: 2px solid rgba(66, 130, 164, 0.12);
  transform: rotate(-12deg);
  pointer-events: none;
}

.pod-pg .feat-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.pod-pg .feat-img-wrap {
  border-radius: 22px;
  overflow: hidden;
  width: 100%;
  height: 420px;
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
}

.pod-pg .feat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.55) brightness(0.92);
  transition: filter 0.38s ease-in-out;
}

.pod-pg .feat-img-wrap:hover img {
  filter: saturate(1) brightness(1);
}

.pod-pg .feat-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pod-pg .feat-side-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #ADC2D0;
  text-transform: uppercase;
  display: block;
}

.pod-pg .feat-side-head {
  font-size: 27px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
  font-weight: 600;
}

.pod-pg .feat-side-head::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: #4282A4;
  margin-bottom: 8px;
  border-radius: 2px;
}

.pod-pg .feat-side-text {
  font-size: 15px;
  line-height: 1.6;
  color: #aab8c2;
  margin: 0;
  text-indent: 1.5em;
}

.pod-pg .feat-tag-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.pod-pg .feat-tag {
  font-size: 15px;
  color: #1b2e3c;
  background: #ADC2D0;
  border-radius: 2px;
  padding: 4px 8px;
  display: inline-block;
}

.pod-pg .feat-accent-line {
  font-size: 15px;
  line-height: 1.6;
  color: #4282A4;
  font-weight: 600;
}

.pod-pg .feat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #4282A4;
  border-radius: 2px;
  font-size: 15px;
  padding: 8px 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.32s ease-in-out, border-color 0.32s ease-in-out;
}

.pod-pg .feat-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4282A4 0%, #ADC2D0 100%);
  transform: translateX(-100%) skewX(-8deg);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pod-pg .feat-cta:hover::before {
  transform: translateX(0) skewX(0deg);
}

.pod-pg .feat-cta:hover {
  color: #1b2e3c;
}

.pod-pg .feat-cta:focus {
  outline: 2px solid #ADC2D0;
  outline-offset: 2px;
}

.pod-pg .feat-cta span {
  position: relative;
}

.pod-pg .feat-cta .material-icons {
  font-size: 21px;
  position: relative;
}

.pod-pg .sub-area {
  padding: 96px 64px;
  position: relative;
}

.pod-pg .sub-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(66, 130, 164, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 25%, rgba(173, 194, 208, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(66, 130, 164, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.pod-pg .sub-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  position: relative;
  align-items: start;
}

.pod-pg .sub-lead {
  grid-column: 1;
}

.pod-pg .sub-lead-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #4282A4;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.pod-pg .sub-lead-head {
  font-size: 51px;
  line-height: 1.1;
  color: #1b2e3c;
  margin: 0 0 16px;
  font-weight: 700;
}

.pod-pg .sub-lead-head::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: #4282A4;
  margin-bottom: 8px;
  border-radius: 2px;
}

.pod-pg .sub-lead-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4a56;
  margin: 0;
  text-indent: 1.5em;
}

.pod-pg .sub-cards {
  grid-column: 2 / 5;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.pod-pg .sub-card {
  border-radius: 22px;
  padding: 32px 16px;
  text-align: center;
  box-shadow: 0 3px 6px -1px rgba(66, 130, 164, 0.06), inset 0 2px 6px rgba(173, 194, 208, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.3s ease-in-out, transform 0.27s cubic-bezier(0.4, 0, 0.2, 1);
}

.pod-pg .sub-card:hover {
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
  transform: translateY(-4px);
}

.pod-pg .sub-card.tone-cycle {
  background-color: #F5F5F7;
}

.pod-pg .sub-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 22px;
  background: #4282A4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pod-pg .sub-card-icon .material-icons {
  color: #ffffff;
  font-size: 27px;
}

.pod-pg .sub-card-title {
  font-size: 21px;
  line-height: 1.1;
  color: #1b2e3c;
  font-weight: 600;
  margin: 0;
}

.pod-pg .sub-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4a56;
  margin: 0;
}

.pod-pg .sub-card-accent {
  font-size: 15px;
  color: #4282A4;
  font-weight: 600;
}

.pod-pg .sub-platform-row {
  grid-column: 1 / 5;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  flex-wrap: wrap;
}

.pod-pg .sub-platform-lbl {
  font-size: 15px;
  color: #5a7080;
  letter-spacing: 0.06em;
}

.pod-pg .sub-platform-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.pod-pg .sub-plat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F5F5F7;
  color: #1b2e3c;
  border: 1px solid #ADC2D0;
  border-radius: 2px;
  font-size: 15px;
  padding: 8px 16px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.28s ease-in-out, border-color 0.28s ease-in-out;
}

.pod-pg .sub-plat-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4282A4 0%, #ADC2D0 100%);
  transform: translateX(-100%) skewX(-6deg);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.pod-pg .sub-plat-btn:hover::before {
  transform: translateX(0) skewX(0);
}

.pod-pg .sub-plat-btn:hover {
  color: #ffffff;
  border-color: #4282A4;
}

.pod-pg .sub-plat-btn:focus {
  outline: 2px solid #4282A4;
  outline-offset: 2px;
}

.pod-pg .sub-plat-btn span {
  position: relative;
}

.pod-pg .sub-plat-btn .material-icons {
  font-size: 21px;
  position: relative;
}

@media (max-width: 1200px) {
  .pod-pg .ep-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pod-pg .ep-aside {
    position: static;
  }

  .pod-pg .feat-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pod-pg .feat-img-wrap {
    height: 320px;
  }

  .pod-pg .sub-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .pod-pg .sub-lead {
    grid-column: 1 / 3;
  }

  .pod-pg .sub-cards {
    grid-column: 1 / 3;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .pod-pg .sub-platform-row {
    grid-column: 1 / 3;
  }
}

@media (max-width: 900px) {
  .pod-pg .ep-area {
    padding: 64px 32px;
  }

  .pod-pg .ep-metric-dash {
    grid-template-columns: 1fr 1fr;
  }

  .pod-pg .feat-area {
    padding: 64px 32px;
  }

  .pod-pg .sub-area {
    padding: 64px 32px;
  }

  .pod-pg .sub-inner {
    grid-template-columns: 1fr;
  }

  .pod-pg .sub-lead {
    grid-column: 1;
  }

  .pod-pg .sub-cards {
    grid-column: 1;
    grid-template-columns: 1fr 1fr;
  }

  .pod-pg .sub-platform-row {
    grid-column: 1;
  }

  .pod-pg .ep-aside-head {
    font-size: 27px;
  }

  .pod-pg .sub-lead-head {
    font-size: 27px;
  }
}

@media (max-width: 600px) {
  .pod-pg .ep-area {
    padding: 64px 16px;
  }

  .pod-pg .ep-metric-dash {
    grid-template-columns: 1fr;
  }

  .pod-pg .ep-card {
    grid-template-columns: 1fr;
  }

  .pod-pg .feat-area {
    padding: 64px 16px;
  }

  .pod-pg .feat-img-wrap {
    height: 220px;
  }

  .pod-pg .sub-area {
    padding: 64px 16px;
  }

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

  .pod-pg .sub-platform-links {
    flex-direction: column;
  }
}

.ctus {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.ctus .reach-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
}

.ctus .reach-visual {
  position: relative;
  background: #F5F5F7;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px 64px;
  overflow: hidden;
}

.ctus .reach-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(66, 130, 164, 0.18) 0%, rgba(173, 194, 208, 0.12) 45%, rgba(245, 245, 247, 0) 70%),
    radial-gradient(circle at 80% 20%, rgba(173, 194, 208, 0.22) 0%, rgba(66, 130, 164, 0.08) 50%, transparent 75%),
    radial-gradient(circle at 55% 55%, rgba(66, 130, 164, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.ctus .dot-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ctus .dot-field::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(66, 130, 164, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.55;
}

.ctus .diamond-accent {
  position: absolute;
  top: 64px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: rgba(66, 130, 164, 0.13);
  transform: rotate(45deg);
  border-radius: 2px;
  pointer-events: none;
}

.ctus .diamond-accent-sm {
  position: absolute;
  top: 88px;
  right: 60px;
  width: 22px;
  height: 22px;
  background: rgba(173, 194, 208, 0.22);
  transform: rotate(45deg);
  border-radius: 2px;
  pointer-events: none;
}

.ctus .float-icon {
  animation: float-sway 3.8s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ctus .float-icon-b {
  animation: float-sway 4.6s ease-in-out infinite 0.9s;
}

.ctus .float-icon-c {
  animation: float-sway 3.2s ease-in-out infinite 1.7s;
}

@keyframes float-sway {

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

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

.ctus .info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.ctus .info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  padding: 16px 32px 16px 16px;
  box-shadow: 0 3px 6px -1px rgba(66, 130, 164, 0.06), 0 4px 22px -1px rgba(66, 130, 164, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus .info-card:hover {
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
  transform: translateY(-2px);
}

.ctus .ic-icon {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: #4282A4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.ctus .ic-icon .material-icons {
  font-size: 21px;
}

.ctus .ic-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ctus .ic-label {
  font-size: 15px;
  font-weight: 700;
  color: #2a4a5e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}

.ctus .ic-val {
  font-size: 15px;
  color: #3a5a70;
  line-height: 1.6;
}

.ctus .ic-val a {
  color: #4282A4;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

.ctus .ic-val a:hover {
  color: #2a5a7a;
}

.ctus .vis-tagline {
  position: relative;
  z-index: 1;
}

.ctus .vis-tagline::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #4282A4;
  border-radius: 2px;
  margin-bottom: 16px;
}

.ctus .vis-tagline h1 {
  font-size: 51px;
  line-height: 1.1;
  color: #1e3a4a;
  font-weight: 800;
  margin: 0 0 16px;
}

.ctus .vis-tagline p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a6a7a;
  max-width: 380px;
  margin: 0;
  text-indent: 1.5em;
}

.ctus .form-side {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 64px;
  position: relative;
}

.ctus .form-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #ADC2D0 30%, #4282A4 65%, transparent 100%);
  border-radius: 2px;
}

.ctus .form-head {
  margin-bottom: 32px;
}

.ctus .form-head::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #4282A4;
  border-radius: 2px;
  margin-bottom: 16px;
}

.ctus .form-head h2 {
  font-size: 27px;
  font-weight: 700;
  color: #1e3a4a;
  line-height: 1.1;
  margin: 0 0 8px;
}

.ctus .form-head p {
  font-size: 15px;
  color: #5a7a8a;
  line-height: 1.6;
  margin: 0;
  text-indent: 1.5em;
}

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

.ctus .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ctus .field-grp {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctus .field-grp label {
  font-size: 15px;
  font-weight: 600;
  color: #2a4a5e;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.ctus .field-grp input,
.ctus .field-grp select {
  width: 100%;
  padding: 16px;
  border: 2px solid #ADC2D0;
  border-radius: 2px;
  font-size: 15px;
  color: #1e3a4a;
  background: #F5F5F7;
  outline: none;
  transition: border-color 0.26s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.26s cubic-bezier(0.4, 0, 0.2, 1), background 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.6;
  box-shadow: inset 0 2px 8px rgba(66, 130, 164, 0.06);
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.ctus .field-grp input::placeholder {
  color: #8aabb8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ctus .field-grp input:focus,
.ctus .field-grp select:focus {
  border-color: #4282A4;
  background: #fff;
  box-shadow: inset 0 2px 8px rgba(66, 130, 164, 0.06), 0 0 0 3px rgba(66, 130, 164, 0.12);
}

.ctus .select-wrap {
  position: relative;
}

.ctus .select-wrap select {
  padding-right: 40px;
  cursor: pointer;
}

.ctus .select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #4282A4;
  pointer-events: none;
}

.ctus .timeline-grp {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctus .timeline-grp label {
  font-size: 15px;
  font-weight: 600;
  color: #2a4a5e;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.ctus .timeline-opts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ctus .tl-opt {
  position: relative;
}

.ctus .tl-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.ctus .tl-opt label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 8px;
  border: 2px solid #ADC2D0;
  border-radius: 2px;
  cursor: pointer;
  background: #F5F5F7;
  transition: border-color 0.25s ease-in-out, background 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  color: #4a6a7a;
  line-height: 1.1;
  letter-spacing: 0;
  box-shadow: inset 0 2px 6px rgba(66, 130, 164, 0.05);
  user-select: none;
}

.ctus .tl-opt label:hover {
  border-color: #4282A4;
  background: rgba(66, 130, 164, 0.06);
}

.ctus .tl-opt input[type="radio"]:checked+label {
  border-color: #4282A4;
  background: #4282A4;
  color: #fff;
  box-shadow: 0 4px 22px -1px rgba(66, 130, 164, 0.18);
}

.ctus .tl-opt label .tl-icon {
  font-size: 21px;
}

.ctus .tl-opt input[type="radio"]:focus-visible+label {
  outline: 3px solid #4282A4;
  outline-offset: 2px;
}

.ctus .privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  background: #F5F5F7;
  border-radius: 2px;
  box-shadow: inset 0 2px 6px rgba(66, 130, 164, 0.05);
}

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

.ctus .privacy-row span {
  font-size: 15px;
  color: #4a6a7a;
  line-height: 1.6;
}

.ctus .privacy-row span a {
  color: #4282A4;
  text-decoration: underline;
  transition: color 0.25s ease-in-out;
}

.ctus .privacy-row span a:hover {
  color: #2a5a7a;
}

.ctus .submit-btn {
  position: relative;
  padding: 16px 64px;
  background: #4282A4;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  align-self: flex-start;
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 22px -1px rgba(66, 130, 164, 0.18);
}

.ctus .submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus .submit-btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.ctus .submit-btn:hover {
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.22);
  transform: translateY(-1px);
}

.ctus .submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px -1px rgba(66, 130, 164, 0.12);
}

.ctus .submit-btn:focus-visible {
  outline: 3px solid #ADC2D0;
  outline-offset: 3px;
}

.ctus .divider-band {
  height: 64px;
  background: linear-gradient(180deg, #fff 0%, rgba(173, 194, 208, 0.18) 50%, #F5F5F7 100%);
  filter: blur(0.5px);
}

.ctus .extra-wrap {
  background: #F5F5F7;
  padding: 96px 64px;
  position: relative;
  overflow: hidden;
}

.ctus .extra-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(66, 130, 164, 0.09) 0%, transparent 55%),
    radial-gradient(circle at 15% 70%, rgba(173, 194, 208, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(66, 130, 164, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.ctus .extra-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ctus .extra-inner::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #4282A4;
  border-radius: 2px;
  margin: 0 auto 16px;
}

.ctus .extra-inner h3 {
  font-size: 27px;
  font-weight: 700;
  color: #1e3a4a;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 16px;
}

.ctus .extra-inner p {
  font-size: 15px;
  color: #4a6a7a;
  line-height: 1.6;
  text-align: left;
  text-indent: 1.5em;
  max-width: 680px;
  margin: 0 auto 32px;
}

.ctus .detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ctus .det-item {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 3px 6px -1px rgba(66, 130, 164, 0.06), 0 4px 22px -1px rgba(66, 130, 164, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1), transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ctus .det-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ADC2D0, #4282A4);
  border-radius: 2px 2px 0 0;
  opacity: 0;
  transition: opacity 0.28s ease-in-out;
}

.ctus .det-item:hover {
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
  transform: translateY(-3px);
}

.ctus .det-item:hover::after {
  opacity: 1;
}

.ctus .det-ico {
  width: 56px;
  height: 56px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ADC2D0 0%, #4282A4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.ctus .det-ico .material-icons {
  font-size: 27px;
}

.ctus .det-label {
  font-size: 15px;
  font-weight: 700;
  color: #1e3a4a;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.1;
}

.ctus .det-desc {
  font-size: 15px;
  color: #5a7a8a;
  line-height: 1.6;
  margin: 0;
}

.ctus .det-val {
  font-size: 21px;
  font-weight: 700;
  color: #4282A4;
  line-height: 1.1;
}

.ctus .hover-line-wrap {
  display: inline-block;
  position: relative;
  cursor: default;
}

.ctus .hover-line-wrap .hl-inner {
  background-image: linear-gradient(90deg, rgba(66, 130, 164, 0.13) 0%, rgba(173, 194, 208, 0.18) 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  transition: background-size 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 4px 0;
  border-radius: 2px;
  display: inline;
}

.ctus .hover-line-wrap:hover .hl-inner {
  background-size: 100% 100%;
}

@media (max-width: 1200px) {
  .ctus .reach-visual {
    padding: 64px 32px;
  }

  .ctus .form-side {
    padding: 64px 32px;
  }

  .ctus .extra-wrap {
    padding: 64px 32px;
  }

  .ctus .vis-tagline h1 {
    font-size: 51px;
  }
}

@media (max-width: 900px) {
  .ctus .reach-wrap {
    grid-template-columns: 1fr;
  }

  .ctus .reach-visual {
    padding: 64px 32px 32px;
    min-height: auto;
  }

  .ctus .vis-tagline h1 {
    font-size: 27px;
  }

  .ctus .form-side {
    padding: 32px;
  }

  .ctus .form-side::before {
    display: none;
  }

  .ctus .detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .ctus .extra-wrap {
    padding: 64px 32px;
  }

  .ctus .timeline-opts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ctus .reach-visual {
    padding: 32px 16px;
  }

  .ctus .form-side {
    padding: 32px 16px;
  }

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

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

  .ctus .extra-wrap {
    padding: 32px 16px;
  }

  .ctus .timeline-opts {
    grid-template-columns: 1fr 1fr;
  }

  .ctus .submit-btn {
    width: 100%;
    text-align: center;
  }

  .ctus .vis-tagline h1 {
    font-size: 27px;
  }

  .ctus .info-cards {
    margin-bottom: 32px;
  }
}

.entr {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip;
}

.entr .split-screen {
  display: flex;
  flex-direction: row;
  min-height: 480px;
}

.entr .split-left {
  flex: 0 0 42%;
  background: #4282A4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 48px 64px 64px;
  position: relative;
}

.entr .split-left-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.entr .split-left-deco span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.entr .split-left-deco span:nth-child(1) {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -60px;
}

.entr .split-left-deco span:nth-child(2) {
  width: 180px;
  height: 180px;
  top: 40px;
  right: 20px;
  border-color: rgba(255, 255, 255, 0.05);
}

.entr .split-left-deco span:nth-child(3) {
  width: 420px;
  height: 420px;
  bottom: -140px;
  left: -100px;
  border-color: rgba(173, 194, 208, 0.1);
}

.entr .split-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  padding: 4px 16px;
  margin-bottom: 32px;
  width: fit-content;
}

.entr .split-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ADC2D0;
}

.entr .split-badge-text {
  font-size: 15px;
  color: #ADC2D0;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.entr .split-h1 {
  font-size: 51px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 32px 0;
  font-weight: 700;
}

.entr .split-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 380px;
}

.entr .split-right {
  flex: 1;
  background: #F5F5F7;
  position: relative;
  overflow: hidden;
}

.entr .split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.entr .split-right-texture {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg,
      rgba(66, 130, 164, 0.04) 0px,
      rgba(66, 130, 164, 0.04) 1px,
      transparent 1px,
      transparent 12px);
  pointer-events: none;
}

.entr .gap-sect {
  padding: 96px 64px;
  background: linear-gradient(180deg, #eef4f8 0%, #ffffff 60%);
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.entr .gap-left {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.entr .gap-accent-line {
  width: 40px;
  height: 3px;
  background: #4282A4;
  border-radius: 2px;
}

.entr .gap-h2 {
  font-size: 27px;
  line-height: 1.1;
  color: #1b3a4b;
  margin: 0;
  font-weight: 700;
}

.entr .gap-lead {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5a6e;
  margin: 0;
  font-style: italic;
}

.entr .gap-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.entr .gap-para {
  font-size: 15px;
  line-height: 1.6;
  color: #2c4a5a;
  margin: 0;
  padding-left: 21px;
  border-top: 1px solid rgba(66, 130, 164, 0.12);
  padding-top: 16px;
  padding-bottom: 16px;
}

.entr .gap-para.accent-row {
  color: #4282A4;
  font-weight: 600;
  background: rgba(66, 130, 164, 0.05);
  border-radius: 2px;
  padding-left: 21px;
}

.entr .gap-metrics {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.entr .gap-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.entr .gap-metric-num {
  font-size: 51px;
  line-height: 1.1;
  color: #4282A4;
  font-weight: 700;
}

.entr .gap-metric-label {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7a8a;
  letter-spacing: 0.05em;
}

.entr .team-sect {
  padding: 96px 64px;
  background: #ffffff;
  position: relative;
}

.entr .team-sect-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.entr .team-sect-bg-circles {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
}

.entr .team-sect-bg-circles span {
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(66, 130, 164, 0.07);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.entr .team-sect-bg-circles span:nth-child(1) {
  width: 200px;
  height: 200px;
}

.entr .team-sect-bg-circles span:nth-child(2) {
  width: 340px;
  height: 340px;
}

.entr .team-sect-bg-circles span:nth-child(3) {
  width: 480px;
  height: 480px;
}

.entr .team-sect-bg-circles span:nth-child(4) {
  width: 620px;
  height: 620px;
}

.entr .team-top {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  position: relative;
}

.entr .team-img-col {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.entr .team-img-wrap {
  width: 360px;
  height: 440px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
}

.entr .team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.entr .team-img-caption {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7a8a;
  text-align: center;
  letter-spacing: 0.04em;
}

.entr .team-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.entr .team-accent-line {
  width: 40px;
  height: 3px;
  background: #4282A4;
  border-radius: 2px;
}

.entr .team-h2 {
  font-size: 27px;
  line-height: 1.1;
  color: #1b3a4b;
  margin: 0;
  font-weight: 700;
}

.entr .team-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #2c4a5a;
  margin: 0;
  padding-left: 21px;
}

.entr .team-creds {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.entr .team-cred-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #F5F5F7;
  border-radius: 2px;
  box-shadow: inset 0 3px 6px -1px rgba(66, 130, 164, 0.06);
}

.entr .team-cred-num {
  font-size: 27px;
  line-height: 1.1;
  color: #4282A4;
  font-weight: 700;
  flex-shrink: 0;
  min-width: 32px;
}

.entr .team-cred-text {
  font-size: 15px;
  line-height: 1.6;
  color: #2c4a5a;
  margin: 0;
}

.entr .invest-sect {
  padding: 96px 64px;
  background: linear-gradient(160deg, rgba(66, 130, 164, 0.08) 0%, rgba(173, 194, 208, 0.12) 50%, #ffffff 100%);
  position: relative;
}

.entr .invest-sect-texture {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg,
      rgba(66, 130, 164, 0.03) 0px,
      rgba(66, 130, 164, 0.03) 1px,
      transparent 1px,
      transparent 18px);
  pointer-events: none;
}

.entr .invest-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.entr .invest-accent-line {
  width: 40px;
  height: 3px;
  background: #4282A4;
  border-radius: 2px;
}

.entr .invest-h2 {
  font-size: 27px;
  line-height: 1.1;
  color: #1b3a4b;
  margin: 0;
  font-weight: 700;
}

.entr .invest-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5a6e;
  margin: 0;
  max-width: 620px;
}

.entr .invest-cards {
  display: flex;
  flex-direction: row;
  gap: 32px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.entr .invest-card {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  background: #ffffff;
  border-radius: 22px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 22px -1px rgba(66, 130, 164, 0.08);
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s ease-in-out;
}

.entr .invest-card:hover {
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
  transform: translateY(-4px);
}

.entr .invest-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 22px;
  background: rgba(66, 130, 164, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4282A4;
}

.entr .invest-card-icon .material-icons {
  font-size: 24px;
}

.entr .invest-card-title {
  font-size: 15px;
  line-height: 1.1;
  color: #1b3a4b;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  margin: 0;
}

.entr .invest-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7a8a;
  text-align: center;
  margin: 0;
}

.entr .invest-note {
  font-size: 15px;
  line-height: 1.6;
  color: #4282A4;
  font-weight: 600;
  margin: 0;
  padding: 16px 32px;
  background: rgba(66, 130, 164, 0.07);
  border-radius: 2px;
  width: 100%;
  text-align: center;
}

.entr .invest-cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: #4282A4;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
  transition: color 0.28s ease-in-out;
  border: none;
  cursor: pointer;
}

.entr .invest-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ADC2D0 0%, #4282A4 60%);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.entr .invest-cta-btn:hover::before {
  opacity: 1;
}

.entr .invest-cta-btn span {
  position: relative;
}

.entr .reviews-sect {
  padding: 96px 64px;
  background: #ffffff;
}

.entr .reviews-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
  text-align: center;
}

.entr .reviews-accent-line {
  width: 40px;
  height: 3px;
  background: #4282A4;
  border-radius: 2px;
}

.entr .reviews-h2 {
  font-size: 27px;
  line-height: 1.1;
  color: #1b3a4b;
  margin: 0;
  font-weight: 700;
}

.entr .reviews-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7a8a;
  margin: 0;
  max-width: 560px;
}

.entr .reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.entr .review-card {
  background: #F5F5F7;
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: inset 0 3px 6px -1px rgba(66, 130, 164, 0.06);
  transition: box-shadow 0.32s ease-in-out;
}

.entr .review-card:hover {
  box-shadow: 0 4px 22px -1px rgba(66, 130, 164, 0.08), inset 0 3px 6px -1px rgba(66, 130, 164, 0.04);
}

.entr .review-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
  gap: 32px;
  background: #ffffff;
  box-shadow: 0 4px 22px -1px rgba(66, 130, 164, 0.08);
}

.entr .review-img-wrap {
  width: 180px;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 3px 6px -1px rgba(66, 130, 164, 0.06);
}

.entr .review-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.entr .review-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.entr .review-quote {
  font-size: 21px;
  line-height: 1.6;
  color: #1b3a4b;
  margin: 0;
  font-style: italic;
}

.entr .review-quote-sm {
  font-size: 15px;
  line-height: 1.6;
  color: #2c4a5a;
  margin: 0;
  font-style: italic;
  padding-left: 21px;
}

.entr .review-after {
  font-size: 15px;
  line-height: 1.6;
  color: #4282A4;
  font-weight: 600;
  margin: 0;
}

.entr .review-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.entr .review-name {
  font-size: 15px;
  line-height: 1.1;
  color: #1b3a4b;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.entr .review-role {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7a8a;
}

.entr .review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(66, 130, 164, 0.1);
  border-radius: 2px;
  padding: 4px 8px;
  width: fit-content;
}

.entr .review-badge-text {
  font-size: 15px;
  color: #4282A4;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.entr .word-reveal {
  display: inline;
}

.entr .word-reveal .wd {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  animation: wdshow 0.38s ease-in-out forwards;
}

.entr .word-reveal .wd:nth-child(1) {
  animation-delay: 0.05s;
}

.entr .word-reveal .wd:nth-child(2) {
  animation-delay: 0.12s;
}

.entr .word-reveal .wd:nth-child(3) {
  animation-delay: 0.19s;
}

.entr .word-reveal .wd:nth-child(4) {
  animation-delay: 0.26s;
}

.entr .word-reveal .wd:nth-child(5) {
  animation-delay: 0.33s;
}

.entr .word-reveal .wd:nth-child(6) {
  animation-delay: 0.40s;
}

.entr .word-reveal .wd:nth-child(7) {
  animation-delay: 0.47s;
}

.entr .word-reveal .wd:nth-child(8) {
  animation-delay: 0.54s;
}

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

@media (max-width: 1200px) {
  .entr .split-left {
    padding: 64px 32px 64px 32px;
  }

  .entr .gap-sect {
    padding: 64px 32px;
    gap: 32px;
  }

  .entr .gap-left {
    flex: 0 0 280px;
  }

  .entr .team-sect {
    padding: 64px 32px;
  }

  .entr .team-top {
    gap: 32px;
  }

  .entr .team-img-col {
    flex: 0 0 280px;
  }

  .entr .team-img-wrap {
    width: 280px;
    height: 340px;
  }

  .entr .invest-sect {
    padding: 64px 32px;
  }

  .entr .reviews-sect {
    padding: 64px 32px;
  }
}

@media (max-width: 900px) {
  .entr .split-screen {
    flex-direction: column;
    min-height: auto;
  }

  .entr .split-left {
    flex: none;
    padding: 64px 32px;
  }

  .entr .split-right {
    height: 320px;
  }

  .entr .split-h1 {
    font-size: 27px;
  }

  .entr .gap-sect {
    flex-direction: column;
    padding: 64px 32px;
    gap: 32px;
  }

  .entr .gap-left {
    flex: none;
    width: 100%;
  }

  .entr .gap-metrics {
    flex-direction: row;
    gap: 32px;
  }

  .entr .team-top {
    flex-direction: column;
  }

  .entr .team-img-col {
    flex: none;
    width: 100%;
  }

  .entr .team-img-wrap {
    width: 100%;
    height: 300px;
  }

  .entr .invest-cards {
    flex-direction: column;
    align-items: center;
  }

  .entr .invest-card {
    max-width: 100%;
    width: 100%;
  }

  .entr .reviews-grid {
    grid-template-columns: 1fr;
  }

  .entr .review-card.featured {
    flex-direction: column;
  }

  .entr .review-img-wrap {
    width: 100%;
    height: 220px;
  }
}

@media (max-width: 600px) {
  .entr .split-left {
    padding: 32px 16px;
  }

  .entr .split-h1 {
    font-size: 21px;
  }

  .entr .gap-sect {
    padding: 32px 16px;
  }

  .entr .gap-metric-num {
    font-size: 27px;
  }

  .entr .team-sect {
    padding: 32px 16px;
  }

  .entr .invest-sect {
    padding: 32px 16px;
  }

  .entr .invest-inner {
    gap: 16px;
  }

  .entr .reviews-sect {
    padding: 32px 16px;
  }

  .entr .reviews-grid {
    gap: 16px;
  }

  .entr .review-card {
    padding: 16px;
  }

  .entr .review-card.featured {
    padding: 16px;
  }

  .entr .review-quote {
    font-size: 15px;
  }

  .entr .team-h2,
  .entr .gap-h2,
  .entr .invest-h2,
  .entr .reviews-h2 {
    font-size: 21px;
  }
}

.abt {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.abt .reveal-top {
  animation: clipReveal 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.abt .reveal-top-delay {
  animation: clipReveal 0.7s 0.18s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.abt .reveal-top-delay2 {
  animation: clipReveal 0.7s 0.32s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes clipReveal {
  from {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  to {
    clip-path: inset(0 0 0% 0);
    opacity: 1;
  }
}

.abt ::selection {
  background: linear-gradient(90deg, #4282A4, #ADC2D0);
  color: #fff;
}

.abt .pg-lead {
  position: relative;
  background: #1a3448;
  min-height: 420px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
}

.abt .pg-lead-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #4282A4;
  z-index: 2;
}

.abt .pg-lead-txt {
  flex: 0 0 52%;
  padding: 96px 64px 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.abt .pg-lead-img-col {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
}

.abt .pg-lead-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.abt .pg-lead-img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 52, 72, 0.18) 0%, rgba(26, 52, 72, 0.72) 100%);
  pointer-events: none;
}

.abt .lead-eyebrow {
  font-size: 15px;
  letter-spacing: 0.18em;
  color: #ADC2D0;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.6;
}

.abt .lead-h1 {
  font-size: 68px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 32px 0;
  font-weight: 700;
}

.abt .lead-sub {
  font-size: 21px;
  line-height: 1.6;
  color: #ADC2D0;
  max-width: 420px;
  margin: 0;
}

.abt .rect-deco {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 3;
}

.abt .rect-deco span {
  position: absolute;
  border: 1.5px solid rgba(173, 194, 208, 0.28);
  border-radius: 2px;
}

.abt .rect-deco span:nth-child(1) {
  inset: 0;
}

.abt .rect-deco span:nth-child(2) {
  inset: 10px;
}

.abt .rect-deco span:nth-child(3) {
  inset: 20px;
}

.abt .rect-deco span:nth-child(4) {
  inset: 30px;
}

.abt .who-strip {
  background: #F5F5F7;
  padding: 96px 64px;
  position: relative;
}

.abt .who-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.abt .who-label-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
}

.abt .who-label-line {
  width: 48px;
  height: 3px;
  background: #4282A4;
  border-radius: 2px;
  margin-bottom: 16px;
}

.abt .who-label {
  font-size: 27px;
  line-height: 1.1;
  color: #4282A4;
  font-weight: 700;
  margin: 0 0 32px 0;
}

.abt .who-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 16px;
}

.abt .who-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt .who-stat-num {
  font-size: 51px;
  line-height: 1.1;
  color: #4282A4;
  font-weight: 700;
}

.abt .who-stat-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555f6b;
  letter-spacing: 0.04em;
}

.abt .who-body-col {
  display: flex;
  flex-direction: column;
}

.abt .who-body-col p {
  font-size: 21px;
  line-height: 1.6;
  color: #2a3540;
  text-indent: 2em;
  margin: 0;
}

.abt .who-body-col p+p {
  margin-top: 0;
}

.abt .who-accent-line {
  font-size: 21px;
  line-height: 1.6;
  color: #4282A4;
  font-weight: 600;
  text-indent: 0 !important;
  margin-bottom: 8px;
}

.abt .contrast-block {
  background: #fff;
  padding: 96px 64px;
  position: relative;
}

.abt .contrast-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.abt .contrast-head {
  text-align: center;
  margin-bottom: 64px;
}

.abt .contrast-head-line {
  width: 48px;
  height: 3px;
  background: #4282A4;
  border-radius: 2px;
  margin: 0 auto 16px auto;
}

.abt .contrast-h2 {
  font-size: 51px;
  line-height: 1.1;
  color: #1d2d3a;
  font-weight: 700;
  margin: 0;
}

.abt .ba-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.abt .ba-side {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
  position: relative;
}

.abt .ba-side-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(0px);
  transition: filter 0.38s ease-in-out;
}

.abt .ba-side:hover .ba-side-img {
  filter: blur(2px) brightness(0.85);
}

.abt .ba-side-body {
  background: #fff;
  padding: 32px;
  box-shadow: inset 0 4px 22px -1px rgba(66, 130, 164, 0.08);
}

.abt .ba-badge {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 22px;
  margin-bottom: 16px;
  font-weight: 600;
}

.abt .ba-badge.before {
  background: #ADC2D0;
  color: #1d2d3a;
}

.abt .ba-badge.after {
  background: #4282A4;
  color: #fff;
}

.abt .ba-side-h3 {
  font-size: 27px;
  line-height: 1.1;
  color: #1d2d3a;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.abt .ba-side-p {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4a56;
  margin: 0;
}

.abt .ba-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.abt .ba-connector-dot {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 22px -1px rgba(66, 130, 164, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ADC2D0;
}

.abt .ba-connector-dot .material-icons {
  color: #4282A4;
  font-size: 24px;
}

.abt .ba-outer {
  position: relative;
}

.abt .pillars-block {
  background: #2a3f52;
  padding: 96px 64px;
  position: relative;
  overflow: hidden;
}

.abt .pillars-deco {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 100px;
  height: 100px;
  pointer-events: none;
}

.abt .pillars-deco span {
  position: absolute;
  border: 1.5px solid rgba(173, 194, 208, 0.2);
  border-radius: 2px;
}

.abt .pillars-deco span:nth-child(1) {
  inset: 0;
}

.abt .pillars-deco span:nth-child(2) {
  inset: 12px;
}

.abt .pillars-deco span:nth-child(3) {
  inset: 24px;
}

.abt .pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.abt .pillars-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.abt .pillars-head-col {
  display: flex;
  flex-direction: column;
}

.abt .pillars-head-line {
  width: 48px;
  height: 3px;
  background: #ADC2D0;
  border-radius: 2px;
  margin-bottom: 16px;
}

.abt .pillars-h2 {
  font-size: 51px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.abt .pillars-intro {
  font-size: 21px;
  line-height: 1.6;
  color: #ADC2D0;
  margin: 0;
}

.abt .pillars-img-col {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
}

.abt .pillars-img-col img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.abt .pillars-img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 63, 82, 0.05) 0%, rgba(42, 63, 82, 0.55) 100%);
  pointer-events: none;
}

.abt .pillars-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: pillar-counter;
}

.abt .pillars-list li {
  counter-increment: pillar-counter;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 3px 6px -1px rgba(66, 130, 164, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.28s ease-in-out;
}

.abt .pillars-list li:hover {
  background: rgba(255, 255, 255, 0.10);
}

.abt .pillar-num {
  font-size: 51px;
  line-height: 1.1;
  color: #4282A4;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.abt .pillar-num::before {
  content: counter(pillar-counter, decimal-leading-zero);
}

.abt .pillar-ttl {
  font-size: 21px;
  line-height: 1.1;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.abt .pillar-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #ADC2D0;
  margin: 0;
}

.abt .team-block {
  background: #F5F5F7;
  padding: 96px 64px;
  position: relative;
}

.abt .team-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.abt .team-head {
  margin-bottom: 64px;
}

.abt .team-head-line {
  width: 48px;
  height: 3px;
  background: #4282A4;
  border-radius: 2px;
  margin-bottom: 16px;
}

.abt .team-h2 {
  font-size: 51px;
  line-height: 1.1;
  color: #1d2d3a;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.abt .team-intro {
  font-size: 21px;
  line-height: 1.6;
  color: #3a4a56;
  max-width: 640px;
  margin: 0;
}

.abt .team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.abt .team-img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
}

.abt .team-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.abt .team-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(66, 130, 164, 0.04) 0%, rgba(66, 130, 164, 0.22) 100%);
  pointer-events: none;
}

.abt .team-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt .team-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 4px 22px -1px rgba(66, 130, 164, 0.08);
  box-shadow: inset 0 2px 8px -1px rgba(66, 130, 164, 0.06), 0 4px 22px -1px rgba(66, 130, 164, 0.08);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.28s ease-in-out;
}

.abt .team-card:hover {
  box-shadow: inset 0 2px 8px -1px rgba(66, 130, 164, 0.06), 0 9px 36px -1px rgba(66, 130, 164, 0.13);
}

.abt .team-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #ADC2D0;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt .team-card-icon .material-icons {
  color: #1d2d3a;
  font-size: 22px;
}

.abt .team-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt .team-card-name {
  font-size: 21px;
  line-height: 1.1;
  color: #1d2d3a;
  font-weight: 700;
  margin: 0;
}

.abt .team-card-role {
  font-size: 15px;
  line-height: 1.6;
  color: #4282A4;
  letter-spacing: 0.06em;
  margin: 0;
}

.abt .team-card-note {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4a56;
  margin: 0;
  margin-top: 4px;
}

@media (max-width: 1200px) {
  .abt .pg-lead-txt {
    padding: 64px 48px;
  }

  .abt .lead-h1 {
    font-size: 51px;
  }

  .abt .who-grid {
    gap: 48px;
  }

  .abt .pillars-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .abt .pg-lead {
    flex-direction: column;
  }

  .abt .pg-lead-txt {
    flex: none;
    padding: 64px 32px 32px 32px;
  }

  .abt .pg-lead-img-col {
    flex: none;
    height: 280px;
  }

  .abt .lead-h1 {
    font-size: 51px;
  }

  .abt .who-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .abt .who-strip {
    padding: 64px 32px;
  }

  .abt .contrast-block {
    padding: 64px 32px;
  }

  .abt .ba-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .abt .ba-connector {
    display: none;
  }

  .abt .pillars-block {
    padding: 64px 32px;
  }

  .abt .pillars-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .abt .pillars-list {
    grid-template-columns: 1fr 1fr;
  }

  .abt .team-block {
    padding: 64px 32px;
  }

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

  .abt .team-img-wrap {
    display: none;
  }
}

@media (max-width: 600px) {
  .abt .pg-lead-txt {
    padding: 64px 16px 32px 16px;
  }

  .abt .lead-h1 {
    font-size: 27px;
  }

  .abt .lead-sub {
    font-size: 15px;
  }

  .abt .who-strip {
    padding: 64px 16px;
  }

  .abt .who-stat-num {
    font-size: 27px;
  }

  .abt .contrast-block {
    padding: 64px 16px;
  }

  .abt .contrast-h2 {
    font-size: 27px;
  }

  .abt .pillars-block {
    padding: 64px 16px;
  }

  .abt .pillars-h2 {
    font-size: 27px;
  }

  .abt .pillars-list {
    grid-template-columns: 1fr;
  }

  .abt .team-block {
    padding: 64px 16px;
  }

  .abt .team-h2 {
    font-size: 27px;
  }

  .abt .team-card {
    flex-direction: column;
    gap: 8px;
    padding: 16px;
  }
}

.lp-prog {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.lp-prog .grad-line {
  height: 3px;
  background: linear-gradient(90deg, #4282A4, #ADC2D0);
  border: none;
  margin: 0;
}

.lp-prog .grad-line-rev {
  height: 3px;
  background: linear-gradient(90deg, #ADC2D0, #4282A4);
  border: none;
  margin: 0;
}

.lp-prog .title-area {
  position: relative;
  background: linear-gradient(135deg, #4282A4 0%, #ADC2D0 55%, #F5F5F7 100%);
  padding: 96px 64px;
}

.lp-prog .title-area .frame-deco {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  pointer-events: none;
}

.lp-prog .title-area .frame-deco::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
}

.lp-prog .title-area .frame-deco::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
}

.lp-prog .title-area .t-inner {
  position: relative;
  max-width: 760px;
}

.lp-prog .title-area .t-accent-line {
  width: 48px;
  height: 2px;
  background: #fff;
  margin-bottom: 16px;
}

.lp-prog .title-area .t-label {
  font-size: 15px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lp-prog .title-area h1 {
  font-size: 68px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 32px;
  font-weight: 800;
}

.lp-prog .title-area .t-sub {
  font-size: 21px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  margin: 0;
}

.lp-prog .title-area .dot-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 32px;
}

.lp-prog .title-area .dot-row span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  display: inline-block;
}

.lp-prog .title-area .dot-row span:first-child {
  background: #fff;
}

.lp-prog .cards-area {
  background: #F5F5F7;
  padding: 96px 64px;
  position: relative;
}

.lp-prog .cards-area .corner-deco {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 80px;
  height: 80px;
  pointer-events: none;
  overflow: hidden;
}

.lp-prog .cards-area .corner-deco::before,
.lp-prog .cards-area .corner-deco::after {
  content: '';
  position: absolute;
  border: 1px solid #ADC2D0;
  border-radius: 2px;
}

.lp-prog .cards-area .corner-deco::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.lp-prog .cards-area .corner-deco::after {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}

.lp-prog .cards-area .corner-deco-inner {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(66, 130, 164, 0.3);
  border-radius: 2px;
}

.lp-prog .sec-label {
  font-size: 15px;
  letter-spacing: 0.13em;
  color: #4282A4;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
}

.lp-prog .sec-accent {
  width: 40px;
  height: 2px;
  background: #4282A4;
  margin: 0 auto 16px;
}

.lp-prog .sec-head {
  font-size: 51px;
  line-height: 1.1;
  color: #1b3a4b;
  text-align: center;
  margin: 0 0 8px;
  font-weight: 700;
}

.lp-prog .sec-intro {
  font-size: 21px;
  line-height: 1.6;
  color: #3a5a6e;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.lp-prog .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.lp-prog .prog-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 22px -1px rgba(66, 130, 164, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-prog .prog-card:hover {
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
  transform: translateY(-4px);
}

.lp-prog .card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.lp-prog .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  animation: imgscale 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes imgscale {
  from {
    transform: scale(0.97);
  }

  to {
    transform: scale(1);
  }
}

.lp-prog .card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(66, 130, 164, 0);
  transition: background 0.32s ease-in-out;
}

.lp-prog .prog-card:hover .card-img-wrap::after {
  background: rgba(66, 130, 164, 0.22);
}

.lp-prog .prog-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.lp-prog .card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  box-shadow: inset 0 3px 6px -1px rgba(66, 130, 164, 0.06);
}

.lp-prog .card-meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lp-prog .card-dur {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #4282A4;
  background: #F5F5F7;
  border-radius: 2px;
  padding: 4px 8px;
}

.lp-prog .card-dur .material-icons {
  font-size: 15px;
}

.lp-prog .card-seats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #3a5a6e;
  background: rgba(173, 194, 208, 0.18);
  border-radius: 2px;
  padding: 4px 8px;
}

.lp-prog .card-seats .material-icons {
  font-size: 15px;
}

.lp-prog .card-title {
  font-size: 21px;
  line-height: 1.1;
  color: #1b3a4b;
  font-weight: 700;
  margin: 0 0 16px;
}

.lp-prog .card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5a6e;
  margin: 0 0 16px;
  flex: 1;
}

.lp-prog .card-likes {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #ADC2D0;
  margin-bottom: 16px;
}

.lp-prog .card-likes .material-icons {
  font-size: 18px;
  color: #ADC2D0;
}

.lp-prog .card-price-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 8px;
}

.lp-prog .card-price {
  font-size: 27px;
  line-height: 1.1;
  color: #4282A4;
  font-weight: 800;
}

.lp-prog .card-price-terms {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5a6e;
  padding-bottom: 2px;
}

.lp-prog .card-price-note {
  font-size: 15px;
  line-height: 1.6;
  color: #ADC2D0;
  margin-bottom: 16px;
}

.lp-prog .card-cta {
  display: inline-block;
  background: #4282A4;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: 2px;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: color 0.26s ease-in-out;
}

.lp-prog .card-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 100%;
  bottom: 0;
  background: linear-gradient(135deg, #ADC2D0, #4282A4);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1), right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.lp-prog .card-cta:hover::before {
  left: 0;
  right: 0;
}

.lp-prog .card-cta span {
  position: relative;
  z-index: 1;
}

.lp-prog .why-area {
  background: #fff;
  padding: 96px 64px;
}

.lp-prog .why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-prog .why-img-col {
  position: relative;
}

.lp-prog .why-img-wrap {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
  position: relative;
}

.lp-prog .why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(0px);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-prog .why-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(66, 130, 164, 0.18) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.lp-prog .why-img-wrap:hover img {
  transform: scale(1.03);
}

.lp-prog .why-img-col .dots-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 16px;
  justify-content: flex-start;
}

.lp-prog .why-img-col .dots-row span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ADC2D0;
  display: inline-block;
}

.lp-prog .why-img-col .dots-row span:nth-child(2) {
  background: #4282A4;
}

.lp-prog .why-text-col {
  display: flex;
  flex-direction: column;
}

.lp-prog .why-text-col .sec-accent {
  margin: 0 0 16px;
}

.lp-prog .why-text-col .sec-label {
  text-align: left;
}

.lp-prog .why-text-col h2 {
  font-size: 51px;
  line-height: 1.1;
  color: #1b3a4b;
  font-weight: 700;
  margin: 0 0 32px;
  text-align: left;
}

.lp-prog .why-text-col p {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5a6e;
  text-indent: 1.5em;
  margin: 0;
}

.lp-prog .why-text-col p+p {
  margin-top: 0;
}

.lp-prog .why-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-prog .why-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.lp-prog .why-list .num {
  font-size: 27px;
  line-height: 1.1;
  color: #4282A4;
  font-weight: 800;
  min-width: 32px;
}

.lp-prog .why-list .txt {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5a6e;
  padding-top: 4px;
}

.lp-prog .why-list .accent-row {
  color: #4282A4;
  font-weight: 600;
}

.lp-prog .stats-area {
  background: linear-gradient(135deg, #1b3a4b 0%, #4282A4 60%, #ADC2D0 100%);
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.lp-prog .stats-area .bg-rect-deco {
  position: absolute;
  top: -32px;
  right: -32px;
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.lp-prog .stats-area .bg-rect-deco::before,
.lp-prog .stats-area .bg-rect-deco::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.lp-prog .stats-area .bg-rect-deco::before {
  inset: 0;
}

.lp-prog .stats-area .bg-rect-deco::after {
  inset: 16px;
}

.lp-prog .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.lp-prog .stat-item {
  text-align: center;
  padding: 32px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 3px 6px -1px rgba(66, 130, 164, 0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.lp-prog .stat-item .stat-num {
  font-size: 51px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  display: block;
}

.lp-prog .stat-item .stat-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  display: block;
}

.lp-prog .stat-item .stat-icon {
  color: #ADC2D0;
  font-size: 27px;
  margin-bottom: 8px;
  display: block;
}

.lp-prog .process-area {
  background: #F5F5F7;
  padding: 96px 64px;
}

.lp-prog .process-area .sec-accent {
  margin: 0 auto 16px;
}

.lp-prog .process-head {
  text-align: center;
  margin-bottom: 64px;
}

.lp-prog .process-head h2 {
  font-size: 51px;
  line-height: 1.1;
  color: #1b3a4b;
  font-weight: 700;
  margin: 0 0 16px;
}

.lp-prog .process-head p {
  font-size: 21px;
  line-height: 1.6;
  color: #3a5a6e;
  max-width: 520px;
  margin: 0 auto;
}

.lp-prog .steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}

.lp-prog .step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  align-items: flex-start;
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 3px 6px -1px rgba(66, 130, 164, 0.06);
  transition: box-shadow 0.26s ease-in-out;
}

.lp-prog .step-item:hover {
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
}

.lp-prog .step-num {
  font-size: 51px;
  line-height: 1.1;
  color: #4282A4;
  font-weight: 800;
  text-align: center;
}

.lp-prog .step-content h4 {
  font-size: 21px;
  line-height: 1.1;
  color: #1b3a4b;
  font-weight: 700;
  margin: 0 0 8px;
}

.lp-prog .step-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5a6e;
  margin: 0;
  text-indent: 1.5em;
}

.lp-prog .reviews-area {
  background: #fff;
  padding: 96px 64px;
}

.lp-prog .reviews-area .sec-accent {
  margin: 0 auto 16px;
}

.lp-prog .reviews-head {
  text-align: center;
  margin-bottom: 64px;
}

.lp-prog .reviews-head h2 {
  font-size: 51px;
  line-height: 1.1;
  color: #1b3a4b;
  font-weight: 700;
  margin: 0 0 16px;
}

.lp-prog .reviews-head p {
  font-size: 21px;
  line-height: 1.6;
  color: #3a5a6e;
  max-width: 520px;
  margin: 0 auto;
}

.lp-prog .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-prog .review-card {
  background: #F5F5F7;
  border-radius: 22px;
  padding: 32px;
  box-shadow: inset 0 3px 6px -1px rgba(66, 130, 164, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-prog .review-card .quote-icon {
  color: #ADC2D0;
  font-size: 27px;
}

.lp-prog .review-card blockquote {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5a6e;
  margin: 0;
  font-style: italic;
}

.lp-prog .review-card .reviewer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.lp-prog .review-card .rev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4282A4, #ADC2D0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  flex-shrink: 0;
}

.lp-prog .review-card .rev-name {
  font-size: 15px;
  font-weight: 700;
  color: #1b3a4b;
}

.lp-prog .review-card .rev-role {
  font-size: 15px;
  color: #ADC2D0;
}

.lp-prog .review-card .stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.lp-prog .review-card .stars .material-icons {
  font-size: 18px;
  color: #4282A4;
}

.lp-prog .cta-area {
  background: #F5F5F7;
  padding: 96px 64px;
}

.lp-prog .cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.lp-prog .cta-inner .sec-accent {
  margin: 0 auto 16px;
}

.lp-prog .cta-inner h2 {
  font-size: 51px;
  line-height: 1.1;
  color: #1b3a4b;
  font-weight: 700;
  margin: 0 0 16px;
}

.lp-prog .cta-inner p {
  font-size: 21px;
  line-height: 1.6;
  color: #3a5a6e;
  margin: 0 0 32px;
}

.lp-prog .cta-btn {
  display: inline-block;
  background: #4282A4;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  padding: 16px 64px;
  border-radius: 2px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.26s ease-in-out;
}

.lp-prog .cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 100%;
  bottom: 0;
  background: linear-gradient(135deg, #1b3a4b, #4282A4);
  transition: left 0.36s cubic-bezier(0.4, 0, 0.2, 1), right 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.lp-prog .cta-btn:hover::before {
  left: 0;
  right: 0;
}

.lp-prog .cta-btn span {
  position: relative;
  z-index: 1;
}

.lp-prog .cta-inner .dot-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}

.lp-prog .cta-inner .dot-row span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ADC2D0;
  display: inline-block;
}

.lp-prog .cta-inner .dot-row span:nth-child(3) {
  background: #4282A4;
}

@media (max-width: 1200px) {
  .lp-prog .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-prog .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-prog .why-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lp-prog .why-img-wrap {
    height: 320px;
  }
}

@media (max-width: 900px) {
  .lp-prog .title-area {
    padding: 64px 32px;
  }

  .lp-prog .title-area h1 {
    font-size: 51px;
  }

  .lp-prog .cards-area,
  .lp-prog .why-area,
  .lp-prog .process-area,
  .lp-prog .reviews-area,
  .lp-prog .cta-area {
    padding: 64px 32px;
  }

  .lp-prog .stats-area {
    padding: 64px 32px;
  }

  .lp-prog .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-prog .sec-head {
    font-size: 27px;
  }

  .lp-prog .why-text-col h2,
  .lp-prog .process-head h2,
  .lp-prog .reviews-head h2,
  .lp-prog .cta-inner h2 {
    font-size: 27px;
  }
}

@media (max-width: 600px) {
  .lp-prog .title-area {
    padding: 64px 16px;
  }

  .lp-prog .title-area h1 {
    font-size: 27px;
  }

  .lp-prog .title-area .t-sub {
    font-size: 15px;
  }

  .lp-prog .cards-area,
  .lp-prog .why-area,
  .lp-prog .process-area,
  .lp-prog .reviews-area,
  .lp-prog .cta-area {
    padding: 64px 16px;
  }

  .lp-prog .stats-area {
    padding: 64px 16px;
  }

  .lp-prog .card-grid {
    grid-template-columns: 1fr;
  }

  .lp-prog .stats-grid {
    grid-template-columns: 1fr;
  }

  .lp-prog .reviews-grid {
    grid-template-columns: 1fr;
  }

  .lp-prog .step-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lp-prog .step-num {
    font-size: 27px;
    text-align: left;
  }

  .lp-prog .cta-btn {
    font-size: 15px;
    padding: 16px 32px;
  }

  .lp-prog .sec-head {
    font-size: 21px;
  }

  .lp-prog .why-text-col h2,
  .lp-prog .process-head h2,
  .lp-prog .reviews-head h2,
  .lp-prog .cta-inner h2 {
    font-size: 21px;
  }
}

.srv-pg {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.srv-pg .split-head {
  position: relative;
  padding: 96px 64px 96px 64px;
  background: #fff;
}

.srv-pg .split-head::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 64px;
  width: 80px;
  height: 1px;
  background: #4282A4;
}

.srv-pg .split-head::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 64px;
  width: 1px;
  height: 48px;
  background: #4282A4;
}

.srv-pg .corner-geo-br {
  position: absolute;
  bottom: 32px;
  right: 64px;
  width: 48px;
  height: 48px;
  pointer-events: none;
}

.srv-pg .corner-geo-br::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 1px;
  background: #ADC2D0;
}

.srv-pg .corner-geo-br::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 48px;
  background: #ADC2D0;
}

.srv-pg .head-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: end;
  max-width: 1200px;
}

.srv-pg .head-label {
  font-size: 15px;
  letter-spacing: 0.18em;
  color: #4282A4;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.srv-pg .head-h1 {
  font-size: 68px;
  line-height: 1.1;
  color: #1a2940;
  margin: 0 0 32px 0;
  overflow: hidden;
}

.srv-pg .head-h1 .word-reveal {
  display: inline-block;
  animation: wordSpread 0.85s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.srv-pg .head-h1 .word-reveal:nth-child(2) {
  animation-delay: 0.12s;
}

.srv-pg .head-h1 .word-reveal:nth-child(3) {
  animation-delay: 0.24s;
}

.srv-pg .head-h1 .word-reveal:nth-child(4) {
  animation-delay: 0.36s;
}

@keyframes wordSpread {
  0% {
    opacity: 0;
    transform: translateX(-24px) scaleX(1.15);
    letter-spacing: 0.3em;
  }

  60% {
    opacity: 1;
    letter-spacing: 0.02em;
  }

  100% {
    opacity: 1;
    transform: translateX(0) scaleX(1);
    letter-spacing: normal;
  }
}

.srv-pg .head-desc {
  font-size: 21px;
  line-height: 1.6;
  color: #3a4a5c;
  max-width: 540px;
}

.srv-pg .head-img-col {
  position: relative;
}

.srv-pg .head-img-wrap {
  width: 380px;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
}

.srv-pg .head-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-pg .head-img-wrap:hover img {
  transform: scale(1.04);
}

.srv-pg .texture-line {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(66, 130, 164, 0.25);
  border-radius: 2px;
  pointer-events: none;
}

.srv-pg .wave-div {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.srv-pg .wave-div svg {
  display: block;
  width: 100%;
}

.srv-pg .detail-block {
  background: #F5F5F7;
  padding: 96px 64px;
  position: relative;
}

.srv-pg .detail-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(255, 255, 255, 0.92) 0%, rgba(173, 194, 208, 0.18) 60%, rgba(66, 130, 164, 0.09) 100%);
  pointer-events: none;
}

.srv-pg .chevron-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.srv-pg .chevron-bg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
}

.srv-pg .detail-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.srv-pg .detail-top {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: start;
}

.srv-pg .side-labels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.srv-pg .side-tag {
  font-size: 15px;
  letter-spacing: 0.14em;
  color: #4282A4;
  text-transform: uppercase;
  padding: 8px 16px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 6px -1px rgba(66, 130, 164, 0.06);
  text-align: center;
}

.srv-pg .curved-connector {
  position: absolute;
  left: 200px;
  top: 0;
  width: 64px;
  height: 80px;
  pointer-events: none;
}

.srv-pg .detail-h2 {
  font-size: 51px;
  line-height: 1.1;
  color: #1a2940;
  margin: 0 0 32px 0;
}

.srv-pg .detail-h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #4282A4;
  margin-bottom: 16px;
}

.srv-pg .detail-body {
  font-size: 21px;
  line-height: 1.6;
  color: #3a4a5c;
}

.srv-pg .detail-body p {
  text-indent: 2em;
  margin: 0;
}

.srv-pg .detail-body p+p {
  margin-top: 0;
}

.srv-pg .three-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 32px;
  margin-top: 64px;
  align-items: end;
}

.srv-pg .srv-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: inset 0 2px 8px rgba(66, 130, 164, 0.06), 0 4px 22px -1px rgba(66, 130, 164, 0.08);
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.srv-pg .srv-card:hover {
  box-shadow: inset 0 2px 8px rgba(66, 130, 164, 0.08), 0 9px 36px -1px rgba(66, 130, 164, 0.13);
  transform: translateY(-4px);
}

.srv-pg .srv-card.tall {
  padding: 48px 32px;
}

.srv-pg .card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 16px;
}

.srv-pg .card-num svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
}

.srv-pg .card-num span {
  font-size: 21px;
  line-height: 1.1;
  color: #4282A4;
  position: relative;
  z-index: 1;
}

.srv-pg .card-h4 {
  font-size: 21px;
  line-height: 1.1;
  color: #1a2940;
  margin: 0 0 16px 0;
}

.srv-pg .card-h4::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #ADC2D0;
  margin-bottom: 8px;
}

.srv-pg .card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5a6c;
}

.srv-pg .card-accent-line {
  font-size: 15px;
  line-height: 1.6;
  color: #4282A4;
  margin-top: 16px;
  font-weight: 600;
}

.srv-pg .srv-card .card-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 24px;
}

.srv-pg .srv-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-pg .srv-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.srv-pg .connect-flow {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  align-items: center;
  gap: 0;
  margin-top: 64px;
  padding: 32px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 6px -1px rgba(66, 130, 164, 0.06);
}

.srv-pg .flow-step {
  text-align: center;
  padding: 16px 8px;
}

.srv-pg .flow-icon {
  width: 48px;
  height: 48px;
  border-radius: 22px;
  background: #F5F5F7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px auto;
  transition: background 0.26s ease-in-out;
}

.srv-pg .flow-step:hover .flow-icon {
  background: #4282A4;
}

.srv-pg .flow-step:hover .flow-icon .material-icons {
  color: #fff;
}

.srv-pg .flow-icon .material-icons {
  font-size: 21px;
  color: #4282A4;
  transition: color 0.26s ease-in-out;
}

.srv-pg .flow-label {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4a5c;
  letter-spacing: 0.04em;
}

.srv-pg .flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.srv-pg .flow-arrow svg {
  width: 24px;
  height: 24px;
}

.srv-pg .quote-block {
  margin-top: 64px;
  padding: 32px 48px;
  background: linear-gradient(135deg, rgba(66, 130, 164, 0.07) 0%, rgba(173, 194, 208, 0.12) 60%, rgba(245, 245, 247, 0.9) 100%);
  border-radius: 22px;
  position: relative;
}

.srv-pg .quote-block blockquote {
  margin: 0;
  font-size: 21px;
  line-height: 1.6;
  color: #1a2940;
  font-style: italic;
}

.srv-pg .quote-accent {
  color: #4282A4;
  font-style: normal;
  font-weight: 700;
}

.srv-pg .quote-attr {
  margin-top: 16px;
  font-size: 15px;
  color: #4282A4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.srv-pg .quote-mark {
  position: absolute;
  top: 16px;
  left: 24px;
  width: 32px;
  height: 24px;
  opacity: 0.18;
}

@media (max-width: 1200px) {
  .srv-pg .head-grid {
    grid-template-columns: 1fr 300px;
    gap: 32px;
  }

  .srv-pg .head-img-wrap {
    width: 300px;
    height: 340px;
  }

  .srv-pg .head-h1 {
    font-size: 51px;
  }

  .srv-pg .three-col {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 16px;
  }

  .srv-pg .connect-flow {
    grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  }
}

@media (max-width: 900px) {
  .srv-pg .split-head {
    padding: 64px 32px;
  }

  .srv-pg .head-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .srv-pg .head-img-col {
    order: -1;
  }

  .srv-pg .head-img-wrap {
    width: 100%;
    height: 280px;
  }

  .srv-pg .head-h1 {
    font-size: 51px;
  }

  .srv-pg .detail-block {
    padding: 64px 32px;
  }

  .srv-pg .detail-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .srv-pg .side-labels {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .srv-pg .three-col {
    grid-template-columns: 1fr 1fr;
  }

  .srv-pg .three-col .srv-card.tall {
    grid-column: 1 / -1;
  }

  .srv-pg .connect-flow {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .srv-pg .flow-arrow {
    display: none;
  }

  .srv-pg .detail-h2 {
    font-size: 27px;
  }
}

@media (max-width: 600px) {
  .srv-pg .split-head {
    padding: 64px 16px;
  }

  .srv-pg .head-h1 {
    font-size: 27px;
  }

  .srv-pg .head-desc {
    font-size: 15px;
  }

  .srv-pg .detail-block {
    padding: 64px 16px;
  }

  .srv-pg .three-col {
    grid-template-columns: 1fr;
  }

  .srv-pg .three-col .srv-card.tall {
    grid-column: auto;
  }

  .srv-pg .connect-flow {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .srv-pg .quote-block {
    padding: 32px 24px;
  }

  .srv-pg .detail-h2 {
    font-size: 27px;
  }

  .srv-pg .head-grid {
    gap: 16px;
  }

  .srv-pg .split-head::before,
  .srv-pg .split-head::after {
    left: 16px;
  }
}

.suc-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  background: #F5F5F7;
}

.suc-page .card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 9px 36px -1px rgba(66, 130, 164, 0.13);
  padding: 64px;
  max-width: 620px;
  width: 100%;
  text-align: center;
}

.suc-page .card .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #F5F5F7;
  box-shadow: inset 0 3px 6px -1px rgba(66, 130, 164, 0.06);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.suc-page .card .icon-wrap svg {
  display: block;
}

.suc-page .card .accent-line {
  width: 40px;
  height: 3px;
  background: #4282A4;
  border-radius: 2px;
  margin: 0 auto 16px;
}

.suc-page .card .suc-heading {
  font-size: 27px;
  line-height: 1.1;
  color: #1b3a4b;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.suc-page .card .suc-body {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4e58;
  margin: 0 0 32px;
}

.suc-page .card .meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #F5F5F7;
  border-radius: 2px;
  padding: 16px;
  margin: 0 0 32px;
}

.suc-page .card .meta-row .meta-label {
  font-size: 15px;
  line-height: 1.6;
  color: #4282A4;
  letter-spacing: 0.06em;
}

.suc-page .card .meta-row .meta-val {
  font-size: 15px;
  line-height: 1.6;
  color: #1b3a4b;
}

.suc-page .card .btn-home {
  display: inline-block;
  padding: 16px 32px;
  background: #4282A4;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: 0.05em;
  border-radius: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.28s ease-in-out, box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.suc-page .card .btn-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ADC2D0 0%, #4282A4 60%, #2d6080 100%);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.suc-page .card .btn-home:hover::before {
  left: 0;
}

.suc-page .card .btn-home:hover {
  box-shadow: 0 4px 22px -1px rgba(66, 130, 164, 0.13);
}

.suc-page .card .btn-home span {
  position: relative;
  z-index: 1;
}

.suc-page .card .divider {
  width: 100%;
  height: 1px;
  background: #ADC2D0;
  opacity: 0.4;
  margin: 32px 0;
}

.suc-page .card .contact-note {
  font-size: 15px;
  line-height: 1.6;
  color: #3a4e58;
}

.suc-page .card .contact-note a {
  color: #4282A4;
  text-decoration: none;
  border-bottom: 1px solid #ADC2D0;
  transition: color 0.25s ease-in-out, border-color 0.25s ease-in-out;
}

.suc-page .card .contact-note a:hover {
  color: #2d6080;
  border-color: #4282A4;
}

@media (max-width: 600px) {
  .suc-page {
    padding: 64px 16px;
  }

  .suc-page .card {
    padding: 32px 16px;
  }
}