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

html {
  scroll-behavior: smooth;
}

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

*:focus-visible {
  outline: 2px dashed #315265;
  outline-offset: 3px;
  animation: focus-spin 4s linear infinite;
}

@keyframes focus-spin {
  0% { outline-offset: 3px; }
  50% { outline-offset: 5px; }
  100% { outline-offset: 3px; }
}

.site-header {
  position: relative;
  background: linear-gradient(135deg, #315265 0%, #5D708A 60%, #D5F7F7 100%);
  padding: 32px 32px 0 32px;
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(49,82,101,0.92) 0%, rgba(93,112,138,0.85) 100%);
  pointer-events: none;
}

.header-inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  z-index: 1;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-left: 8px;
  margin-bottom: 32px;
  text-decoration: none;
}

.brand-mark-img-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid #D5F7F7;
  box-shadow: 0 1px 4px 0 rgba(49,82,101,0.06), 0 7px 20px 0 rgba(49,82,101,0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}

.brand-mark-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #D5F7F7;
  letter-spacing: 0.02em;
}

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

.primary-nav li a {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: #D5F7F7;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px 8px 0 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1);
}

.primary-nav li a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: rgba(213,247,247,0.15);
  border-radius: 8px 8px 0 0;
  transition: left 0.55s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}

.primary-nav li a:hover::after,
.primary-nav li a:focus-visible::after {
  left: 0;
}

.primary-nav li a:hover,
.primary-nav li a:focus-visible {
  color: #fff;
}

@media (max-width: 768px) {
  .site-header {
    padding: 32px 16px 0 16px;
  }

  .brand-name {
    font-size: 21px;
  }

  .primary-nav li a {
    padding: 16px 16px;
    font-size: 13px;
  }
}

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

  .primary-nav li a {
    padding: 16px 8px;
  }
}

.site-footer {
  background: #315265;
  padding: 64px 32px 32px 32px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid #D5F7F7;
  box-shadow: 0 1px 4px 0 rgba(49,82,101,0.06), 0 7px 20px 0 rgba(49,82,101,0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}

.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-brand-name {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.2;
  color: #D5F7F7;
}

.footer-copy {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(213,247,247,0.65);
  margin: 0;
}

.footer-nav-group {
  margin-bottom: 32px;
}

.footer-nav-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #D5F7F7;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 16px 0;
  display: block;
}

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

.footer-nav-list li a {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(213,247,247,0.8);
  text-decoration: none;
  display: inline-block;
  transition: color 0.45s cubic-bezier(0.22,1,0.36,1);
}

.footer-nav-list li a:hover,
.footer-nav-list li a:focus-visible {
  color: #D5F7F7;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #D5F7F7;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-val {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(213,247,247,0.8);
  text-decoration: none;
  transition: color 0.45s ease-in-out;
}

a.contact-val:hover,
a.contact-val:focus-visible {
  color: #D5F7F7;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(213,247,247,0.15);
  margin: 0 0 32px 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-nav li a {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(213,247,247,0.6);
  text-decoration: none;
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1);
}

.footer-legal-nav li a:hover,
.footer-legal-nav li a:focus-visible {
  color: #D5F7F7;
}

.footer-yr {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(213,247,247,0.5);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 64px 16px 32px 16px;
  }

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

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

@media (max-width: 375px) {
  .footer-legal-nav {
    flex-direction: column;
    gap: 8px;
  }
}

.consent-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #315265;
  border-top: 2px solid #5D708A;
  box-shadow: 0 10px 52px 0 rgba(49,82,101,0.11);
  z-index: 4000;
  padding: 16px 32px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.consent-bar-text {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  line-height: 1.65;
  color: #D5F7F7;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

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

.consent-accept {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  color: #315265;
  background: #D5F7F7;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1);
  min-width: 44px;
  min-height: 44px;
}

.consent-accept::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: rgba(49,82,101,0.12);
  transition: left 0.55s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}

.consent-accept:hover::after,
.consent-accept:focus-visible::after {
  left: 0;
}

.consent-decline {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(213,247,247,0.75);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 16px 8px;
  min-width: 44px;
  min-height: 44px;
  transition: color 0.45s ease-in-out;
}

.consent-decline:hover,
.consent-decline:focus-visible {
  color: #D5F7F7;
}

.consent-mini {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 3999;
  background: #315265;
  border: 1px solid #5D708A;
  border-radius: 34px;
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11);
}

.consent-mini-btn {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  line-height: 1.45;
  color: #D5F7F7;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 34px;
  min-height: 44px;
  transition: background 0.5s cubic-bezier(0.22,1,0.36,1);
}

.consent-mini-btn:hover,
.consent-mini-btn:focus-visible {
  background: rgba(213,247,247,0.1);
}

@media (max-width: 375px) {
  .consent-bar {
    padding: 16px;
  }

  .consent-accept {
    padding: 16px 16px;
  }
}.puy-agreement-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 64px 32px;
    color: #1e3a4a;
    background: #ffffff;
}

.puy-agreement-content h1 {
    font-size: 50px;
    line-height: 1.2;
    color: #315265;
    margin-bottom: 32px;
    margin-top: 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #D5F7F7;
}

.puy-agreement-content h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #315265;
    margin-top: 64px;
    margin-bottom: 16px;
}

.puy-agreement-content h3 {
    font-size: 28px;
    line-height: 1.45;
    color: #3d5f74;
    margin-top: 32px;
    margin-bottom: 16px;
}

.puy-agreement-content h4 {
    font-size: 21px;
    line-height: 1.45;
    color: #3d5f74;
    margin-top: 32px;
    margin-bottom: 8px;
}

.puy-agreement-content h5 {
    font-size: 17px;
    line-height: 1.45;
    color: #5D708A;
    margin-top: 32px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.puy-agreement-content h6 {
    font-size: 13px;
    line-height: 1.45;
    color: #5D708A;
    margin-top: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.puy-agreement-content p {
    font-size: 17px;
    line-height: 1.65;
    color: #1e3a4a;
    margin-top: 0;
    margin-bottom: 16px;
}

.puy-agreement-content ul,
.puy-agreement-content ol {
    font-size: 17px;
    line-height: 1.65;
    color: #1e3a4a;
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 32px;
}

.puy-agreement-content ul {
    list-style-type: disc;
}

.puy-agreement-content ol {
    list-style-type: decimal;
}

.puy-agreement-content li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.puy-agreement-content li:last-child {
    margin-bottom: 0;
}

.puy-agreement-content ul ul,
.puy-agreement-content ol ol,
.puy-agreement-content ul ol,
.puy-agreement-content ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.puy-agreement-content strong,
.puy-agreement-content b {
    font-weight: 700;
    color: #315265;
}

.puy-agreement-content em,
.puy-agreement-content i {
    font-style: italic;
    color: #3d5f74;
}

.puy-agreement-content a {
    color: #315265;
    text-decoration: underline;
    text-decoration-color: #D5F7F7;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    transition: color 0.5s cubic-bezier(0.22,1,0.36,1), text-decoration-color 0.45s ease-in-out;
}

.puy-agreement-content a:hover {
    color: #5D708A;
    text-decoration-color: #5D708A;
}

.puy-agreement-content a:focus-visible {
    outline: 2px solid #315265;
    outline-offset: 3px;
    border-radius: 8px;
}

.puy-agreement-content hr {
    border: none;
    border-top: 1px solid #D5F7F7;
    margin-top: 64px;
    margin-bottom: 64px;
    background: none;
}

@media (max-width: 768px) {
    .puy-agreement-content {
        padding: 32px 16px;
    }

    .puy-agreement-content h1 {
        font-size: 38px;
    }

    .puy-agreement-content h2 {
        font-size: 28px;
        margin-top: 32px;
    }

    .puy-agreement-content h3 {
        font-size: 21px;
    }

    .puy-agreement-content h4 {
        font-size: 17px;
    }

    .puy-agreement-content hr {
        margin-top: 32px;
        margin-bottom: 32px;
    }
}

@media (max-width: 375px) {
    .puy-agreement-content {
        padding: 32px 16px;
    }

    .puy-agreement-content h1 {
        font-size: 28px;
    }

    .puy-agreement-content h2 {
        font-size: 21px;
    }

    .puy-agreement-content h3 {
        font-size: 17px;
    }

    .puy-agreement-content p,
    .puy-agreement-content ul,
    .puy-agreement-content ol {
        font-size: 13px;
    }

    .puy-agreement-content ul,
    .puy-agreement-content ol {
        padding-left: 16px;
    }
}
.certs-pg {
  background: #ffffff;
  overflow-x: clip;
}

.certs-pg * {
  box-sizing: border-box;
}

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

@keyframes angleshift {
  0% { background-image: linear-gradient(107deg, #315265 0%, #D5F7F7 60%, #ffffff 100%); }
  33% { background-image: linear-gradient(140deg, #5D708A 0%, #D5F7F7 50%, #ffffff 100%); }
  66% { background-image: linear-gradient(80deg, #315265 0%, #5D708A 40%, #D5F7F7 100%); }
  100% { background-image: linear-gradient(107deg, #315265 0%, #D5F7F7 60%, #ffffff 100%); }
}

.certs-pg .pg-lead {
  width: 100%;
  background: #f4fbfb;
  padding: 64px 16px;
  position: relative;
}

.certs-pg .pg-lead::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(107deg, rgba(49,82,101,0.07) 0%, rgba(213,247,247,0.18) 60%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.certs-pg .lead-frame {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

.certs-pg .lead-text {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}

.certs-pg .lead-quote-mark {
  position: absolute;
  top: -16px;
  left: -8px;
  font-size: 160px;
  line-height: 1.2;
  color: rgba(49,82,101,0.07);
  font-style: italic;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.certs-pg .lead-text-inner {
  position: relative;
  z-index: 1;
}

.certs-pg .lead-eyebrow {
  display: inline-block;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5D708A;
  border: 1px solid #5D708A;
  border-radius: 8px;
  padding: 4px 16px;
  margin-bottom: 16px;
}

.certs-pg .lead-h1 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b3344;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}

.certs-pg .lead-h1 em {
  font-style: italic;
  font-weight: 900;
  color: #315265;
}

.certs-pg .lead-counter-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.certs-pg .lead-count-num {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  color: #315265;
}

.certs-pg .lead-count-label {
  font-size: 17px;
  line-height: 1.45;
  color: #5D708A;
}

.certs-pg .lead-desc {
  font-size: 17px;
  line-height: 1.65;
  color: #2c3e4e;
  margin: 0;
  max-width: 520px;
}

.certs-pg .lead-img-col {
  flex: 0 0 340px;
  width: 340px;
  position: relative;
}

.certs-pg .lead-img-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11);
  position: relative;
  background: #D5F7F7;
}

.certs-pg .lead-img-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.88;
  mix-blend-mode: multiply;
}

.certs-pg .lead-img-tag {
  position: absolute;
  top: 16px;
  right: -8px;
  background: #315265;
  color: #D5F7F7;
  font-size: 13px;
  line-height: 1.45;
  padding: 4px 16px;
  border-radius: 8px 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 1px 4px 0 rgba(49,82,101,0.06);
}

.certs-pg .lead-divider {
  height: 2px;
  background: linear-gradient(107deg, #315265 0%, #D5F7F7 60%, #ffffff 100%);
  border: none;
  margin: 0;
}

.certs-pg .certs-grid-sec {
  width: 100%;
  padding: 96px 16px;
  background: #ffffff;
}

.certs-pg .certs-grid-frame {
  max-width: 1140px;
  margin: 0 auto;
}

.certs-pg .certs-grid-head {
  margin-bottom: 64px;
  text-align: center;
}

.certs-pg .certs-grid-head h2 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b3344;
  margin: 0 0 8px 0;
}

.certs-pg .certs-grid-head p {
  font-size: 17px;
  line-height: 1.65;
  color: #5D708A;
  margin: 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.certs-pg .cert-numbered-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.certs-pg .cert-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  padding: 32px;
  border-radius: 14px;
  background: #f4fbfb;
  box-shadow: 0 1px 4px 0 rgba(49,82,101,0.06);
  position: relative;
  transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1), background 0.5s ease-in-out;
}

.certs-pg .cert-item:hover {
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11);
  background: #eaf7f7;
}

.certs-pg .cert-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #315265 0%, #5D708A 100%);
  border-radius: 14px 0 0 14px;
  border-right: 2px solid #D5F7F7;
}

.certs-pg .cert-num {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #315265;
  color: #D5F7F7;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  box-shadow: 0 1px 4px 0 rgba(49,82,101,0.06);
  flex-shrink: 0;
}

.certs-pg .cert-body {
  flex: 1 1 0;
  min-width: 0;
}

.certs-pg .cert-body h3 {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b3344;
  margin: 0 0 8px 0;
}

.certs-pg .cert-body p {
  font-size: 17px;
  line-height: 1.65;
  color: #2c3e4e;
  margin: 0;
}

.certs-pg .cert-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #D5F7F7;
  color: #315265;
  font-size: 13px;
  line-height: 1.45;
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid rgba(49,82,101,0.15);
}

.certs-pg .cert-item:nth-child(even) {
  background: #f0f5f8;
}

.certs-pg .cert-item:nth-child(even):hover {
  background: #e4eff5;
}

.certs-pg .cert-item:nth-child(even) .cert-num {
  background: #5D708A;
}

.certs-pg .cert-divider {
  height: 1px;
  background: linear-gradient(107deg, #D5F7F7 0%, #5D708A 50%, #ffffff 100%);
  border: none;
  margin: 0;
}

.certs-pg .trust-sec {
  width: 100%;
  padding: 96px 16px 64px;
  position: relative;
  animation: angleshift 12s ease-in-out infinite;
  background-image: linear-gradient(107deg, #315265 0%, #D5F7F7 60%, #ffffff 100%);
  background-size: 200% 200%;
}

.certs-pg .trust-sec::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.72);
  pointer-events: none;
}

.certs-pg .trust-frame {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
}

.certs-pg .trust-left {
  flex: 1 1 0;
  min-width: 0;
}

.certs-pg .trust-left h2 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b3344;
  margin: 0 0 16px 0;
}

.certs-pg .trust-left p {
  font-size: 17px;
  line-height: 1.65;
  color: #2c3e4e;
  margin: 0 0 32px 0;
}

.certs-pg .trust-review-card {
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.certs-pg .trust-review-card::after {
  content: "";
  display: block;
  position: absolute;
  inset: 3px;
  border-radius: 12px;
  border: 1px solid rgba(213,247,247,0.6);
  pointer-events: none;
}

.certs-pg .trust-reviewer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.certs-pg .trust-portrait {
  width: 56px;
  height: 74px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0;
}

.certs-pg .trust-portrait img {
  width: 56px;
  height: 74px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.9;
}

.certs-pg .trust-reviewer-info {
  flex: 1 1 0;
  min-width: 0;
}

.certs-pg .trust-reviewer-name {
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  color: #1b3344;
  margin: 0 0 4px 0;
}

.certs-pg .trust-reviewer-role {
  font-size: 13px;
  line-height: 1.45;
  color: #5D708A;
  margin: 0;
}

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

.certs-pg .trust-star {
  width: 16px;
  height: 16px;
  background: #315265;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.certs-pg .trust-review-text {
  font-size: 17px;
  line-height: 1.65;
  color: #2c3e4e;
  margin: 0;
  font-style: italic;
}

.certs-pg .trust-right {
  flex: 0 0 380px;
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.certs-pg .trust-stat-block {
  border-radius: 14px;
  background: #315265;
  color: #D5F7F7;
  padding: 32px;
  box-shadow: 0 10px 52px 0 rgba(49,82,101,0.11);
  position: relative;
  overflow: hidden;
}

.certs-pg .trust-stat-block::before {
  content: "";
  display: block;
  position: absolute;
  top: -24px;
  right: -24px;
  width: 96px;
  height: 96px;
  border-radius: 48px;
  background: rgba(213,247,247,0.12);
  pointer-events: none;
}

.certs-pg .trust-stat-num {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 900;
  color: #D5F7F7;
  display: block;
  margin-bottom: 4px;
}

.certs-pg .trust-stat-desc {
  font-size: 17px;
  line-height: 1.45;
  color: rgba(213,247,247,0.82);
  margin: 0;
}

.certs-pg .trust-img-block {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11);
  position: relative;
}

.certs-pg .trust-img-block img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.82;
}

.certs-pg .trust-img-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(49,82,101,0.88);
  color: #D5F7F7;
  font-size: 13px;
  line-height: 1.45;
  padding: 4px 16px;
  border-radius: 8px;
  font-weight: 700;
}

.certs-pg .trust-rating-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 1px 4px 0 rgba(49,82,101,0.06);
  border: 1px solid rgba(213,247,247,0.7);
}

.certs-pg .trust-rating-num {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  color: #315265;
}

.certs-pg .trust-rating-detail {
  flex: 1 1 0;
  min-width: 0;
}

.certs-pg .trust-rating-stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-bottom: 4px;
}

.certs-pg .trust-rating-label {
  font-size: 13px;
  line-height: 1.45;
  color: #5D708A;
  margin: 0;
}

@media (max-width: 768px) {
  .certs-pg .lead-frame {
    flex-direction: column;
    gap: 32px;
  }
  .certs-pg .lead-img-col {
    flex: 0 0 auto;
    width: 100%;
  }
  .certs-pg .lead-h1 {
    font-size: 38px;
  }
  .certs-pg .trust-frame {
    flex-direction: column;
    gap: 32px;
  }
  .certs-pg .trust-right {
    flex: 0 0 auto;
    width: 100%;
  }
  .certs-pg .cert-item {
    flex-direction: column;
    gap: 16px;
  }
  .certs-pg .cert-tag {
    position: static;
    display: inline-block;
    margin-top: 8px;
  }
}

@media (max-width: 375px) {
  .certs-pg .lead-h1 {
    font-size: 28px;
  }
  .certs-pg .lead-count-num {
    font-size: 28px;
  }
  .certs-pg .certs-grid-head h2 {
    font-size: 28px;
  }
  .certs-pg .trust-left h2 {
    font-size: 28px;
  }
  .certs-pg .trust-stat-num {
    font-size: 38px;
  }
  .certs-pg .pg-lead {
    padding: 32px 16px;
  }
  .certs-pg .certs-grid-sec {
    padding: 64px 16px;
  }
  .certs-pg .trust-sec {
    padding: 64px 16px 32px;
  }
}

.cu-pg {
  background: #f4f8fa;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.cu-pg .lead-band {
  background: linear-gradient(107deg, #315265 0%, #5D708A 55%, #D5F7F7 100%);
  padding: 96px 32px 64px;
  position: relative;
  overflow: hidden;
}

.cu-pg .lead-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(213,247,247,0.18) 0%, transparent 65%),
              radial-gradient(ellipse at 10% 90%, rgba(49,82,101,0.35) 0%, transparent 55%);
  pointer-events: none;
  animation: vignette-breathe 6s ease-in-out infinite;
}

@keyframes vignette-breathe {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.cu-pg .lead-band::after {
  content: '';
  position: absolute;
  top: -32px;
  right: -32px;
  width: 320px;
  height: 320px;
  border: 1px dashed rgba(213,247,247,0.3);
  border-radius: 34px;
  transform: rotate(15deg);
  pointer-events: none;
}

.cu-pg .lead-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cu-pg .lead-text {
  padding-right: 32px;
}

.cu-pg .lead-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D5F7F7;
  margin-bottom: 16px;
  opacity: 0;
  animation: fade-up 0.6s cubic-bezier(0.22,1,0.36,1) 0.1s forwards;
}

.cu-pg .lead-head {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 16px;
  opacity: 0;
  animation: fade-up 0.65s cubic-bezier(0.22,1,0.36,1) 0.22s forwards;
}

.cu-pg .lead-head em {
  font-style: italic;
  color: #D5F7F7;
}

.cu-pg .lead-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0;
  opacity: 0;
  animation: fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.36s forwards;
}

.cu-pg .lead-contact-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.5s forwards;
}

.cu-pg .contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(213,247,247,0.2);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 1px 4px 0 rgba(49,82,101,0.06);
  transition: background 0.55s cubic-bezier(0.22,1,0.36,1), border-color 0.55s ease-in-out;
}

.cu-pg .contact-item:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(213,247,247,0.45);
}

.cu-pg .ci-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(213,247,247,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11), inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(49,82,101,0.15);
}

.cu-pg .ci-icon svg {
  width: 20px;
  height: 20px;
  stroke: #D5F7F7;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cu-pg .ci-data {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cu-pg .ci-label {
  font-size: 13px;
  color: rgba(213,247,247,0.7);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cu-pg .ci-val {
  font-size: 17px;
  color: #ffffff;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.45s ease-in-out;
}

.cu-pg .ci-val:hover {
  color: #D5F7F7;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.cu-pg .form-band {
  background: #ffffff;
  padding: 96px 32px;
}

.cu-pg .form-wrap {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.cu-pg .form-aside {
  position: sticky;
  top: 32px;
}

.cu-pg .aside-deco {
  width: 56px;
  height: 4px;
  background: linear-gradient(107deg, #315265, #5D708A);
  border-radius: 8px;
  margin-bottom: 32px;
}

.cu-pg .aside-head {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  color: #1e3a4a;
  margin: 0 0 16px;
}

.cu-pg .aside-head em {
  font-style: italic;
  color: #5D708A;
}

.cu-pg .aside-body {
  font-size: 17px;
  line-height: 1.65;
  color: #3d5464;
  margin: 0 0 32px;
}

.cu-pg .aside-note {
  font-size: 13px;
  line-height: 1.65;
  color: #5D708A;
  border-left: 3px solid #D5F7F7;
  border-top: 1px solid rgba(93,112,138,0.15);
  border-radius: 0 8px 8px 0;
  padding: 16px;
  background: #f4f8fa;
}

.cu-pg .form-main {
  background: #f4f8fa;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 10px 52px 0 rgba(49,82,101,0.11);
  border: 1px solid rgba(93,112,138,0.1);
}

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

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

.cu-pg .field-group label {
  font-size: 13px;
  font-weight: 600;
  color: #315265;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cu-pg .field-group input[type="text"],
.cu-pg .field-group input[type="tel"] {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  color: #1e3a4a;
  background: #ffffff;
  border: 1.5px solid rgba(93,112,138,0.25);
  border-radius: 8px;
  outline: none;
  box-sizing: border-box;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), inset 0 -1px 0 rgba(49,82,101,0.06);
  transition: border-color 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1);
}

.cu-pg .field-group input[type="text"]::placeholder,
.cu-pg .field-group input[type="tel"]::placeholder {
  color: rgba(93,112,138,0.45);
}

.cu-pg .field-group input[type="text"]:focus,
.cu-pg .field-group input[type="tel"]:focus {
  border-color: #315265;
  box-shadow: 0 0 0 3px rgba(49,82,101,0.12), inset 0 1px 0 rgba(255,255,255,0.8), inset 0 -1px 0 rgba(49,82,101,0.06);
}

.cu-pg .interest-label {
  font-size: 13px;
  font-weight: 600;
  color: #315265;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.cu-pg .interest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.cu-pg .interest-opt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid rgba(93,112,138,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 0.5s ease-in-out, background 0.5s ease-in-out;
}

.cu-pg .interest-opt:hover {
  border-color: #5D708A;
  background: rgba(213,247,247,0.18);
}

.cu-pg .interest-opt input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #315265;
  cursor: pointer;
}

.cu-pg .interest-opt span {
  font-size: 13px;
  color: #315265;
  line-height: 1.45;
  font-weight: 500;
}

.cu-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
  padding: 16px;
  background: rgba(213,247,247,0.2);
  border-radius: 8px;
  border: 1px solid rgba(93,112,138,0.15);
}

.cu-pg .privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: #315265;
  cursor: pointer;
}

.cu-pg .privacy-text {
  font-size: 13px;
  line-height: 1.65;
  color: #3d5464;
}

.cu-pg .privacy-text a {
  color: #315265;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.45s ease-in-out;
}

.cu-pg .privacy-text a:hover {
  color: #5D708A;
}

.cu-pg .submit-btn {
  position: relative;
  display: inline-block;
  padding: 16px 48px;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  background: #315265;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11);
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease-in-out;
  letter-spacing: 0.04em;
}

.cu-pg .submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: #5D708A;
  transition: left 0.55s cubic-bezier(0.22,1,0.36,1);
  z-index: 0;
}

.cu-pg .submit-btn:hover::before {
  left: 0;
}

.cu-pg .submit-btn:hover {
  box-shadow: 0 10px 52px 0 rgba(49,82,101,0.11);
}

.cu-pg .submit-btn span {
  position: relative;
  z-index: 1;
}

.cu-pg .submit-btn:focus-visible {
  outline: 3px solid #D5F7F7;
  outline-offset: 3px;
}

.cu-pg .divider-geo {
  height: 2px;
  background: linear-gradient(107deg, #D5F7F7 0%, #5D708A 50%, transparent 100%);
  margin: 0;
}

@media (max-width: 1366px) {
  .cu-pg .lead-inner {
    gap: 32px;
  }
  .cu-pg .form-wrap {
    grid-template-columns: 320px 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .cu-pg .lead-band {
    padding: 64px 16px 48px;
  }
  .cu-pg .lead-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cu-pg .lead-text {
    padding-right: 0;
  }
  .cu-pg .lead-head {
    font-size: 38px;
  }
  .cu-pg .form-band {
    padding: 64px 16px;
  }
  .cu-pg .form-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cu-pg .form-aside {
    position: static;
  }
  .cu-pg .aside-head {
    font-size: 28px;
  }
  .cu-pg .field-row {
    grid-template-columns: 1fr;
  }
  .cu-pg .interest-grid {
    grid-template-columns: 1fr;
  }
  .cu-pg .form-main {
    padding: 16px;
  }
}

@media (max-width: 375px) {
  .cu-pg .lead-head {
    font-size: 28px;
  }
  .cu-pg .lead-sub {
    font-size: 13px;
  }
  .cu-pg .submit-btn {
    width: 100%;
    text-align: center;
  }
}

.abt-pg {
  background: #ffffff;
  overflow-x: clip;
  position: relative;
}

.abt-pg .schema-block {
  display: none;
}

.abt-pg .reveal-clip {
  clip-path: inset(0 0 100% 0);
  animation: clipReveal 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s forwards;
}

@keyframes clipReveal {
  to { clip-path: inset(0 0 0% 0); }
}

.abt-pg .reveal-clip-delay {
  clip-path: inset(0 0 100% 0);
  animation: clipReveal 0.65s cubic-bezier(0.22,1,0.36,1) 0.35s forwards;
}

.abt-pg .reveal-clip-slow {
  clip-path: inset(0 0 100% 0);
  animation: clipReveal 0.7s cubic-bezier(0.22,1,0.36,1) 0.55s forwards;
}


.abt-pg .title-blk {
  background: linear-gradient(107deg, #315265 0%, #5D708A 55%, #D5F7F7 100%);
  padding: 96px 32px 64px;
  position: relative;
  border-bottom: 2px solid rgba(49,82,101,0.18);
}

.abt-pg .title-blk::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #D5F7F7;
}

.abt-pg .title-blk .pg-label {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D5F7F7;
  margin-bottom: 32px;
  display: block;
  text-align: center;
}

.abt-pg .title-blk .pg-anchor {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  margin: 0 auto 32px;
  max-width: 820px;
  letter-spacing: -0.01em;
}

.abt-pg .title-blk .pg-anchor em {
  font-style: normal;
  background: rgba(213,247,247,0.22);
  padding: 0 8px;
  border-radius: 8px;
}

.abt-pg .title-blk .pg-sub {
  font-size: 21px;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}

.abt-pg .title-blk .big-letter {
  position: absolute;
  right: 64px;
  top: 32px;
  font-size: 220px;
  font-weight: 900;
  line-height: 1.2;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.abt-pg .wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.abt-pg .wave-divider svg {
  display: block;
  width: 100%;
}


.abt-pg .split-row {
  display: grid;
  grid-template-columns: 30% 70%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 32px;
  gap: 64px;
  align-items: start;
}

.abt-pg .split-left {
  position: relative;
}

.abt-pg .split-left .outlined-shape {
  position: absolute;
  top: -32px;
  left: -16px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(49,82,101,0.14);
  border-radius: 48px;
  pointer-events: none;
}

.abt-pg .split-left .portrait-wrap {
  border-radius: 34px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2/3;
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11), 0 1px 4px 0 rgba(49,82,101,0.06);
  position: relative;
  z-index: 1;
}

.abt-pg .split-left .portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  display: block;
}

.abt-pg .split-left .person-tag {
  margin-top: 16px;
  padding: 16px;
  background: #f4fbfb;
  border-radius: 14px;
  border: 1px solid rgba(93,112,138,0.15);
  box-shadow: 0 1px 4px 0 rgba(93,112,138,0.06);
}

.abt-pg .split-left .person-tag .ptag-name {
  font-size: 17px;
  font-weight: 700;
  color: #315265;
  line-height: 1.2;
  margin-bottom: 4px;
}

.abt-pg .split-left .person-tag .ptag-role {
  font-size: 13px;
  color: #5D708A;
  line-height: 1.45;
}

.abt-pg .split-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt-pg .split-right .section-eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5D708A;
  display: block;
}

.abt-pg .split-right h2 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  color: #1e3545;
  margin: 0;
}

.abt-pg .split-right h2 .hl-word {
  background: #D5F7F7;
  padding: 0 8px;
  border-radius: 8px;
  color: #315265;
}

.abt-pg .split-right .body-text {
  font-size: 17px;
  line-height: 1.65;
  color: #3a4f5e;
  margin: 0;
}

.abt-pg .metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.abt-pg .metric-item {
  padding: 16px;
  background: linear-gradient(107deg, #f0f8f8 0%, #ffffff 100%);
  border-radius: 14px;
  border: 1px solid rgba(49,82,101,0.12);
  box-shadow: 0 1px 4px 0 rgba(49,82,101,0.06);
  text-align: left;
  transition: box-shadow 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

.abt-pg .metric-item:hover {
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11);
  transform: translateY(-4px);
}

.abt-pg .metric-item .m-val {
  font-size: 28px;
  font-weight: 900;
  color: #315265;
  line-height: 1.2;
  display: block;
}

.abt-pg .metric-item .m-desc {
  font-size: 13px;
  color: #5D708A;
  line-height: 1.45;
  margin-top: 4px;
  display: block;
}


.abt-pg .wave2 {
  background: #f4fbfb;
}


.abt-pg .feat-bg {
  background: linear-gradient(107deg, rgba(49,82,101,0.06) 0%, rgba(213,247,247,0.35) 100%);
  padding-top: 8px;
}

.abt-pg .feat-outer {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}

.abt-pg .feat-outer h3 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  color: #1e3545;
  text-align: center;
  margin: 0 0 8px;
}

.abt-pg .feat-outer .feat-sub {
  font-size: 17px;
  color: #5D708A;
  line-height: 1.45;
  text-align: left;
  max-width: 640px;
  margin: 0 0 64px;
}

.abt-pg .dbl-sidebar {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.abt-pg .side-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-pg .side-item {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(49,82,101,0.12);
  box-shadow: 0 1px 4px 0 rgba(49,82,101,0.06), inset 0 1px 0 rgba(255,255,255,0.8), inset 0 -1px 0 rgba(49,82,101,0.06);
  transition: background 0.55s cubic-bezier(0.22,1,0.36,1);
}

.abt-pg .side-item.odd {
  background: #ffffff;
}

.abt-pg .side-item.even {
  background: #f0f8f8;
}

.abt-pg .side-item:hover {
  background: #e8f5f5;
}

.abt-pg .side-item .si-label {
  font-size: 13px;
  font-weight: 700;
  color: #315265;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}

.abt-pg .side-item .si-text {
  font-size: 13px;
  color: #3a4f5e;
  line-height: 1.65;
  margin: 0;
}

.abt-pg .center-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt-pg .img-stack {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 10px 52px 0 rgba(49,82,101,0.11), 0 7px 20px 0 rgba(49,82,101,0.11);
}

.abt-pg .img-stack img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

.abt-pg .img-stack:hover img {
  transform: scale(1.04);
}

.abt-pg .img-stack .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(49,82,101,0.85) 0%, transparent 100%);
  color: #ffffff;
  font-size: 13px;
  line-height: 1.45;
}

.abt-pg .center-text-block {
  padding: 32px;
  background: #315265;
  border-radius: 34px;
  color: #ffffff;
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11);
}

.abt-pg .center-text-block h4 {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
  color: #D5F7F7;
  margin: 0 0 16px;
}

.abt-pg .center-text-block p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

.abt-pg .center-text-block .cta-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 17px;
  font-weight: 700;
  color: #D5F7F7;
  text-decoration: none;
  padding: 8px 32px;
  border: 2px solid #D5F7F7;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1);
}

.abt-pg .center-text-block .cta-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: #D5F7F7;
  z-index: 0;
  transition: width 0.55s cubic-bezier(0.22,1,0.36,1);
}

.abt-pg .center-text-block .cta-link span {
  position: relative;
  z-index: 1;
}

.abt-pg .center-text-block .cta-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.abt-pg .center-text-block .cta-link:hover {
  color: #315265;
}

.abt-pg .center-text-block .cta-link:focus-visible {
  outline: 3px solid #D5F7F7;
  outline-offset: 3px;
}


@media (max-width: 1366px) {
  .abt-pg .title-blk .big-letter {
    font-size: 160px;
    right: 32px;
  }
}

@media (max-width: 768px) {
  .abt-pg .title-blk {
    padding: 64px 16px 32px;
  }

  .abt-pg .title-blk .pg-anchor {
    font-size: 38px;
  }

  .abt-pg .title-blk .big-letter {
    display: none;
  }

  .abt-pg .title-blk .pg-sub {
    font-size: 17px;
  }

  .abt-pg .split-row {
    grid-template-columns: 1fr;
    padding: 64px 16px;
    gap: 32px;
  }

  .abt-pg .split-left .portrait-wrap {
    max-width: 220px;
    margin: 0 auto;
  }

  .abt-pg .split-left .outlined-shape {
    display: none;
  }

  .abt-pg .split-right h2 {
    font-size: 28px;
  }

  .abt-pg .metrics-row {
    grid-template-columns: 1fr;
  }

  .abt-pg .feat-outer {
    padding: 32px 16px 64px;
  }

  .abt-pg .feat-outer h3 {
    font-size: 28px;
  }

  .abt-pg .dbl-sidebar {
    grid-template-columns: 1fr;
  }

  .abt-pg .side-col {
    display: none;
  }
}

@media (max-width: 375px) {
  .abt-pg .title-blk .pg-anchor {
    font-size: 28px;
  }

  .abt-pg .split-right h2 {
    font-size: 21px;
  }

  .abt-pg .feat-outer h3 {
    font-size: 21px;
  }

  .abt-pg .metric-item .m-val {
    font-size: 21px;
  }
}

.prm {
  background: #ffffff;
  overflow-x: hidden;
}

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

.prm img {
  display: block;
  max-width: 100%;
}


.prm .tb {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  position: relative;
}

.prm .tb-img-zone {
  position: relative;
  overflow: hidden;
}

.prm .tb-img-zone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

.prm .tb-img-zone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(107deg, rgba(49,82,101,0.45) 0%, rgba(213,247,247,0.18) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.prm .tb-corner-tl {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 48px;
  height: 48px;
  border-top: 2px solid rgba(213,247,247,0.7);
  border-left: 2px solid rgba(213,247,247,0.7);
  border-radius: 8px 0 0 0;
  pointer-events: none;
  z-index: 2;
}

.prm .tb-corner-br {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 32px;
  height: 32px;
  border-bottom: 2px solid rgba(213,247,247,0.5);
  border-right: 2px solid rgba(213,247,247,0.5);
  border-radius: 0 0 8px 0;
  pointer-events: none;
  z-index: 2;
}

.prm .tb-text-zone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 64px 64px 64px;
  background: linear-gradient(107deg, #f4fbfb 0%, #ffffff 100%);
  position: relative;
}

.prm .tb-tag {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5D708A;
  margin-bottom: 32px;
  font-weight: 600;
}

.prm .tb-text-zone h1 {
  font-size: 50px;
  line-height: 1.2;
  color: #315265;
  font-weight: 900;
  margin: 0 0 32px 0;
  max-width: 520px;
}

.prm .tb-text-zone h1 em {
  font-style: italic;
  color: #5D708A;
}

.prm .tb-tagline {
  font-size: 17px;
  line-height: 1.65;
  color: #3d5060;
  margin: 0 0 32px 0;
  max-width: 420px;
}

.prm .tb-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.prm .tb-links a {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  background: #315265;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11);
}

.prm .tb-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #5D708A;
  transform: translateX(101%);
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
  z-index: 0;
}

.prm .tb-links a:hover::before {
  transform: translateX(0);
}

.prm .tb-links a span {
  position: relative;
  z-index: 1;
}

.prm .tb-links a.secondary {
  background: transparent;
  color: #315265;
  border: 2px solid #315265;
  box-shadow: none;
}

.prm .tb-links a.secondary::before {
  background: #D5F7F7;
}

.prm .tb-links a.secondary:hover {
  color: #315265;
}


.prm .rec {
  background: #315265;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.prm .rec-bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.prm .rec-bg-anim::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(93,112,138,0.18);
  top: -120px;
  right: -80px;
  animation: zoneshift 9s ease-in-out infinite alternate;
}

.prm .rec-bg-anim::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(213,247,247,0.07);
  bottom: -60px;
  left: 10%;
  animation: zoneshift2 11s ease-in-out infinite alternate;
}

@keyframes zoneshift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, 40px) scale(1.15); }
}

@keyframes zoneshift2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.1); }
}

.prm .rec-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.prm .rec-inner h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #D5F7F7;
  font-weight: 900;
  text-align: center;
  margin: 0 0 16px 0;
}

.prm .rec-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(213,247,247,0.75);
  text-align: left;
  max-width: 640px;
  margin: 0 auto 64px auto;
}

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

.prm .rec-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(213,247,247,0.15);
  border-radius: 14px;
  padding: 32px;
  transition: background 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 1px 4px 0 rgba(49,82,101,0.06);
}

.prm .rec-item:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
}

.prm .rec-item h4 {
  font-size: 21px;
  line-height: 1.2;
  color: #D5F7F7;
  font-weight: 800;
  margin: 0 0 16px 0;
}

.prm .rec-item p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(213,247,247,0.8);
  margin: 0;
}

.prm .rec-item .rec-num {
  font-size: 38px;
  font-weight: 900;
  color: rgba(213,247,247,0.25);
  line-height: 1.2;
  margin-bottom: 8px;
}

.prm .rec-cert-link {
  display: inline-block;
  margin-top: 64px;
  font-size: 17px;
  color: #D5F7F7;
  border-bottom: 1px solid rgba(213,247,247,0.4);
  text-decoration: none;
  padding-bottom: 4px;
  transition: border-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.prm .rec-cert-link:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.prm .rec-cert-wrap {
  text-align: center;
}


.prm .adapt {
  padding: 96px 0;
  background: #ffffff;
}

.prm .adapt-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.prm .adapt-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.prm .adapt-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  transition: box-shadow 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11);
}

.prm .adapt-img-wrap:hover img {
  box-shadow: 0 10px 52px 0 rgba(49,82,101,0.11);
  transform: scale(1.025);
}

.prm .adapt-txt h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #315265;
  font-weight: 900;
  margin: 0 0 16px 0;
}

.prm .adapt-txt h2 strong {
  font-style: italic;
  font-weight: 900;
}

.prm .adapt-txt p {
  font-size: 17px;
  line-height: 1.65;
  color: #3d5060;
  margin: 0 0 16px 0;
}

.prm .adapt-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
}

.prm .adapt-list li {
  font-size: 17px;
  line-height: 1.65;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.prm .adapt-list li:nth-child(odd) {
  background: #f4fbfb;
  color: #315265;
}

.prm .adapt-list li:nth-child(even) {
  background: #eef3f6;
  color: #3d5060;
}


.prm .prereq {
  background: linear-gradient(107deg, #f4fbfb 0%, #eef3f6 100%);
  padding: 96px 0 64px 0;
  position: relative;
}

.prm .prereq-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.prm .prereq-inner h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #315265;
  font-weight: 900;
  text-align: center;
  margin: 0 0 16px 0;
}

.prm .prereq-sub {
  font-size: 17px;
  line-height: 1.65;
  color: #5D708A;
  text-align: left;
  max-width: 580px;
  margin: 0 auto 64px auto;
}

.prm .prereq-cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}

.prm .prereq-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prm .prereq-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 1px 4px 0 rgba(49,82,101,0.06), inset 0 1px 0 rgba(213,247,247,0.6), inset 0 -1px 0 rgba(49,82,101,0.06);
  transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1);
}

.prm .prereq-card:hover {
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11), inset 0 1px 0 rgba(213,247,247,0.6), inset 0 -1px 0 rgba(49,82,101,0.06);
}

.prm .prereq-card h5 {
  font-size: 17px;
  font-weight: 800;
  color: #315265;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.prm .prereq-card p {
  font-size: 17px;
  line-height: 1.65;
  color: #3d5060;
  margin: 0;
}

.prm .prereq-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  top: 0;
}

.prm .prereq-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  transition: box-shadow 0.65s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11);
}

.prm .prereq-img-wrap:hover img {
  box-shadow: 0 10px 52px 0 rgba(49,82,101,0.11);
}


.prm .collab {
  padding: 96px 0;
  background: #ffffff;
  position: relative;
}

.prm .collab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(107deg, #315265 0%, #D5F7F7 100%);
}

.prm .collab-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.prm .collab-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.prm .collab-feat {
  background: #315265;
  border-radius: 14px;
  padding: 32px;
  color: #D5F7F7;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

.prm .collab-feat.mid {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #5D708A;
}

.prm .collab-feat:hover {
  transform: translateY(-6px);
}

.prm .collab-feat h4 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  color: #D5F7F7;
  margin: 0 0 16px 0;
}

.prm .collab-feat p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(213,247,247,0.85);
  margin: 0;
}

.prm .collab-bottom {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}

.prm .collab-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.prm .collab-portrait img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 4px solid #D5F7F7;
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11);
  transition: box-shadow 0.6s cubic-bezier(0.22,1,0.36,1);
}

.prm .collab-portrait img:hover {
  box-shadow: 0 10px 52px 0 rgba(49,82,101,0.11);
}

.prm .collab-portrait-name {
  font-size: 17px;
  font-weight: 700;
  color: #315265;
  text-align: center;
}

.prm .collab-portrait-role {
  font-size: 13px;
  color: #5D708A;
  text-align: center;
}

.prm .collab-desc h3 {
  font-size: 28px;
  line-height: 1.2;
  color: #315265;
  font-weight: 900;
  margin: 0 0 16px 0;
}

.prm .collab-desc p {
  font-size: 17px;
  line-height: 1.65;
  color: #3d5060;
  margin: 0 0 16px 0;
}


.prm .evid {
  background: linear-gradient(107deg, #315265 0%, #5D708A 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.prm .evid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.prm .evid-bg::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(213,247,247,0.06);
  bottom: -100px;
  right: -100px;
  animation: zoneshift 13s ease-in-out infinite alternate;
}

.prm .evid-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.prm .evid-inner h2 {
  font-size: 50px;
  line-height: 1.2;
  color: #D5F7F7;
  font-weight: 900;
  text-align: center;
  margin: 0 0 16px 0;
}

.prm .evid-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(213,247,247,0.8);
  text-align: left;
  max-width: 600px;
  margin: 0 auto 64px auto;
}

.prm .evid-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.prm .evid-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.prm .evid-met {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(213,247,247,0.18);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
  transition: background 0.55s cubic-bezier(0.22,1,0.36,1);
}

.prm .evid-met:hover {
  background: rgba(255,255,255,0.14);
}

.prm .evid-met-val {
  font-size: 38px;
  font-weight: 900;
  color: #D5F7F7;
  line-height: 1.2;
  margin-bottom: 8px;
}

.prm .evid-met-label {
  font-size: 13px;
  color: rgba(213,247,247,0.75);
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.prm .evid-stories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prm .evid-story {
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 32px;
  border-left: 3px solid rgba(213,247,247,0.4);
  border-top: 1px solid rgba(213,247,247,0.12);
  transition: background 0.6s ease-in-out;
}

.prm .evid-story:hover {
  background: rgba(255,255,255,0.12);
}

.prm .evid-story p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(213,247,247,0.9);
  margin: 0 0 8px 0;
  font-style: italic;
}

.prm .evid-story-who {
  font-size: 13px;
  color: rgba(213,247,247,0.6);
  font-style: normal;
}

.prm .evid-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 64px;
}

.prm .evid-img-row .eimg {
  border-radius: 14px;
  overflow: hidden;
}

.prm .evid-img-row .eimg img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  transition: box-shadow 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 7px 20px 0 rgba(49,82,101,0.11);
}

.prm .evid-img-row .eimg:hover img {
  box-shadow: 0 10px 52px 0 rgba(49,82,101,0.11);
  transform: scale(1.03);
}


@media (max-width: 1366px) {
  .prm .tb-text-zone h1 { font-size: 38px; }
  .prm .evid-inner h2 { font-size: 38px; }
}

@media (max-width: 768px) {
  .prm .tb {
    grid-template-columns: 1fr;
  }

  .prm .tb-img-zone {
    height: 320px;
  }

  .prm .tb-text-zone {
    padding: 64px 32px;
  }

  .prm .tb-text-zone h1 {
    font-size: 28px;
  }

  .prm .rec-grid {
    grid-template-columns: 1fr;
  }

  .prm .adapt-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .prm .prereq-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .prm .prereq-img-wrap {
    display: none;
  }

  .prm .collab-top {
    grid-template-columns: 1fr;
  }

  .prm .collab-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .prm .evid-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .prm .evid-img-row {
    grid-template-columns: 1fr;
  }

  .prm .evid-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 375px) {
  .prm .tb-text-zone {
    padding: 32px 16px;
  }

  .prm .rec-inner,
  .prm .adapt-inner,
  .prm .prereq-inner,
  .prm .collab-inner,
  .prm .evid-inner {
    padding: 0 16px;
  }

  .prm .tb-links {
    flex-direction: column;
  }

  .prm .evid-metrics {
    grid-template-columns: 1fr;
  }

  .prm .tb-text-zone h1 {
    font-size: 21px;
  }
}

.success-pg {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  background: linear-gradient(107deg, #D5F7F7 0%, #ffffff 100%);
}

.success-pg .confirm-wrap {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.success-pg .icon-shell {
  width: 80px;
  height: 80px;
  border-radius: 48px;
  background: #315265;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 7px 20px 0 rgba(49, 82, 101, 0.11);
  flex-shrink: 0;
}

.success-pg .icon-shell svg {
  display: block;
}

.success-pg .msg-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 560px;
}

.success-pg .msg-block .confirm-title {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  color: #315265;
  margin: 0;
  letter-spacing: -0.02em;
}

.success-pg .msg-block .confirm-sub {
  font-size: 17px;
  line-height: 1.65;
  color: #5D708A;
  margin: 0;
}

.success-pg .divider-line {
  width: 64px;
  height: 3px;
  background: linear-gradient(107deg, #315265, #D5F7F7);
  border-radius: 8px;
}

.success-pg .detail-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 1px 4px 0 rgba(49, 82, 101, 0.06), 0 7px 20px 0 rgba(49, 82, 101, 0.11);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.success-pg .detail-card .step-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.success-pg .detail-card .step-num {
  width: 32px;
  height: 32px;
  border-radius: 34px;
  background: #D5F7F7;
  color: #315265;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.success-pg .detail-card .step-label {
  font-size: 17px;
  font-weight: 700;
  color: #315265;
  line-height: 1.2;
  margin: 0;
}

.success-pg .detail-card .step-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #5D708A;
  margin: 0;
}

.success-pg .detail-card .card-sep {
  height: 1px;
  background: #D5F7F7;
  border: none;
  margin: 0;
}

.success-pg .back-action {
  display: inline-block;
  padding: 16px 32px;
  background: #315265;
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(49, 82, 101, 0.06), 0 7px 20px 0 rgba(49, 82, 101, 0.11);
  transition: background 0.55s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s ease-in-out;
  position: relative;
  overflow: hidden;
}

.success-pg .back-action::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: #5D708A;
  border-radius: 8px;
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
  z-index: 0;
}

.success-pg .back-action:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.success-pg .back-action span {
  position: relative;
  z-index: 1;
}

.success-pg .back-action:focus-visible {
  outline: 3px solid #315265;
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .success-pg {
    padding: 64px 16px;
  }

  .success-pg .msg-block .confirm-title {
    font-size: 28px;
  }

  .success-pg .detail-card {
    padding: 32px 16px;
  }
}

@media (max-width: 375px) {
  .success-pg {
    padding: 64px 8px;
  }

  .success-pg .msg-block .confirm-title {
    font-size: 21px;
  }

  .success-pg .msg-block .confirm-sub {
    font-size: 13px;
  }
}
