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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: 'Raleway', sans-serif;
}

.brand-bar {
  background: linear-gradient(135deg, #30414B 0%, #3a5260 60%, #497670 100%);
  padding: 32px 16px 16px;
}

.brand-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.logo-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 8px 16px;
  box-shadow: 1px 6px 14px 0 rgba(48, 65, 75, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 60px;
  flex-shrink: 0;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brand-name-text {
  font-size: 31px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0;
}

.proof-strip {
  background: #497670;
  padding: 8px 16px;
}

.proof-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.proof-item {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-dot {
  width: 6px;
  height: 6px;
  border-radius: 44px;
  background: rgba(255,255,255,0.55);
  flex-shrink: 0;
}

.nav-bar {
  background: #ffffff;
  border-bottom: 2px solid #7796A6;
  box-shadow: 1px 2px 6px 0 rgba(48, 65, 75, 0.06);
  padding: 0 16px;
}

.nav-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-link {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #30414B;
  text-decoration: none;
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color 700ms cubic-bezier(0.34,1.2,0.64,1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  background: #497670;
  border-radius: 6px 6px 0 0;
  transform: scaleX(0);
  transition: transform 750ms cubic-bezier(0.34,1.2,0.64,1);
}

.nav-link:hover {
  color: #497670;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link:focus {
  outline: 2px solid #497670;
  outline-offset: -2px;
  border-radius: 6px;
}

.nav-link.active {
  color: #497670;
}

.nav-link.active::after {
  transform: scaleX(1);
}

.site-footer {
  background: #30414B;
  padding: 64px 16px 32px;
}

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

.footer-brand-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(119,150,166,0.25);
}

.footer-logo-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 8px 16px;
  box-shadow: 1px 6px 14px 0 rgba(48, 65, 75, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 60px;
}

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

.footer-brand-name {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.footer-tagline {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(119,150,166,0.9);
  text-align: center;
  max-width: 480px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(119,150,166,0.15);
}

.footer-contact-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-label {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #7796A6;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-contact-val {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color 650ms ease-in-out;
}

.footer-contact-val:hover {
  color: #7796A6;
}

.footer-contact-val:focus {
  outline: 2px solid #7796A6;
  outline-offset: 2px;
  border-radius: 6px;
}

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

.footer-copy {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(119,150,166,0.7);
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(119,150,166,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(119,150,166,0.3);
  transition: color 700ms cubic-bezier(0.34,1.2,0.64,1), border-color 700ms cubic-bezier(0.34,1.2,0.64,1);
}

.footer-legal-link:hover {
  color: #7796A6;
  border-color: #7796A6;
}

.footer-legal-link:focus {
  outline: 2px solid #7796A6;
  outline-offset: 2px;
  border-radius: 6px;
}

.consent-tray {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 1px 12px 40px 0 rgba(48, 65, 75, 0.13);
  padding: 32px;
  max-width: 340px;
  width: calc(100vw - 64px);
  border-top: 3px solid #497670;
}

.consent-body {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #30414B;
  margin-bottom: 16px;
}

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

.consent-btn {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
  transition: color 650ms ease-in-out;
}

.consent-btn.accept-choice {
  color: #497670;
}

.consent-btn.accept-choice:hover {
  color: #30414B;
}

.consent-btn.accept-choice:focus {
  outline: 2px solid #497670;
  outline-offset: 2px;
  border-radius: 6px;
}

.consent-btn.decline-choice {
  color: #7796A6;
}

.consent-btn.decline-choice:hover {
  color: #30414B;
}

.consent-btn.decline-choice:focus {
  outline: 2px solid #7796A6;
  outline-offset: 2px;
  border-radius: 6px;
}

.pref-tab {
  display: none;
  position: fixed;
  bottom: 120px;
  right: 0;
  z-index: 999;
  background: #497670;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  border: none;
  border-radius: 6px 0 0 6px;
  padding: 8px 16px;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  transition: background-color 700ms cubic-bezier(0.34,1.2,0.64,1);
  min-height: 44px;
}

.pref-tab:hover {
  background: #30414B;
}

.pref-tab:focus {
  outline: 2px solid #30414B;
  outline-offset: 2px;
}

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

  .brand-name-text {
    font-size: 19px;
  }

  .proof-strip-inner {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .proof-item {
    font-size: 15px;
  }

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

  .nav-link::after {
    left: 16px;
    right: 16px;
  }

  .footer-contact-row {
    gap: 32px;
  }

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

  .consent-tray {
    bottom: 16px;
    right: 16px;
    width: calc(100vw - 32px);
    padding: 16px;
  }
}

@media (max-width: 390px) {
  .brand-bar-inner {
    flex-direction: column;
    gap: 8px;
  }

  .proof-strip-inner {
    flex-direction: column;
    gap: 8px;
  }

  .nav-bar-inner {
    gap: 4px;
  }

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

  .footer-legal-nav {
    gap: 16px;
  }

  .consent-tray {
    right: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
  }
}.terms-block-zu {
    max-width: 1140px;
    margin: 0 auto;
    padding: 64px 32px;
}

.terms-block-zu h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #30414B;
    margin-bottom: 32px;
    margin-top: 0;
}

.terms-block-zu h2 {
    font-size: 31px;
    line-height: 1.3;
    color: #30414B;
    margin-top: 64px;
    margin-bottom: 16px;
}

.terms-block-zu h3 {
    font-size: 19px;
    line-height: 1.5;
    color: #497670;
    margin-top: 32px;
    margin-bottom: 16px;
}

.terms-block-zu h4 {
    font-size: 16px;
    line-height: 1.5;
    color: #497670;
    margin-top: 32px;
    margin-bottom: 8px;
}

.terms-block-zu h5 {
    font-size: 15px;
    line-height: 1.5;
    color: #7796A6;
    margin-top: 16px;
    margin-bottom: 8px;
}

.terms-block-zu h6 {
    font-size: 15px;
    line-height: 1.5;
    color: #7796A6;
    margin-top: 16px;
    margin-bottom: 8px;
    font-style: italic;
}

.terms-block-zu p {
    font-size: 16px;
    line-height: 1.7;
    color: #30414B;
    margin-top: 0;
    margin-bottom: 16px;
}

.terms-block-zu ul {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 32px;
    list-style: none;
}

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

.terms-block-zu ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #30414B;
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

.terms-block-zu ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 44px;
    background-color: #497670;
}

.terms-block-zu ol li {
    font-size: 16px;
    line-height: 1.7;
    color: #30414B;
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
    counter-increment: policy-counter;
}

.terms-block-zu ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: -16px;
    top: 0;
    font-size: 15px;
    color: #497670;
    font-weight: 600;
    line-height: 1.7;
}

.terms-block-zu ul ul,
.terms-block-zu ol ol,
.terms-block-zu ul ol,
.terms-block-zu ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.terms-block-zu ul ul li::before {
    width: 4px;
    height: 4px;
    background-color: transparent;
    border: 1.5px solid #7796A6;
    top: 12px;
}

.terms-block-zu strong,
.terms-block-zu b {
    font-weight: 700;
    color: #30414B;
}

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

.terms-block-zu hr {
    border: none;
    border-top: 1.5px solid #7796A6;
    opacity: 0.28;
    margin-top: 64px;
    margin-bottom: 64px;
}

@media (max-width: 768px) {
    .terms-block-zu {
        padding: 32px 16px;
    }

    .terms-block-zu h1 {
        font-size: 31px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .terms-block-zu h2 {
        font-size: 19px;
        line-height: 1.5;
        margin-top: 32px;
        margin-bottom: 8px;
    }

    .terms-block-zu h3 {
        font-size: 16px;
        margin-top: 16px;
        margin-bottom: 8px;
    }

    .terms-block-zu hr {
        margin-top: 32px;
        margin-bottom: 32px;
    }
}

@media (max-width: 390px) {
    .terms-block-zu {
        padding: 16px 16px;
    }

    .terms-block-zu h1 {
        font-size: 31px;
    }

    .terms-block-zu ul,
    .terms-block-zu ol {
        padding-left: 16px;
    }
}
.hiw-pg {
  background: #fff;
  overflow-x: clip;
}

.hiw-pg .dot-scatter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hiw-pg .dot-scatter span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 44px;
  background: #497670;
  opacity: 0.13;
}

.hiw-pg .dot-scatter span:nth-child(1) { top: 8%; left: 7%; }
.hiw-pg .dot-scatter span:nth-child(2) { top: 15%; left: 82%; }
.hiw-pg .dot-scatter span:nth-child(3) { top: 32%; left: 14%; }
.hiw-pg .dot-scatter span:nth-child(4) { top: 55%; left: 91%; }
.hiw-pg .dot-scatter span:nth-child(5) { top: 72%; left: 5%; }
.hiw-pg .dot-scatter span:nth-child(6) { top: 88%; left: 74%; }
.hiw-pg .dot-scatter span:nth-child(7) { top: 44%; left: 48%; width: 3px; height: 3px; }
.hiw-pg .dot-scatter span:nth-child(8) { top: 22%; left: 61%; width: 3px; height: 3px; }

.hiw-pg .title-blk {
  position: relative;
  text-align: center;
  padding: 64px 32px;
  background: linear-gradient(to top, #30414B, #497670);
  overflow: hidden;
}

.hiw-pg .title-blk::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(48,65,75,0.55) 100%);
  pointer-events: none;
}

.hiw-pg .title-img-wrap {
  position: relative;
  display: inline-block;
  width: 720px;
  max-width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 1px 12px 40px 0 rgba(48,65,75,0.13);
  margin-bottom: 32px;
}

.hiw-pg .title-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 38%, rgba(48,65,75,0.48) 100%);
  pointer-events: none;
}

.hiw-pg .title-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85);
  transition: filter 700ms cubic-bezier(0.34,1.2,0.64,1);
}

.hiw-pg .title-img-wrap:hover img {
  filter: saturate(1.1);
}

.hiw-pg .title-eyebrow {
  font-size: 15px;
  line-height: 1.5;
  color: #7796A6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.hiw-pg .title-h1 {
  font-size: 58px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.hiw-pg .title-h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #7796A6;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.hiw-pg .title-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hiw-pg .title-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 44px;
  background: #497670;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.hiw-pg .steps-blk {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 32px;
}

.hiw-pg .steps-top {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 64px;
}

.hiw-pg .steps-left {
  flex: 0 0 340px;
  position: relative;
}

.hiw-pg .steps-left-label {
  font-size: 15px;
  line-height: 1.5;
  color: #497670;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}

.hiw-pg .steps-left-h {
  font-size: 31px;
  line-height: 1.3;
  color: #30414B;
  margin-bottom: 16px;
}

.hiw-pg .steps-left-p {
  font-size: 16px;
  line-height: 1.7;
  color: #497670;
}

.hiw-pg .steps-img-box {
  flex: 1;
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 1px 6px 14px 0 rgba(73,118,112,0.11);
}

.hiw-pg .steps-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.9) grayscale(0.1);
  transition: filter 800ms ease-in-out;
}

.hiw-pg .steps-img-box:hover img {
  filter: saturate(1) grayscale(0);
}

.hiw-pg .steps-img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(48,65,75,0.28) 100%);
  pointer-events: none;
}

.hiw-pg .step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.hiw-pg .step-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 1px 6px 14px 0 rgba(48,65,75,0.11);
  border-top: 3px solid #497670;
  transition: box-shadow 700ms cubic-bezier(0.34,1.2,0.64,1), transform 700ms cubic-bezier(0.34,1.2,0.64,1);
}

.hiw-pg .step-card:hover {
  box-shadow: 1px 12px 40px 0 rgba(48,65,75,0.13);
  transform: translateY(-4px);
}

.hiw-pg .step-num {
  font-size: 58px;
  line-height: 1.1;
  color: #7796A6;
  opacity: 0.22;
  position: absolute;
  top: 16px;
  right: 24px;
  pointer-events: none;
}

.hiw-pg .step-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: linear-gradient(to top, #30414B, #497670);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.hiw-pg .step-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hiw-pg .step-h {
  font-size: 19px;
  line-height: 1.3;
  color: #30414B;
  margin-bottom: 8px;
}

.hiw-pg .step-p {
  font-size: 15px;
  line-height: 1.7;
  color: #497670;
}

.hiw-pg .steps-divider {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 64px;
}

.hiw-pg .steps-divider span {
  display: block;
  height: 1px;
  background: #30414B;
  opacity: 0.18;
  max-width: 1140px;
}

.hiw-pg .steps-divider span:nth-child(2) {
  opacity: 0.09;
  margin-top: 4px;
}

.hiw-pg .review-blk {
  position: relative;
  background: linear-gradient(to top, #30414B 0%, #3d5560 100%);
  overflow: hidden;
}

.hiw-pg .review-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hiw-pg .review-bg-lines span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(119,150,166,0.07);
}

.hiw-pg .review-bg-lines span:nth-child(1) { top: 15%; height: 1px; }
.hiw-pg .review-bg-lines span:nth-child(2) { top: 28%; height: 2px; }
.hiw-pg .review-bg-lines span:nth-child(3) { top: 42%; height: 1px; }
.hiw-pg .review-bg-lines span:nth-child(4) { top: 58%; height: 3px; }
.hiw-pg .review-bg-lines span:nth-child(5) { top: 71%; height: 1px; }
.hiw-pg .review-bg-lines span:nth-child(6) { top: 85%; height: 2px; }

.hiw-pg .review-bg-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(48,65,75,0.6) 100%);
  animation: vigpulse 7s ease-in-out infinite;
}

@keyframes vigpulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hiw-pg .review-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 32px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: stretch;
}

.hiw-pg .review-quote-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.hiw-pg .review-label {
  font-size: 15px;
  line-height: 1.5;
  color: #7796A6;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hiw-pg .review-text {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  border-top: 2px solid #497670;
  padding-top: 16px;
}

.hiw-pg .review-person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.hiw-pg .review-portrait {
  width: 64px;
  height: 90px;
  overflow: hidden;
  flex-shrink: 0;
}

.hiw-pg .review-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hiw-pg .review-name {
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
}

.hiw-pg .review-role {
  font-size: 15px;
  line-height: 1.5;
  color: #7796A6;
  margin-top: 4px;
}

.hiw-pg .stats-col {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.hiw-pg .stat-item {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border-top: 2px solid rgba(119,150,166,0.3);
  box-shadow: 1px 2px 6px 0 rgba(48,65,75,0.06);
}

.hiw-pg .stat-num {
  font-size: 31px;
  line-height: 1.1;
  color: #7796A6;
  margin-bottom: 8px;
}

.hiw-pg .stat-desc {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

.hiw-pg .review-portrait2 {
  width: 64px;
  height: 90px;
  overflow: hidden;
  flex-shrink: 0;
}

.hiw-pg .review-portrait2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hiw-pg .notch-accent {
  display: inline-block;
  width: 4px;
  height: 100%;
  background: #497670;
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

.hiw-pg .step-card-notch {
  position: relative;
  padding-left: 20px;
}

.hiw-pg .step-card-notch::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: #497670;
  border-radius: 6px;
}

.hiw-pg .btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(to top, #30414B, #497670);
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 6px 14px 0 rgba(73,118,112,0.11);
  transition: box-shadow 750ms cubic-bezier(0.34,1.2,0.64,1), transform 750ms cubic-bezier(0.34,1.2,0.64,1);
  text-decoration: none;
}

.hiw-pg .btn-primary:hover {
  box-shadow: 1px 12px 40px 0 rgba(48,65,75,0.13);
  transform: translateY(-2px);
}

.hiw-pg .btn-primary:focus {
  outline: 3px solid #7796A6;
  outline-offset: 3px;
}

.hiw-pg .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 600ms ease-in-out;
}

.hiw-pg .btn-primary:active::after {
  background: rgba(255,255,255,0.12);
}

.hiw-pg .steps-cta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hiw-pg .cta-note {
  font-size: 15px;
  line-height: 1.5;
  color: #7796A6;
}

@media (max-width: 1280px) {
  .hiw-pg .title-img-wrap {
    width: 600px;
    height: 320px;
  }
  .hiw-pg .steps-top {
    gap: 32px;
  }
  .hiw-pg .steps-left {
    flex: 0 0 280px;
  }
}

@media (max-width: 768px) {
  .hiw-pg .title-h1 {
    font-size: 31px;
  }
  .hiw-pg .title-h2 {
    font-size: 19px;
  }
  .hiw-pg .title-img-wrap {
    width: 100%;
    height: 220px;
  }
  .hiw-pg .steps-top {
    flex-direction: column;
    gap: 32px;
  }
  .hiw-pg .steps-left {
    flex: none;
    width: 100%;
  }
  .hiw-pg .steps-img-box {
    height: 220px;
  }
  .hiw-pg .step-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hiw-pg .review-inner {
    flex-direction: column;
    gap: 32px;
    padding: 32px 16px;
  }
  .hiw-pg .stats-col {
    flex: none;
    width: 100%;
  }
  .hiw-pg .steps-blk {
    padding: 32px 16px;
  }
}

@media (max-width: 390px) {
  .hiw-pg .title-blk {
    padding: 32px 16px;
  }
  .hiw-pg .title-h1 {
    font-size: 31px;
  }
  .hiw-pg .step-card {
    padding: 16px;
  }
  .hiw-pg .steps-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

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

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

.strt .divider-dbl {
  border: none;
  height: 4px;
  background: linear-gradient(to bottom, #497670, transparent);
  border-top: 1px solid #497670;
  border-bottom: 1px solid #7796A6;
  margin: 0;
}

/* ── SECTION 1: TITLE BLOCK ── */
.strt .ttl-blk {
  background-color: #f5f4f2;
  position: relative;
  padding: 64px 0;
}

.strt .ttl-blk::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, #497670 0%, #f5f4f2 100%);
  opacity: 0;
  animation: bg-fade 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes bg-fade {
  0% { opacity: 0; }
  100% { opacity: 0.06; }
}

.strt .ttl-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 64px;
}

.strt .ttl-img-col {
  width: 220px;
  flex-shrink: 0;
  position: relative;
}

.strt .ttl-img-wrap {
  width: 220px;
  height: 320px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 1px 6px 14px 0 rgba(48,65,75,0.11);
}

.strt .ttl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.15);
  display: block;
}

.strt .ttl-txt-col {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.strt .ttl-decor {
  position: absolute;
  top: -16px;
  right: 0;
  width: 160px;
  height: 160px;
  pointer-events: none;
  overflow: hidden;
}

.strt .ttl-decor svg {
  width: 100%;
  height: 100%;
  opacity: 0.08;
}

.strt .ttl-label {
  font-size: 15px;
  line-height: 1.3;
  color: #497670;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.strt .ttl-h1 {
  font-size: 58px;
  line-height: 1.1;
  color: #30414B;
  margin: 0 0 32px 0;
  font-weight: 700;
}

.strt .ttl-h1 .dot-acc {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 44px;
  background: #497670;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -4px;
}

.strt .ttl-desc {
  font-size: 19px;
  line-height: 1.7;
  color: #30414B;
  max-width: 540px;
  margin: 0 0 32px 0;
}

.strt .ttl-meta {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.strt .ttl-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.strt .ttl-stat-num {
  font-size: 31px;
  line-height: 1.1;
  color: #497670;
  font-weight: 700;
}

.strt .ttl-stat-lbl {
  font-size: 15px;
  line-height: 1.3;
  color: #7796A6;
}

.strt .ttl-btn {
  display: inline-block;
  padding: 16px 32px;
  background: #30414B;
  color: #f5f4f2;
  font-size: 16px;
  line-height: 1.3;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.65s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.65s cubic-bezier(0.34,1.2,0.64,1);
  box-shadow: 1px 6px 14px 0 rgba(48,65,75,0.11);
  position: relative;
  overflow: hidden;
}

.strt .ttl-btn:hover {
  background: #497670;
  box-shadow: 1px 12px 40px 0 rgba(48,65,75,0.13);
}

.strt .ttl-btn:focus {
  outline: 2px solid #497670;
  outline-offset: 3px;
}

/* Ripple */
.strt .ttl-btn::after {
  content: '';
  position: absolute;
  width: 0; height: 0;
  background: rgba(119,150,166,0.3);
  border-radius: 44px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.75s cubic-bezier(0.34,1.2,0.64,1), height 0.75s cubic-bezier(0.34,1.2,0.64,1), opacity 0.75s ease-in-out;
  opacity: 0;
}

.strt .ttl-btn:active::after {
  width: 300px; height: 300px;
  opacity: 0;
}

/* ── SECTION 2: REAL EXAMPLE ── */
.strt .ex-blk {
  background: #fff;
  padding: 64px 0;
}

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

.strt .ex-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.strt .ex-txt h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #30414B;
  margin: 0 0 16px 0;
}

.strt .ex-txt h2 .dot-acc {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 44px;
  background: #7796A6;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.strt .ex-txt p {
  font-size: 16px;
  line-height: 1.7;
  color: #30414B;
  margin: 0 0 16px 0;
}

.strt .ex-steps {
  margin: 32px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strt .ex-step {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: #f5f4f2;
  border-radius: 16px;
  box-shadow: 1px 2px 6px 0 rgba(48,65,75,0.06);
  opacity: 0;
  transform: rotate(-1.5deg) translateY(12px);
  animation: step-appear 0.7s cubic-bezier(0.34,1.2,0.64,1) forwards;
}

.strt .ex-step:nth-child(1) { animation-delay: 0.1s; }
.strt .ex-step:nth-child(2) { animation-delay: 0.28s; }
.strt .ex-step:nth-child(3) { animation-delay: 0.46s; }
.strt .ex-step:nth-child(4) { animation-delay: 0.64s; }

@keyframes step-appear {
  to { opacity: 1; transform: rotate(0deg) translateY(0); }
}

.strt .ex-step-num {
  width: 32px;
  height: 32px;
  border-radius: 44px;
  background: #497670;
  color: #fff;
  font-size: 15px;
  line-height: 32px;
  text-align: center;
  flex-shrink: 0;
  font-weight: 700;
}

.strt .ex-step-body {
  flex: 1;
}

.strt .ex-step-body h5 {
  font-size: 16px;
  line-height: 1.3;
  color: #30414B;
  margin: 0 0 4px 0;
  font-weight: 600;
}

.strt .ex-step-body p {
  font-size: 15px;
  line-height: 1.5;
  color: #497670;
  margin: 0;
}

.strt .ex-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strt .ex-img-main {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 1px 12px 40px 0 rgba(48,65,75,0.13);
}

.strt .ex-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.85s cubic-bezier(0.34,1.2,0.64,1);
}

.strt .ex-img-main:hover img {
  transform: scale(1.04);
}

.strt .ex-checklist {
  background: #30414B;
  border-radius: 16px;
  padding: 16px;
}

.strt .ex-checklist h6 {
  font-size: 15px;
  line-height: 1.3;
  color: #7796A6;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.strt .ex-progress-bar-wrap {
  background: rgba(119,150,166,0.2);
  border-radius: 6px;
  height: 6px;
  margin-bottom: 16px;
  overflow: hidden;
}

.strt .ex-progress-bar {
  height: 100%;
  width: 71%;
  background: linear-gradient(to top, #497670, #7796A6);
  border-radius: 6px;
  transition: width 0.85s cubic-bezier(0.34,1.2,0.64,1);
}

.strt .ex-progress-label {
  font-size: 15px;
  line-height: 1.3;
  color: #7796A6;
  margin-bottom: 16px;
  display: block;
}

.strt .ex-check-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.strt .ex-check-item {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  font-size: 15px;
  line-height: 1.5;
  color: #f5f4f2;
}

.strt .ex-check-item.done .chk-box {
  background: #497670;
  border-color: #497670;
}

.strt .ex-check-item.done .chk-box svg {
  opacity: 1;
}

.strt .chk-box {
  width: 18px;
  height: 18px;
  border: 2px solid #7796A6;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strt .chk-box svg {
  opacity: 0;
  transition: opacity 0.65s ease-in-out;
}

/* ── SECTION 3: WHO THIS WORKS FOR ── */
.strt .who-blk {
  background: #30414B;
  padding: 64px 0;
  position: relative;
}

.strt .who-blk::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, #497670 0%, #30414B 100%);
  opacity: 0;
  animation: bg-fade 9s ease-in-out 2s infinite alternate;
  pointer-events: none;
}

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

.strt .who-head {
  margin-bottom: 32px;
}

.strt .who-head h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #f5f4f2;
  margin: 0 0 16px 0;
}

.strt .who-head h2 .dot-acc {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 44px;
  background: #7796A6;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.strt .who-head p {
  font-size: 16px;
  line-height: 1.7;
  color: #7796A6;
  max-width: 600px;
  margin: 0;
}

.strt .who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.strt .who-card {
  background: rgba(119,150,166,0.1);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(119,150,166,0.2);
  transition: background-color 0.7s cubic-bezier(0.34,1.2,0.64,1), border-color 0.7s cubic-bezier(0.34,1.2,0.64,1);
}

.strt .who-card:hover {
  background: rgba(73,118,112,0.2);
  border-color: #497670;
}

.strt .who-card h4 {
  font-size: 16px;
  line-height: 1.3;
  color: #f5f4f2;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.strt .who-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #7796A6;
  margin: 0;
}

.strt .who-imgs {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.strt .who-img-tall {
  height: 320px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 1px 12px 40px 0 rgba(48,65,75,0.13);
}

.strt .who-img-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.strt .who-img-short {
  height: 220px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 1px 6px 14px 0 rgba(48,65,75,0.11);
  align-self: start;
}

.strt .who-img-short img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── SECTION 4: THE PEOPLE ── */
.strt .team-blk {
  background: #f5f4f2;
  padding: 64px 0;
  position: relative;
}

.strt .team-diag {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  pointer-events: none;
  overflow: hidden;
}

.strt .team-diag svg {
  opacity: 0.06;
}

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

.strt .team-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.strt .team-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strt .team-portrait-wrap {
  width: 80px;
  height: 80px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.strt .team-person {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 1px 2px 6px 0 rgba(48,65,75,0.06);
}

.strt .team-person-info h5 {
  font-size: 16px;
  line-height: 1.3;
  color: #30414B;
  margin: 0 0 4px 0;
  font-weight: 600;
}

.strt .team-person-info p {
  font-size: 15px;
  line-height: 1.3;
  color: #7796A6;
  margin: 0;
}

.strt .team-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.strt .team-img-a {
  height: 180px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 1px 6px 14px 0 rgba(48,65,75,0.11);
}

.strt .team-img-b {
  height: 140px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 1px 2px 6px 0 rgba(48,65,75,0.06);
  align-self: end;
}

.strt .team-img-a img,
.strt .team-img-b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.34,1.2,0.64,1);
}

.strt .team-img-a:hover img,
.strt .team-img-b:hover img {
  transform: scale(1.05);
}

.strt .team-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.strt .team-right h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #30414B;
  margin: 0;
}

.strt .team-right h2 .dot-acc {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 44px;
  background: #497670;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.strt .team-right p {
  font-size: 16px;
  line-height: 1.7;
  color: #30414B;
  margin: 0;
}

.strt .team-quals {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.strt .team-qual {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: #30414B;
}

.strt .qual-mark {
  width: 6px;
  height: 6px;
  border-radius: 44px;
  background: #497670;
  flex-shrink: 0;
  margin-top: 7px;
}

.strt .team-rating {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 1px 2px 6px 0 rgba(48,65,75,0.06);
}

.strt .rating-score {
  font-size: 31px;
  line-height: 1.1;
  color: #497670;
  font-weight: 700;
}

.strt .rating-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.strt .rating-stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.strt .star-shape {
  width: 16px;
  height: 16px;
}

.strt .rating-count {
  font-size: 15px;
  line-height: 1.3;
  color: #7796A6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .strt .ttl-inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 16px;
  }

  .strt .ttl-img-col {
    width: 100%;
  }

  .strt .ttl-img-wrap {
    width: 100%;
    height: 200px;
  }

  .strt .ttl-h1 {
    font-size: 31px;
  }

  .strt .ttl-desc {
    font-size: 16px;
  }

  .strt .ttl-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .strt .ttl-blk {
    padding: 32px 0;
  }

  .strt .ex-blk,
  .strt .who-blk,
  .strt .team-blk {
    padding: 32px 0;
  }

  .strt .ex-inner,
  .strt .who-inner,
  .strt .team-inner {
    padding: 0 16px;
  }

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

  .strt .who-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .strt .who-imgs {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .strt .who-img-tall,
  .strt .who-img-short {
    height: 200px;
  }

  .strt .team-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .strt .team-img-pair {
    grid-template-columns: 1fr;
  }

  .strt .team-img-b {
    height: 160px;
    align-self: auto;
  }
}

@media (max-width: 390px) {
  .strt .pg-wrap {
    padding: 0 16px;
  }

  .strt .ttl-h1 {
    font-size: 31px;
  }

  .strt .ex-checklist {
    padding: 16px;
  }

  .strt .who-card {
    padding: 16px;
  }
}

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

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

.abt-us .ld-schema {
  display: none;
}

/* ===================== SECTION 1 - TITLE BLOCK ===================== */
.abt-us .top-blk {
  background: #30414B;
  padding: 96px 0 48px;
  position: relative;
}

.abt-us .top-blk .bg-shape {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 340px;
  height: 340px;
  border-radius: 44px;
  border: 2px solid rgba(73,118,112,0.18);
  transform: translateY(-50%) rotate(0deg);
  animation: shape-spin 28s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.abt-us .top-blk .bg-shape::before {
  content: '';
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 28px;
  border: 1px solid rgba(119,150,166,0.12);
}

@keyframes shape-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.abt-us .top-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.abt-us .top-txt {
  flex: 1 1 0;
  min-width: 0;
}

.abt-us .top-label {
  display: inline-block;
  font-size: 15px;
  line-height: 1.3;
  color: #7796A6;
  border: 1px solid rgba(119,150,166,0.35);
  border-radius: 6px;
  padding: 4px 16px;
  margin-bottom: 32px;
  letter-spacing: 0;
}

.abt-us .top-h1 {
  font-size: 58px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 32px 0;
  font-weight: 700;
}

.abt-us .top-h1 .dot-acc {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 44px;
  background: #497670;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -4px;
}

.abt-us .top-sub {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0;
}

.abt-us .top-img-col {
  flex: 0 0 320px;
  position: relative;
}

.abt-us .top-img-frame {
  width: 320px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 1px 12px 40px 0 rgba(48,65,75,0.13);
  position: relative;
}

.abt-us .top-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.12);
  display: block;
}

.abt-us .top-img-dec {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(180deg, #497670 0%, #30414B 100%);
  z-index: 0;
  pointer-events: none;
}

.abt-us .top-img-frame {
  position: relative;
  z-index: 1;
}

/* ===================== SECTION 2 - ABOUT BODY ===================== */
.abt-us .abt-body {
  background: #f4f6f7;
  padding: 80px 0 64px;
  position: relative;
}

.abt-us .abt-body .zone-shift {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(73,118,112,0.06) 0%, rgba(119,150,166,0.04) 60%, transparent 100%);
  animation: zone-move 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes zone-move {
  from { opacity: 0.7; transform: translateY(0px); }
  to { opacity: 1; transform: translateY(12px); }
}

.abt-us .abt-body .pg-wrap {
  position: relative;
  z-index: 1;
}

.abt-us .abt-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.abt-us .abt-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt-us .side-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 1px 6px 14px 0 rgba(48,65,75,0.11);
  transition: box-shadow 700ms cubic-bezier(0.34,1.2,0.64,1), transform 700ms cubic-bezier(0.34,1.2,0.64,1);
}

.abt-us .side-card:hover {
  box-shadow: 1px 12px 40px 0 rgba(48,65,75,0.13);
  transform: translateY(-4px);
}

.abt-us .side-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(180deg, #497670 0%, #30414B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.abt-us .side-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.abt-us .side-lbl {
  font-size: 15px;
  line-height: 1.3;
  color: #7796A6;
  margin: 0 0 4px 0;
  font-weight: 500;
}

.abt-us .side-val {
  font-size: 19px;
  line-height: 1.3;
  color: #30414B;
  font-weight: 700;
  margin: 0;
}

.abt-us .abt-main-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.abt-us .abt-h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #30414B;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.abt-us .abt-h2 .dot-acc {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 44px;
  background: #497670;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.abt-us .abt-para {
  font-size: 16px;
  line-height: 1.7;
  color: #30414B;
  margin: 0 0 16px 0;
}

.abt-us .abt-para:last-child {
  margin-bottom: 0;
}

.abt-us .img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.abt-us .img-pair .pic-box {
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  box-shadow: 1px 6px 14px 0 rgba(73,118,112,0.11);
}

.abt-us .img-pair .pic-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 800ms cubic-bezier(0.34,1.2,0.64,1);
}

.abt-us .img-pair .pic-box:hover img {
  transform: scale(1.04);
}

.abt-us .team-strip {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.abt-us .team-card {
  flex: 1 1 0;
  background: #ffffff;
  border-radius: 28px;
  padding: 32px 24px;
  box-shadow: 1px 2px 6px 0 rgba(48,65,75,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 750ms ease-in-out, transform 750ms ease-in-out;
}

.abt-us .team-strip:hover .team-card {
  opacity: 0.55;
  transition: opacity 650ms ease-in-out;
}

.abt-us .team-strip:hover .team-card:hover {
  opacity: 1 !important;
  box-shadow: 1px 12px 40px 0 rgba(48,65,75,0.13);
  transform: translateY(-6px);
}

.abt-us .team-portrait {
  width: 120px;
  height: 180px;
  border-radius: 44px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 1px 6px 14px 0 rgba(73,118,112,0.11);
}

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

.abt-us .team-name {
  font-size: 16px;
  line-height: 1.3;
  color: #30414B;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.abt-us .team-role {
  font-size: 15px;
  line-height: 1.5;
  color: #7796A6;
  margin: 0 0 16px 0;
}

.abt-us .team-bio {
  font-size: 15px;
  line-height: 1.7;
  color: #30414B;
  margin: 0;
}

.abt-us .img-wide-wrap {
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
  box-shadow: 1px 6px 14px 0 rgba(48,65,75,0.11);
  position: relative;
}

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

.abt-us .img-wide-wrap .overlay-tint {
  position: absolute;
  inset: 0;
  background: rgba(48,65,75,0.38);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.abt-us .img-wide-wrap .overlay-txt {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 600;
  pointer-events: none;
}

.abt-us .metrics-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.abt-us .metric-box {
  flex: 1 1 0;
  background: linear-gradient(180deg, #497670 0%, #30414B 100%);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 1px 6px 14px 0 rgba(48,65,75,0.11);
  transition: transform 700ms cubic-bezier(0.34,1.2,0.64,1);
}

.abt-us .metric-box:hover {
  transform: translateY(-4px);
}

.abt-us .metric-num {
  font-size: 31px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.abt-us .metric-desc {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1280px) {
  .abt-us .top-h1 {
    font-size: 48px;
  }
  .abt-us .top-img-col {
    flex: 0 0 260px;
  }
  .abt-us .top-img-frame {
    width: 260px;
    height: 340px;
  }
  .abt-us .abt-grid {
    grid-template-columns: 240px 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .abt-us .top-blk {
    padding: 64px 0 48px;
  }
  .abt-us .top-inner {
    flex-direction: column;
    gap: 32px;
  }
  .abt-us .top-img-col {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .abt-us .top-img-frame {
    width: 100%;
    max-width: 320px;
    height: 300px;
  }
  .abt-us .top-h1 {
    font-size: 31px;
  }
  .abt-us .top-sub {
    font-size: 16px;
  }
  .abt-us .abt-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .abt-us .abt-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .abt-us .side-card {
    flex: 1 1 140px;
    padding: 24px 16px;
  }
  .abt-us .img-pair {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .abt-us .img-pair .pic-box {
    height: 200px;
  }
  .abt-us .team-strip {
    flex-direction: column;
    gap: 16px;
  }
  .abt-us .metrics-row {
    flex-direction: column;
    gap: 16px;
  }
  .abt-us .top-blk .bg-shape {
    display: none;
  }
  .abt-us .img-wide-wrap {
    height: 200px;
  }
}

@media (max-width: 390px) {
  .abt-us .pg-wrap {
    padding: 0 16px;
  }
  .abt-us .top-h1 {
    font-size: 31px;
  }
  .abt-us .abt-h2 {
    font-size: 19px;
  }
  .abt-us .abt-sidebar {
    flex-direction: column;
  }
  .abt-us .team-portrait {
    width: 100px;
    height: 150px;
  }
}

/* Ripple button */
.abt-us .cta-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #497670 0%, #30414B 100%);
  color: #ffffff;
  font-size: 16px;
  line-height: 1.3;
  padding: 16px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 1px 6px 14px 0 rgba(48,65,75,0.11);
  transition: box-shadow 700ms cubic-bezier(0.34,1.2,0.64,1), transform 700ms cubic-bezier(0.34,1.2,0.64,1);
}

.abt-us .cta-btn:hover {
  box-shadow: 1px 12px 40px 0 rgba(48,65,75,0.13);
  transform: translateY(-2px);
}

.abt-us .cta-btn:active {
  transform: translateY(0);
}

.abt-us .cta-btn::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 44px;
  background: rgba(255,255,255,0.22);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 600ms ease-in-out, height 600ms ease-in-out, opacity 600ms ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.abt-us .cta-btn:active::after {
  width: 300px;
  height: 300px;
  opacity: 0;
}

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

.cont-pg .pg-band {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.cont-pg .reach-split {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 64px;
  background: #fff;
  position: relative;
}

.cont-pg .reach-left {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  position: relative;
}

.cont-pg .reach-right {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 32px;
  padding-top: 32px;
}

.cont-pg .reach-eyebrow {
  font-size: 15px;
  line-height: 1.3;
  color: #497670;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.cont-pg .reach-h1 {
  font-size: 58px;
  line-height: 1.1;
  color: #30414B;
  font-weight: 700;
  margin: 0;
}

.cont-pg .reach-h1 .kw-mark {
  display: inline;
  background: linear-gradient(180deg, transparent 60%, rgba(73,118,112,0.28) 60%);
  padding-bottom: 2px;
}

.cont-pg .reach-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #30414B;
  opacity: 0.82;
  margin: 0;
}

.cont-pg .reach-dot-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.cont-pg .reach-dot-row span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 44px;
  background: #497670;
  opacity: 0.5;
}

.cont-pg .reach-dot-row span.active {
  opacity: 1;
  background: #30414B;
  width: 24px;
}

.cont-pg .reach-img-wrap {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 1px 12px 40px 0 rgba(48,65,75,0.13);
}

.cont-pg .reach-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.96) saturate(0.9);
}

.cont-pg .reach-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(48,65,75,0.18) 100%);
  border-radius: 28px;
  pointer-events: none;
}

.cont-pg .reach-shape-a {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 80px;
  height: 80px;
  border-radius: 44px;
  border: 2px dashed rgba(73,118,112,0.35);
  pointer-events: none;
}

.cont-pg .reach-shape-b {
  position: absolute;
  bottom: 16px;
  right: -16px;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(119,150,166,0.15);
  pointer-events: none;
}

.cont-pg .info-strip {
  background: linear-gradient(180deg, #497670 0%, #30414B 100%);
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}

.cont-pg .info-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  border-top: 28px solid #fff;
  border-left: 570px solid transparent;
  border-right: 570px solid transparent;
  pointer-events: none;
}

.cont-pg .info-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.cont-pg .info-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 1px 6px 14px 0 rgba(48,65,75,0.11);
  transition: background 700ms cubic-bezier(0.34,1.2,0.64,1), box-shadow 700ms cubic-bezier(0.34,1.2,0.64,1);
  cursor: default;
}

.cont-pg .info-card:hover {
  background: rgba(255,255,255,0.13);
  box-shadow: 1px 12px 40px 0 rgba(48,65,75,0.13), inset 0 0 0 1px rgba(255,255,255,0.22);
}

.cont-pg .info-card-ico {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(119,150,166,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cont-pg .info-card-ico svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cont-pg .info-card-lbl {
  font-size: 15px;
  line-height: 1.3;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.cont-pg .info-card-val {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.cont-pg .info-card-val a {
  color: #fff;
  text-decoration: none !important;
  transition: opacity 650ms ease-in-out;
}

.cont-pg .info-card-val a:hover {
  opacity: 0.75;
}

.cont-pg .info-card-sub {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.cont-pg .form-area {
  background: #f4f6f7;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
}

.cont-pg .form-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: #f4f6f7;
  clip-path: ellipse(56px 28px at 50% 100%) invert;
  pointer-events: none;
}

.cont-pg .form-layout {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.cont-pg .form-aside {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.cont-pg .form-aside-h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #30414B;
  font-weight: 700;
  margin: 0;
}

.cont-pg .form-aside-h2 .dot-acc {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 44px;
  background: #497670;
  margin-left: 4px;
  vertical-align: middle;
  margin-bottom: 4px;
}

.cont-pg .form-aside-p {
  font-size: 16px;
  line-height: 1.7;
  color: #30414B;
  opacity: 0.78;
  margin: 0;
}

.cont-pg .form-aside-note {
  padding: 16px;
  border-radius: 16px;
  background: rgba(73,118,112,0.1);
  border: 1px solid rgba(73,118,112,0.2);
  font-size: 15px;
  line-height: 1.5;
  color: #30414B;
}

.cont-pg .form-aside-dots {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.cont-pg .form-aside-dots span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 44px;
  background: #7796A6;
}

.cont-pg .form-aside-dots span:nth-child(2) {
  background: #497670;
}

.cont-pg .form-aside-dots span:nth-child(3) {
  background: #30414B;
  width: 18px;
}

.cont-pg .form-box {
  flex: 1 1 0;
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 1px 12px 40px 0 rgba(48,65,75,0.13);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cont-pg .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cont-pg .form-row.two-col {
  flex-direction: row;
  gap: 16px;
}

.cont-pg .form-row.two-col .form-field {
  flex: 1 1 0;
}

.cont-pg .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cont-pg .f-lbl {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: #30414B;
}

.cont-pg .f-lbl .req {
  color: #497670;
  margin-left: 2px;
}

.cont-pg .f-inp {
  width: 100%;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1.5px solid rgba(48,65,75,0.18);
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
  color: #30414B;
  box-sizing: border-box;
  box-shadow: inset 1px 2px 6px 0 rgba(48,65,75,0.06);
  transition: border-color 650ms ease-in-out, box-shadow 650ms ease-in-out;
  outline: none;
  appearance: none;
}

.cont-pg .f-inp:focus {
  border-color: #497670;
  box-shadow: inset 1px 2px 6px 0 rgba(48,65,75,0.06), 0 0 0 3px rgba(73,118,112,0.15);
}

.cont-pg .f-inp::placeholder {
  color: #7796A6;
  opacity: 0.7;
}

.cont-pg .f-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1.5px solid rgba(48,65,75,0.18);
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
  color: #30414B;
  box-sizing: border-box;
  box-shadow: inset 1px 2px 6px 0 rgba(48,65,75,0.06);
  transition: border-color 650ms ease-in-out, box-shadow 650ms ease-in-out;
  outline: none;
  cursor: pointer;
}

.cont-pg .f-select:focus {
  border-color: #497670;
  box-shadow: inset 1px 2px 6px 0 rgba(48,65,75,0.06), 0 0 0 3px rgba(73,118,112,0.15);
}

.cont-pg .f-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1.5px solid rgba(48,65,75,0.18);
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
  color: #30414B;
  box-sizing: border-box;
  box-shadow: inset 1px 2px 6px 0 rgba(48,65,75,0.06);
  transition: border-color 650ms ease-in-out, box-shadow 650ms ease-in-out;
  outline: none;
  resize: vertical;
  min-height: 100px;
}

.cont-pg .f-textarea:focus {
  border-color: #497670;
  box-shadow: inset 1px 2px 6px 0 rgba(48,65,75,0.06), 0 0 0 3px rgba(73,118,112,0.15);
}

.cont-pg .f-textarea::placeholder {
  color: #7796A6;
  opacity: 0.7;
}

.cont-pg .budget-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.cont-pg .budget-opt {
  position: relative;
  display: flex;
  align-items: center;
}

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

.cont-pg .budget-opt label {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 44px;
  border: 1.5px solid rgba(48,65,75,0.2);
  background: #fff;
  font-size: 15px;
  line-height: 1.3;
  color: #30414B;
  font-weight: 600;
  cursor: pointer;
  transition: background 700ms cubic-bezier(0.34,1.2,0.64,1), border-color 700ms cubic-bezier(0.34,1.2,0.64,1), color 700ms cubic-bezier(0.34,1.2,0.64,1);
  box-shadow: 1px 2px 6px 0 rgba(48,65,75,0.06);
}

.cont-pg .budget-opt input[type="radio"]:checked + label {
  background: #30414B;
  border-color: #30414B;
  color: #fff;
}

.cont-pg .budget-opt label:hover {
  border-color: #497670;
  background: rgba(73,118,112,0.08);
}

.cont-pg .budget-opt input[type="radio"]:checked + label:hover {
  background: #30414B;
  border-color: #30414B;
  color: #fff;
}

.cont-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(73,118,112,0.06);
  border: 1px solid rgba(73,118,112,0.15);
}

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

.cont-pg .privacy-text {
  font-size: 15px;
  line-height: 1.5;
  color: #30414B;
  opacity: 0.82;
}

.cont-pg .privacy-text a {
  color: #497670;
  text-decoration: underline !important;
  transition: color 650ms ease-in-out;
}

.cont-pg .privacy-text a:hover {
  color: #30414B;
}

.cont-pg .submit-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 6px;
  border: none;
  background: linear-gradient(180deg, #497670 0%, #30414B 100%);
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  box-shadow: 1px 6px 14px 0 rgba(48,65,75,0.11);
  transition: box-shadow 700ms cubic-bezier(0.34,1.2,0.64,1), opacity 700ms cubic-bezier(0.34,1.2,0.64,1);
}

.cont-pg .submit-btn:hover {
  box-shadow: 1px 12px 40px 0 rgba(48,65,75,0.13);
  opacity: 0.93;
}

.cont-pg .submit-btn:focus {
  outline: 3px solid rgba(73,118,112,0.4);
  outline-offset: 2px;
}

.cont-pg .submit-btn:active {
  opacity: 0.85;
}

.cont-pg .submit-btn .ripple-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 6px;
}

.cont-pg .submit-btn:active .ripple-layer::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255,255,255,0.2);
  border-radius: 44px;
  animation: rpl 600ms cubic-bezier(0.34,1.2,0.64,1) forwards;
}

@keyframes rpl {
  to {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.cont-pg .divider-scallop {
  width: 100%;
  height: 28px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.cont-pg .divider-scallop svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cont-pg .divider-scallop-inv {
  width: 100%;
  height: 28px;
  background: #f4f6f7;
  position: relative;
  overflow: hidden;
}

.cont-pg .divider-scallop-inv svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cont-pg .border-glow-pulse {
  animation: glow-border 2800ms ease-in-out infinite;
}

@keyframes glow-border {
  0%, 100% { box-shadow: 1px 2px 6px 0 rgba(73,118,112,0.06), 0 0 0 0px rgba(73,118,112,0); }
  50% { box-shadow: 1px 6px 14px 0 rgba(73,118,112,0.11), 0 0 0 3px rgba(73,118,112,0.18); }
}

.cont-pg .method-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cont-pg .method-opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cont-pg .method-opt {
  position: relative;
  display: flex;
  align-items: center;
}

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

.cont-pg .method-opt label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1.5px solid rgba(48,65,75,0.15);
  background: #fff;
  font-size: 15px;
  line-height: 1.3;
  color: #30414B;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  transition: background 700ms cubic-bezier(0.34,1.2,0.64,1), border-color 700ms cubic-bezier(0.34,1.2,0.64,1);
  box-shadow: 1px 2px 6px 0 rgba(48,65,75,0.06);
}

.cont-pg .method-opt input[type="radio"]:checked + label {
  background: rgba(73,118,112,0.1);
  border-color: #497670;
}

.cont-pg .method-opt label:hover {
  border-color: #497670;
  background: rgba(73,118,112,0.06);
}

.cont-pg .method-dot {
  width: 14px;
  height: 14px;
  border-radius: 44px;
  border: 2px solid rgba(48,65,75,0.3);
  flex-shrink: 0;
  transition: border-color 700ms cubic-bezier(0.34,1.2,0.64,1), background 700ms cubic-bezier(0.34,1.2,0.64,1);
}

.cont-pg .method-opt input[type="radio"]:checked + label .method-dot {
  border-color: #497670;
  background: #497670;
}

.cont-pg .form-divider {
  height: 1px;
  background: rgba(48,65,75,0.1);
  border-radius: 6px;
}

@media (max-width: 768px) {
  .cont-pg .reach-split {
    flex-direction: column;
    gap: 32px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .cont-pg .reach-left {
    flex: none;
  }
  .cont-pg .reach-right {
    flex: none;
    padding-top: 0;
  }
  .cont-pg .reach-h1 {
    font-size: 31px;
  }
  .cont-pg .info-strip-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cont-pg .form-layout {
    flex-direction: column;
    gap: 32px;
  }
  .cont-pg .form-aside {
    flex: none;
  }
  .cont-pg .form-row.two-col {
    flex-direction: column;
    gap: 16px;
  }
  .cont-pg .budget-opts {
    flex-direction: column;
  }
  .cont-pg .info-strip::before {
    border-left-width: 195px;
    border-right-width: 195px;
  }
}

@media (max-width: 390px) {
  .cont-pg .pg-band {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cont-pg .reach-h1 {
    font-size: 31px;
  }
  .cont-pg .form-box {
    padding: 16px;
  }
  .cont-pg .info-strip::before {
    border-left-width: 195px;
    border-right-width: 195px;
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 16px;
  background: linear-gradient(to top, #497670 0%, #30414B 100%);
}

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

.success-page .icon-ring {
  width: 88px;
  height: 88px;
  border-radius: 44px;
  background: rgba(119, 150, 166, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 6px 14px 0 rgba(48, 65, 75, 0.11);
  flex-shrink: 0;
}

.success-page .icon-ring svg {
  display: block;
}

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

.success-page .msg-title {
  font-size: 31px;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
  position: relative;
  display: inline-block;
}

.success-page .msg-title::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 44px;
  background: #7796A6;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.success-page .msg-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.success-page .divider-line {
  width: 64px;
  height: 2px;
  background: linear-gradient(to right, #7796A6, #497670);
  border-radius: 6px;
}

.success-page .detail-panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(119, 150, 166, 0.28);
  border-radius: 16px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: 1px 2px 6px 0 rgba(48, 65, 75, 0.06);
}

.success-page .detail-panel .step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.success-page .detail-panel .step-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.success-page .detail-panel .step-num {
  width: 28px;
  height: 28px;
  border-radius: 28px;
  background: #497670;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 1px 2px 6px 0 rgba(73, 118, 112, 0.11);
}

.success-page .detail-panel .step-text {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  padding-top: 4px;
}

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

.success-page .btn-home {
  display: inline-block;
  padding: 16px 32px;
  background: #ffffff;
  color: #30414B;
  font-size: 15px;
  line-height: 1.3;
  border-radius: 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 1px 6px 14px 0 rgba(48, 65, 75, 0.11);
  transition: background 0.7s cubic-bezier(0.34,1.2,0.64,1), color 0.65s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.8s ease-in-out;
  position: relative;
  overflow: hidden;
}

.success-page .btn-home:hover {
  background: #7796A6;
  color: #ffffff;
  box-shadow: 1px 12px 40px 0 rgba(48, 65, 75, 0.13);
}

.success-page .btn-home:focus {
  outline: 2px solid #7796A6;
  outline-offset: 4px;
}

.success-page .btn-contact {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.3;
  border-radius: 28px;
  text-decoration: none;
  border: 1px solid rgba(119, 150, 166, 0.55);
  cursor: pointer;
  transition: border-color 0.75s ease-in-out, color 0.65s cubic-bezier(0.34,1.2,0.64,1), background 0.7s ease-in-out;
}

.success-page .btn-contact:hover {
  border-color: #7796A6;
  background: rgba(119, 150, 166, 0.15);
  color: #ffffff;
}

.success-page .btn-contact:focus {
  outline: 2px solid #7796A6;
  outline-offset: 4px;
}

.success-page .footer-note {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  text-align: center;
}

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

  .success-page .msg-title {
    font-size: 31px;
  }

  .success-page .detail-panel {
    padding: 32px 16px;
  }

  .success-page .action-row {
    flex-direction: column;
    align-items: center;
  }
}

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

  .success-page .confirm-wrap {
    gap: 32px;
  }

  .success-page .msg-title {
    font-size: 19px;
  }

  .success-page .btn-home,
  .success-page .btn-contact {
    width: 100%;
    text-align: center;
  }
}
