@import "https://cdn.jsdelivr.net/npm/@fontsource/pt-serif@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/pt-serif@latest/400-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/pt-serif@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/pt-serif@latest/700-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/noto-sans@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/noto-sans@latest/400-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/noto-sans@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/noto-sans@latest/700-italic.css";

html {
  box-sizing: border-box
}

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

body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #2b2b2b;
  background-color: #fff
}

img {
  opacity: 0;
  transition: opacity .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

img.loaded {
  opacity: 1
}

.top-bar-wrapper {
  background: linear-gradient(135deg, #F6F6F6 0%, #fff 100%);
  border-bottom: 1px solid #558bbd1f;
  box-shadow: 0 3px 3px -1px #558bbd12 0 7px 22px -1px #558bbd14;
  padding: 20px 0;
  position: relative
}

.top-bar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px
}

.brand-zone {
  text-align: center;
  margin-bottom: 20px
}

.logo-holder {
  display: inline-block;
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 3px -1px #570a5012 0 7px 22px -1px #570a5014;
  border: 1px solid #558bbd26
}

.logo-holder img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain
}

.company-label {
  display: block;
  margin-top: 6px;
  font-family: 'PT Serif', serif;
  font-size: 18px;
  font-weight: 700;
  color: #570A50;
  letter-spacing: -.01em
}

.credential-mark {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  background-color: #558bbd14;
  border-radius: 40px;
  font-size: 15px;
  color: #558BBD;
  font-weight: 700;
  letter-spacing: .02em
}

.navigation-zone {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #558bbd1f
}

.nav-link {
  display: inline-block;
  padding: 12px 20px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #2b2b2b;
  text-decoration: none;
  border-radius: 12px;
  background-color: transparent;
  transition: background-color .35s cubic-bezier(0.34, 1.2, 0.64, 1), color .35s cubic-bezier(0.34, 1.2, 0.64, 1), transform .4s ease-in-out;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: flex;
  align-items: center
}

.nav-link:hover {
  background-color: #558bbd1f;
  color: #558BBD;
  transform: translateY(-2px)
}

.nav-link:focus {
  outline: 2px solid #558BBD;
  outline-offset: 2px;
  transform: scale(1.02)
}

.nav-link:active {
  transform: translateY(0)
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #558BBD 0%, #570A50 100%);
  transition: width .4s cubic-bezier(0.34, 1.2, 0.64, 1), left .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.nav-link:hover::before {
  width: 100%;
  left: 0
}

@media screen and (max-width: 640px) {
  .navigation-zone {
    flex-direction: column;
    gap: 6px
  }

  .nav-link {
    width: 100%;
    justify-content: center
  }
}

@media screen and (min-width: 641px) and (max-width: 1024px) {
  .navigation-zone {
    gap: 6px
  }

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

main {
  max-width: 1400px;
  margin: 0 auto
}

.footer-framework {
  background: linear-gradient(180deg, #F6F6F6 0%, #fff 100%);
  border-top: 1px solid #558bbd1f;
  padding: 80px 0 40px;
  margin-top: 80px
}

.footer-grid-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px
}

.footer-brand-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.footer-logo-container {
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 3px -1px #570a5012;
  border: 1px solid #558bbd26;
  margin-bottom: 12px
}

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

.footer-tagline {
  font-size: 15px;
  line-height: 1.6;
  color: #5a5a5a;
  margin-top: 12px;
  font-style: italic
}

.footer-menu-box {
  display: flex;
  flex-direction: column
}

.footer-menu-heading {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  font-weight: 700;
  color: #570A50;
  margin-bottom: 20px;
  letter-spacing: -.01em
}

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

.footer-link {
  display: inline-block;
  font-size: 15px;
  color: #2b2b2b;
  text-decoration: none;
  transition: color .35s cubic-bezier(0.34, 1.2, 0.64, 1), transform .3s ease-in-out;
  position: relative;
  padding-left: 20px
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #558BBD;
  border-radius: 2px;
  transition: background-color .35s cubic-bezier(0.34, 1.2, 0.64, 1), width .4s ease-in-out
}

.footer-link:hover {
  color: #558BBD;
  transform: translateX(4px)
}

.footer-link:hover::before {
  background-color: #570A50;
  width: 12px
}

.footer-link:focus {
  outline: 2px solid #558BBD;
  outline-offset: 2px;
  transform: scale(1.02)
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.contact-icon-holder {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #558BBD 0%, #570A50 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 3px -1px #558bbd12
}

.contact-icon-holder i {
  color: #fff;
  font-size: 15px
}

.contact-text {
  font-size: 15px;
  line-height: 1.6;
  color: #2b2b2b
}

.contact-link {
  color: #558BBD;
  text-decoration: none;
  transition: color .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  font-weight: 700
}

.contact-link:hover {
  color: #570A50;
  text-decoration: underline
}

.contact-link:focus {
  outline: 2px solid #558BBD;
  outline-offset: 2px;
  transform: scale(1.02)
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #558bbd33 50%, transparent 100%);
  margin: 40px 0 20px
}

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

.copyright-text {
  font-size: 15px;
  color: #5a5a5a
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: #558bbd14;
  border-radius: 40px;
  font-size: 15px;
  color: #558BBD;
  font-weight: 700
}

.footer-badge i {
  font-size: 15px
}

@media screen and (max-width: 640px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }
}

@media screen and (min-width: 641px) and (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr)
  }
}

.legal-details {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  background: #fff
}

@media (max-width: 640px) {
  .legal-details {
    padding: 40px 12px
  }
}

.legal-details h1 {
  font-size: 58px;
  line-height: 1.2;
  margin: 0 0 40px;
  color: #570A50
}

@media (max-width: 1024px) {
  .legal-details h1 {
    font-size: 42px
  }
}

@media (max-width: 640px) {
  .legal-details h1 {
    font-size: 30px;
    margin: 0 0 20px
  }
}

.legal-details h2 {
  font-size: 42px;
  line-height: 1.2;
  margin: 80px 0 20px;
  color: #558BBD
}

@media (max-width: 1024px) {
  .legal-details h2 {
    font-size: 30px;
    margin: 40px 0 20px
  }
}

@media (max-width: 640px) {
  .legal-details h2 {
    font-size: 18px
  }
}

.legal-details h3 {
  font-size: 30px;
  line-height: 1.2;
  margin: 40px 0 20px;
  color: #570A50
}

@media (max-width: 640px) {
  .legal-details h3 {
    font-size: 18px;
    margin: 20px 0 12px
  }
}

.legal-details h4 {
  font-size: 18px;
  line-height: 1.6;
  margin: 40px 0 12px;
  color: #558BBD
}

@media (max-width: 640px) {
  .legal-details h4 {
    font-size: 15px;
    margin: 20px 0 12px
  }
}

.legal-details h5 {
  font-size: 18px;
  line-height: 1.6;
  margin: 20px 0 12px;
  color: #333
}

@media (max-width: 640px) {
  .legal-details h5 {
    font-size: 15px
  }
}

.legal-details h6 {
  font-size: 15px;
  line-height: 1.6;
  margin: 20px 0 12px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: .5px
}

.legal-details p {
  font-size: 18px;
  line-height: 1.9;
  margin: 0 0 20px;
  color: #333
}

@media (max-width: 640px) {
  .legal-details p {
    font-size: 15px
  }
}

.legal-details ul,
.legal-details ol {
  margin: 0 0 20px;
  padding: 0 0 0 40px
}

@media (max-width: 640px) {

  .legal-details ul,
  .legal-details ol {
    padding: 0 0 0 20px
  }
}

.legal-details ul {
  list-style: none
}

.legal-details ul li {
  position: relative;
  font-size: 18px;
  line-height: 1.9;
  margin: 0 0 12px;
  color: #333
}

@media (max-width: 640px) {
  .legal-details ul li {
    font-size: 15px
  }
}

.legal-details ul li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 12px;
  width: 6px;
  height: 6px;
  background: #558BBD;
  border-radius: 40px
}

@media (max-width: 640px) {
  .legal-details ul li::before {
    top: 10px;
    left: -14px
  }
}

.legal-details ol {
  counter-reset: policy-counter
}

.legal-details ol li {
  position: relative;
  font-size: 18px;
  line-height: 1.9;
  margin: 0 0 12px;
  color: #333;
  counter-increment: policy-counter
}

@media (max-width: 640px) {
  .legal-details ol li {
    font-size: 15px
  }
}

.legal-details ol li::marker {
  content: counter(policy-counter) ". ";
  color: #570A50;
  font-weight: 600
}

.legal-details a {
  color: #558BBD;
  text-decoration: underline;
  transition: color .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.legal-details a:hover {
  color: #570A50
}

.legal-details a:focus {
  outline: 2px solid #558BBD;
  outline-offset: 2px;
  border-radius: 2px
}

.legal-details div {
  margin: 0 0 20px
}

.legal-details h1+p,
.legal-details h2+p,
.legal-details h3+p,
.legal-details h4+p,
.legal-details h5+p,
.legal-details h6+p {
  margin-top: 0
}

.legal-details h1+ul,
.legal-details h2+ul,
.legal-details h3+ul,
.legal-details h4+ul,
.legal-details h5+ul,
.legal-details h6+ul,
.legal-details h1+ol,
.legal-details h2+ol,
.legal-details h3+ol,
.legal-details h4+ol,
.legal-details h5+ol,
.legal-details h6+ol {
  margin-top: 12px
}

.legal-details li ul,
.legal-details li ol {
  margin: 12px 0 0
}

.legal-details ul ul li::before {
  background: #570A50;
  width: 4px;
  height: 4px
}

.legal-details strong {
  color: #570A50;
  font-weight: 600
}

.legal-details em {
  font-style: italic
}

.services-detail {
  background: #fff;
  overflow-x: clip
}

.services-detail * {
  box-sizing: border-box
}

.services-detail ::selection {
  background: #570A50;
  color: #fff
}

.services-detail .breadcrumb-navigation {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px
}

.services-detail .breadcrumb-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap
}

.services-detail .breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #333
}

.services-detail .breadcrumb-link {
  color: #558BBD;
  text-decoration: none;
  transition: color .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.services-detail .breadcrumb-link:hover {
  color: #570A50
}

.services-detail .breadcrumb-separator {
  width: 6px;
  height: 6px;
  background: #558BBD;
  border-radius: 50%;
  opacity: .4
}

.services-detail .breadcrumb-current {
  color: #666
}

.services-detail .opening-banner {
  background: linear-gradient(135deg, #558BBD 0%, #6a9ac9 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden
}

.services-detail .opening-banner::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 80px;
  width: 12px;
  height: 12px;
  background: #ffffff4d;
  border-radius: 50%
}

.services-detail .opening-banner::after {
  content: '';
  position: absolute;
  top: 120px;
  left: 140px;
  width: 6px;
  height: 6px;
  background: #ffffff40;
  border-radius: 50%
}

.services-detail .dot-accent-one {
  position: absolute;
  bottom: 60px;
  right: 100px;
  width: 8px;
  height: 8px;
  background: #fff3;
  border-radius: 50%
}

.services-detail .dot-accent-two {
  position: absolute;
  bottom: 100px;
  right: 160px;
  width: 10px;
  height: 10px;
  background: #ffffff26;
  border-radius: 50%
}

.services-detail .opening-content {
  max-width: 1400px;
  margin: 0 auto
}

.services-detail .opening-header {
  margin: 0 0 20px;
  font-size: 58px;
  line-height: 1.2;
  color: #fff;
  font-weight: 900;
  letter-spacing: -.02em
}

.services-detail .opening-tagline {
  font-size: 18px;
  line-height: 1.6;
  color: #fffffff2;
  margin: 0 0 40px;
  max-width: 700px
}

.services-detail .opening-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap
}

.services-detail .action-primary {
  background: #fff;
  color: #558BBD;
  padding: 20px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: transform .4s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .4s ease-in-out;
  box-shadow: 0 7px 22px -1px #558bbd14;
  display: inline-block
}

.services-detail .action-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 44px -1px #558bbd24
}

.services-detail .action-secondary {
  background: transparent;
  color: #fff;
  padding: 12px 20px;
  border: 2px solid #ffffff80;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: border-color .35s ease-in-out, background .35s ease-in-out;
  display: inline-block
}

.services-detail .action-secondary:hover {
  border-color: #fff;
  background: #ffffff1a
}

.services-detail .metadata-strip {
  background: #F6F6F6;
  padding: 40px;
  border-bottom: 4px solid #558BBD
}

.services-detail .metadata-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px
}

.services-detail .metadata-piece {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.services-detail .metadata-label {
  font-size: 15px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600
}

.services-detail .metadata-value {
  font-size: 30px;
  line-height: 1.2;
  color: #333;
  font-weight: 700
}

.services-detail .metadata-icon-holder {
  display: inline-flex;
  align-items: center;
  gap: 12px
}

.services-detail .arrow-trend {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #558BBD;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.services-detail .primary-information {
  padding: 80px 40px;
  background: #fff
}

.services-detail .primary-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px
}

.services-detail .sidebar-labels {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.services-detail .label-card {
  background: #F6F6F6;
  padding: 20px;
  border-radius: 12px;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .38s ease-in-out;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  animation: curtain-descend .42s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

.services-detail .label-card:nth-child(1) {
  animation-delay: .1s
}

.services-detail .label-card:nth-child(2) {
  animation-delay: .2s
}

.services-detail .label-card:nth-child(3) {
  animation-delay: .3s
}

.services-detail .label-card:nth-child(4) {
  animation-delay: .4s
}

@keyframes curtain-descend {
  to {
    max-height: 500px;
    opacity: 1
  }
}

.services-detail .label-card:hover {
  transform: translateX(8px);
  box-shadow: 0 3px 3px -1px #558bbd12
}

.services-detail .label-title {
  font-size: 15px;
  color: #666;
  margin: 0 0 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

.services-detail .label-content {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  font-weight: 700
}

.services-detail .main-content-zone {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.services-detail .visual-display {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 7px 22px -1px #558bbd14
}

.services-detail .featured-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0;
  transition: opacity .45s ease-in-out
}

.services-detail .featured-image.loaded {
  opacity: 1
}

.services-detail .text-section {
  position: relative
}

.services-detail .quotation-mark {
  position: absolute;
  top: -20px;
  left: -40px;
  font-size: 120px;
  line-height: 1;
  color: #558bbd26;
  font-weight: 900;
  pointer-events: none
}

.services-detail .text-section h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #333;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -.01em
}

.services-detail .text-section h3 {
  font-size: 30px;
  line-height: 1.2;
  color: #333;
  margin: 40px 0 12px;
  font-weight: 800;
  letter-spacing: -.01em
}

.services-detail .text-section p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  margin: 0 0 20px
}

.services-detail .text-section ul,
.services-detail .text-section ol {
  margin: 0 0 20px;
  padding-left: 40px
}

.services-detail .text-section ul li,
.services-detail .text-section ol li {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 12px
}

.services-detail .text-section ul li::marker {
  color: #558BBD
}

.services-detail .text-section ol li::marker {
  color: #570A50;
  font-weight: 700
}

.services-detail .text-section blockquote {
  margin: 40px 0;
  padding: 20px 40px;
  background: #F6F6F6;
  border-radius: 12px;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  font-style: italic
}

.services-detail .text-section cite {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  color: #666;
  font-style: normal;
  font-weight: 600
}

.services-detail .text-section small {
  font-size: 15px;
  color: #666;
  display: block;
  margin-top: 6px
}

.services-detail .text-section em {
  font-style: italic;
  color: #558BBD
}

.services-detail .text-section dl {
  margin: 20px 0
}

.services-detail .text-section dt {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 20px 0 6px
}

.services-detail .text-section dd {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  margin: 0 0 12px 20px
}

.services-detail .engagement-matrix {
  padding: 80px 40px;
  background: linear-gradient(323deg, #558bbd14 0%, #570a500d 100%);
  position: relative
}

.services-detail .engagement-matrix::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #558BBD 0%, #570A50 100%)
}

.services-detail .engagement-container {
  max-width: 1400px;
  margin: 0 auto
}

.services-detail .engagement-heading {
  font-size: 42px;
  line-height: 1.2;
  color: #333;
  margin: 0 0 40px;
  font-weight: 900;
  letter-spacing: -.01em;
  text-align: right
}

.services-detail .heatmap-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 40px
}

.services-detail .heatmap-cell {
  aspect-ratio: 1;
  border-radius: 2px;
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .35s ease-in-out;
  cursor: pointer
}

.services-detail .heatmap-cell:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 3px -1px #558bbd12
}

.services-detail .intensity-low {
  background: #558bbd33
}

.services-detail .intensity-medium {
  background: #558bbd80
}

.services-detail .intensity-high {
  background: #558bbdcc
}

.services-detail .intensity-peak {
  background: #558BBD
}

.services-detail .heatmap-legend {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 20px;
  align-items: center
}

.services-detail .legend-item {
  display: flex;
  align-items: center;
  gap: 6px
}

.services-detail .legend-swatch {
  width: 20px;
  height: 20px;
  border-radius: 2px
}

.services-detail .legend-text {
  font-size: 15px;
  color: #666
}

.services-detail .engagement-description {
  text-align: right;
  max-width: 700px;
  margin-left: auto
}

.services-detail .engagement-description p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  margin: 0 0 20px
}

.services-detail .comprehensive-overview {
  padding: 80px 40px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23F6F6F6" width="100" height="100"/></svg>');
  background-size: cover;
  background-position: center;
  position: relative
}

.services-detail .comprehensive-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffffeb;
  pointer-events: none
}

.services-detail .comprehensive-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.services-detail .comprehensive-lead {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px
}

.services-detail .lead-heading {
  font-size: 42px;
  line-height: 1.2;
  color: #333;
  margin: 0;
  font-weight: 900;
  letter-spacing: -.01em;
  flex: 1
}

.services-detail .lead-subheading {
  font-size: 30px;
  line-height: 1.2;
  color: #558BBD;
  margin: 0;
  font-weight: 700;
  letter-spacing: -.01em
}

.services-detail .lead-visual {
  width: 80px;
  height: 80px;
  background: conic-gradient(from 323deg, #558BBD 0%, #570A50 100%);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 7px 22px -1px #558bbd14
}

.services-detail .visual-icon {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.services-detail .lead-action {
  background: #558BBD;
  color: #fff;
  padding: 20px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: background .4s ease-in-out, transform .4s cubic-bezier(0.34, 1.2, 0.64, 1);
  display: inline-block;
  box-shadow: 0 7px 22px -1px #558bbd14
}

.services-detail .lead-action:hover {
  background: #570A50;
  transform: translateY(-3px)
}

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

.services-detail .feature-module {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 3px 3px -1px #570a5012;
  transition: box-shadow .38s ease-in-out, transform .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  position: relative
}

.services-detail .feature-module:hover {
  box-shadow: 0 8px 44px -1px #570a5024;
  transform: translateY(-6px)
}

.services-detail .feature-icon-container {
  width: 60px;
  height: 60px;
  background: #F6F6F6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px
}

.services-detail .feature-icon {
  width: 30px;
  height: 30px;
  animation: icon-highlight 4.5s infinite
}

.services-detail .feature-icon:nth-child(1) {
  animation-delay: 0s
}

.services-detail .feature-module:nth-child(2) .feature-icon {
  animation-delay: 1.5s
}

.services-detail .feature-module:nth-child(3) .feature-icon {
  animation-delay: 3s
}

@keyframes icon-highlight {

  0%,
  100% {
    fill: #558BBD;
    transform: scale(1)
  }

  33% {
    fill: #570A50;
    transform: scale(1.15)
  }

  66% {
    fill: #558BBD;
    transform: scale(1)
  }
}

.services-detail .feature-heading {
  font-size: 30px;
  line-height: 1.2;
  color: #333;
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -.01em
}

.services-detail .feature-text {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  margin: 0
}

@media (max-width: 1024px) {
  .services-detail .opening-header {
    font-size: 42px
  }

  .services-detail .primary-wrapper {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .services-detail .sidebar-labels {
    flex-direction: row;
    flex-wrap: wrap
  }

  .services-detail .label-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 200px
  }

  .services-detail .comprehensive-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .services-detail .metadata-container {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 640px) {
  .services-detail .opening-banner {
    padding: 40px 20px
  }

  .services-detail .opening-header {
    font-size: 30px
  }

  .services-detail .opening-tagline {
    font-size: 15px
  }

  .services-detail .opening-actions {
    flex-direction: column
  }

  .services-detail .action-primary,
  .services-detail .action-secondary {
    width: 100%;
    text-align: center
  }

  .services-detail .breadcrumb-navigation {
    padding: 12px 20px
  }

  .services-detail .metadata-strip {
    padding: 20px
  }

  .services-detail .metadata-container {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .services-detail .primary-information {
    padding: 40px 20px
  }

  .services-detail .sidebar-labels {
    flex-direction: column
  }

  .services-detail .label-card {
    flex: 1 1 100%
  }

  .services-detail .quotation-mark {
    left: -20px;
    font-size: 80px
  }

  .services-detail .text-section h2 {
    font-size: 30px
  }

  .services-detail .text-section h3 {
    font-size: 18px
  }

  .services-detail .engagement-matrix {
    padding: 40px 20px
  }

  .services-detail .engagement-heading {
    font-size: 30px;
    text-align: left
  }

  .services-detail .heatmap-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .services-detail .heatmap-legend {
    flex-wrap: wrap;
    justify-content: flex-start
  }

  .services-detail .engagement-description {
    text-align: left
  }

  .services-detail .comprehensive-overview {
    padding: 40px 20px
  }

  .services-detail .comprehensive-lead {
    flex-direction: column;
    gap: 20px
  }

  .services-detail .lead-heading {
    font-size: 30px
  }

  .services-detail .lead-subheading {
    font-size: 18px
  }

  .services-detail .comprehensive-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .services-detail .feature-module {
    padding: 20px
  }
}

@media (max-width: 360px) {
  .services-detail .opening-header {
    font-size: 30px
  }

  .services-detail .text-section h2 {
    font-size: 30px
  }

  .services-detail .heatmap-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px
  }
}

.about-information {
  background: #FFF;
  color: #1a1a1a;
  overflow-x: clip
}

.about-information ::selection {
  background: #570A50;
  color: #FFF
}

.about-information .opening-display {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 80px 40px;
  align-items: stretch
}

.about-information .left-image-column {
  position: relative;
  overflow: hidden;
  border-radius: 2px
}

.about-information .opening-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.about-information .image-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, #558bbdd9, transparent);
  pointer-events: none
}

.about-information .right-content-zone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px
}

.about-information .primary-heading {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 900;
  color: #000;
  margin: 0
}

.about-information .evocative-description {
  font-size: 18px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0;
  max-width: 680px
}

.about-information .narrow-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px
}

.about-information .main-text-zone {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.about-information .section-label {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -.01em;
  font-weight: 900;
  color: #000;
  margin: 0
}

.about-information .narrative-paragraph {
  font-size: 18px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0
}

.about-information .empty-space-right {
  position: relative
}

.about-information .decorative-line-frame {
  position: absolute;
  top: 40px;
  left: 0;
  width: 2px;
  height: calc(100% - 80px);
  background: conic-gradient(from 323deg, #558BBD, #570A50);
  opacity: .2
}

.about-information .approach-showcase {
  background: #F6F6F6;
  position: relative;
  overflow: hidden
}

.about-information .approach-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
  z-index: 2
}

.about-information .approach-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -.01em;
  font-weight: 900;
  color: #000;
  margin: 0 0 40px;
  text-align: center
}

.about-information .method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  opacity: 0;
  animation: sequential-appearance 1.8s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

@keyframes sequential-appearance {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.about-information .method-column {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.about-information .method-column:nth-child(1) {
  animation: column-slide-in .8s cubic-bezier(0.34, 1.2, 0.64, 1) .2s backwards
}

.about-information .method-column:nth-child(2) {
  animation: column-slide-in .8s cubic-bezier(0.34, 1.2, 0.64, 1) .5s backwards
}

.about-information .method-column:nth-child(3) {
  animation: column-slide-in .8s cubic-bezier(0.34, 1.2, 0.64, 1) .8s backwards
}

@keyframes column-slide-in {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

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

.about-information .method-card {
  background: #FFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 7px 22px -1px #558bbd14;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .4s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .4s ease-in-out
}

.about-information .method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 44px -1px #558bbd24
}

.about-information .method-title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  color: #000;
  margin: 0
}

.about-information .method-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0
}

.about-information .background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .03;
  pointer-events: none;
  background-image: url(./pictures/content-image-2.jpg);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: 1
}

.about-information .background-tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #558bbd26;
  pointer-events: none;
  z-index: 1
}

.about-information .complex-anchor-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative
}

.about-information .anchor-layout {
  display: grid;
  grid-template-columns: 1fr 360px 1fr;
  gap: 40px;
  align-items: start
}

.about-information .left-content-block {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.about-information .central-visual-anchor {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 8px 44px -1px #570a5024;
  animation: slow-pan 30s linear infinite;
  background-image: url(./pictures/portfolio3web.jpg);
  background-size: 120%;
  background-position: center;
  height: 600px
}

@keyframes slow-pan {
  0% {
    background-position: 0 center
  }

  50% {
    background-position: 100% center
  }

  100% {
    background-position: 0 center
  }
}

.about-information .right-content-block {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.about-information .content-card {
  background: #FFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 3px 3px -1px #558bbd12;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.about-information .card-heading {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  color: #000;
  margin: 0
}

.about-information .card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0
}

.about-information .value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.about-information .value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #2a2a2a
}

.about-information .checkmark-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px
}

.about-information .checkmark-icon svg {
  width: 100%;
  height: 100%;
  fill: #558BBD
}

.about-information .cross-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px
}

.about-information .cross-icon svg {
  width: 100%;
  height: 100%;
  fill: #570A50
}

.about-information .team-presentation {
  background: linear-gradient(135deg, #FFF 0%, #F6F6F6 100%);
  position: relative
}

.about-information .svg-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0
}

.about-information .svg-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px
}

.about-information .svg-divider-top .shape-fill {
  fill: #FFF
}

.about-information .team-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px 80px
}

.about-information .team-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -.01em;
  font-weight: 900;
  color: #000;
  margin: 0 0 40px;
  text-align: right
}

.about-information .team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px
}

.about-information .team-member {
  background: #FFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 7px 22px -1px #570a5014;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  align-items: start;
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .35s ease-in-out
}

.about-information .team-member:hover {
  transform: translateX(-6px);
  box-shadow: 0 8px 44px -1px #570a5024
}

.about-information .member-photo-wrapper {
  border-radius: 40px;
  overflow: hidden;
  width: 140px;
  height: 140px
}

.about-information .member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .4s ease-in-out
}

.about-information .member-photo.loaded {
  opacity: 1
}

.about-information .member-details {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.about-information .member-name {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  color: #000;
  margin: 0
}

.about-information .member-role {
  font-size: 18px;
  line-height: 1.6;
  color: #558BBD;
  margin: 0;
  font-weight: 600
}

.about-information .member-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0
}

@media (max-width: 1280px) {
  .about-information .opening-display {
    grid-template-columns: 240px 1fr;
    gap: 40px;
    padding: 80px 40px
  }

  .about-information .primary-heading {
    font-size: 42px
  }

  .about-information .narrow-content-wrapper {
    grid-template-columns: 1fr 360px;
    gap: 40px
  }

  .about-information .anchor-layout {
    grid-template-columns: 1fr 320px 1fr;
    gap: 40px
  }

  .about-information .central-visual-anchor {
    height: 520px
  }
}

@media (max-width: 1024px) {
  .about-information .opening-display {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 40px
  }

  .about-information .left-image-column {
    height: 320px
  }

  .about-information .narrow-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 40px
  }

  .about-information .empty-space-right {
    display: none
  }

  .about-information .method-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .about-information .anchor-layout {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .about-information .central-visual-anchor {
    height: 400px;
    order: 2
  }

  .about-information .left-content-block {
    order: 1
  }

  .about-information .right-content-block {
    order: 3
  }

  .about-information .team-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@media (max-width: 640px) {
  .about-information .opening-display {
    padding: 40px 20px;
    gap: 20px
  }

  .about-information .left-image-column {
    height: 280px
  }

  .about-information .primary-heading {
    font-size: 30px
  }

  .about-information .evocative-description {
    font-size: 15px
  }

  .about-information .narrow-content-wrapper {
    padding: 40px 20px;
    gap: 40px
  }

  .about-information .section-label {
    font-size: 30px
  }

  .about-information .narrative-paragraph {
    font-size: 15px
  }

  .about-information .approach-inner {
    padding: 40px 20px
  }

  .about-information .approach-heading {
    font-size: 30px;
    margin: 0 0 40px
  }

  .about-information .method-card {
    padding: 20px
  }

  .about-information .method-title {
    font-size: 18px
  }

  .about-information .complex-anchor-section {
    padding: 40px 20px
  }

  .about-information .central-visual-anchor {
    height: 320px
  }

  .about-information .content-card {
    padding: 20px
  }

  .about-information .card-heading {
    font-size: 18px
  }

  .about-information .team-inner {
    padding: 80px 20px 40px
  }

  .about-information .team-heading {
    font-size: 30px;
    margin: 0 0 40px
  }

  .about-information .team-member {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px
  }

  .about-information .member-photo-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto
  }

  .about-information .member-name {
    font-size: 18px;
    text-align: center
  }

  .about-information .member-role {
    font-size: 15px;
    text-align: center
  }

  .about-information .member-bio {
    text-align: center
  }
}

@media (max-width: 360px) {
  .about-information .opening-display {
    padding: 40px 12px
  }

  .about-information .narrow-content-wrapper {
    padding: 40px 12px
  }

  .about-information .approach-inner {
    padding: 40px 12px
  }

  .about-information .complex-anchor-section {
    padding: 40px 12px
  }

  .about-information .team-inner {
    padding: 80px 12px 40px
  }
}

.contact-us {
  background: #FFF;
  color: #1A1A1A;
  overflow-x: clip
}

.contact-us ::selection {
  background: #570A50;
  color: #FFF
}

.contact-us .lead-panel {
  background: linear-gradient(135deg, #558BBD 0%, #8BA9C7 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden
}

.contact-us .lead-panel::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid #ffffff26;
  border-radius: 12px;
  top: 40px;
  left: 40px;
  transform: rotate(15deg)
}

.contact-us .lead-panel::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid #ffffff1f;
  border-radius: 12px;
  bottom: 60px;
  right: 80px;
  transform: rotate(-12deg)
}

.contact-us .lead-panel-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: .08
}

.contact-us .lead-panel-pattern::before,
.contact-us .lead-panel-pattern::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #FFF;
  border-radius: 40px
}

.contact-us .lead-panel-pattern::before {
  top: 120px;
  right: 15%
}

.contact-us .lead-panel-pattern::after {
  bottom: 100px;
  left: 20%;
  width: 30px;
  height: 30px
}

.contact-us .lead-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.contact-us .eyebrow {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ffffffd9;
  margin: 0 0 12px;
  font-weight: 600
}

.contact-us .lead-heading {
  font-size: 58px;
  line-height: 1.2;
  color: #FFF;
  margin: 0;
  font-weight: 900;
  letter-spacing: -.02em;
  animation: zoom-settle .65s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  transform-origin: center top
}

@keyframes zoom-settle {
  0% {
    transform: scale(1.15);
    opacity: 0
  }

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

.contact-us .communication-grid {
  padding: 80px 20px;
  background: #F6F6F6;
  position: relative
}

.contact-us .communication-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #558BBD 0%, #FFF 50%, #570A50 100%)
}

.contact-us .communication-container {
  max-width: 1400px;
  margin: 0 auto
}

.contact-us .communication-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px
}

.contact-us .primary-column {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.contact-us .form-card {
  background: #FFF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 7px 22px -1px #558bbd14;
  border: 1px solid #558bbd1f;
  border-left: 4px solid #558BBD;
  animation: slide-up .55s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  opacity: 0;
  animation-delay: .1s
}

@keyframes slide-up {
  0% {
    transform: translateY(40px);
    opacity: 0
  }

  100% {
    transform: translateY(0);
    opacity: 1
  }
}

.contact-us .form-heading {
  font-size: 30px;
  line-height: 1.2;
  color: #1A1A1A;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -.01em
}

.contact-us .form-intro {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0 0 40px
}

.contact-us .request-form {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-us .field-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.contact-us .field-label {
  font-size: 15px;
  font-weight: 600;
  color: #2A2A2A;
  display: block
}

.contact-us .field-input {
  width: 100%;
  padding: 12px 20px;
  font-size: 15px;
  line-height: 1.6;
  border: 2px solid #E0E0E0;
  border-radius: 2px;
  background: #FFF;
  color: #1A1A1A;
  transition: border-color .35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.contact-us .field-input:focus {
  outline: none;
  border-color: #558BBD;
  box-shadow: 0 0 0 3px #558bbd1a
}

.contact-us .field-input::placeholder {
  color: #999;
  font-size: 14px
}

.contact-us .field-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit
}

.contact-us .budget-group {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.contact-us .budget-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px
}

.contact-us .budget-option {
  position: relative
}

.contact-us .budget-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.contact-us .budget-label {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border: 2px solid #E0E0E0;
  border-radius: 2px;
  background: #FFF;
  cursor: pointer;
  transition: all .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  font-size: 15px;
  color: #2A2A2A;
  font-weight: 500
}

.contact-us .budget-label::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid #E0E0E0;
  border-radius: 40px;
  margin-right: 12px;
  transition: all .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  flex-shrink: 0
}

.contact-us .budget-radio:checked+.budget-label {
  border-color: #558BBD;
  background: #558bbd0d
}

.contact-us .budget-radio:checked+.budget-label::before {
  border-color: #558BBD;
  background: #558BBD;
  box-shadow: inset 0 0 0 4px #FFF
}

.contact-us .budget-label:hover {
  border-color: #558BBD
}

.contact-us .consent-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #F9F9F9;
  border-radius: 2px;
  border: 1px solid #E8E8E8
}

.contact-us .consent-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0
}

.contact-us .consent-text {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0
}

.contact-us .consent-text a {
  color: #558BBD;
  text-decoration: none;
  font-weight: 600;
  transition: color .35s ease-in-out
}

.contact-us .consent-text a:hover {
  color: #570A50
}

.contact-us .submit-button {
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 700;
  color: #FFF;
  background: linear-gradient(135deg, #558BBD 0%, #4A7AA8 100%);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all .4s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 3px 3px -1px #558bbd12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  align-self: flex-start
}

.contact-us .submit-button:hover {
  background: linear-gradient(135deg, #4A7AA8 0%, #558BBD 100%);
  box-shadow: 0 8px 44px -1px #558bbd24;
  transform: translateY(-2px)
}

.contact-us .submit-button::after {
  content: '→';
  font-size: 20px;
  transition: transform .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.contact-us .submit-button:hover::after {
  transform: translateX(6px)
}

.contact-us .details-card {
  background: #FFF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 7px 22px -1px #570a5014;
  border: 1px solid #570a501f;
  border-right: 4px solid #570A50;
  animation: slide-up .55s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  opacity: 0;
  animation-delay: .25s
}

.contact-us .details-heading {
  font-size: 30px;
  line-height: 1.2;
  color: #1A1A1A;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -.01em
}

.contact-us .details-intro {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0 0 40px
}

.contact-us .info-rows {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-us .info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 20px;
  background: #FAFAFA;
  border-radius: 2px;
  border-left: 3px solid #558BBD;
  transition: all .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.contact-us .info-row:hover {
  background: #F4F4F4;
  border-left-color: #570A50;
  transform: translateX(6px)
}

.contact-us .info-label {
  font-size: 15px;
  font-weight: 700;
  color: #2A2A2A;
  text-transform: uppercase;
  letter-spacing: .05em
}

.contact-us .info-value {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A
}

.contact-us .info-value a {
  color: #558BBD;
  text-decoration: none;
  font-weight: 600;
  transition: color .35s ease-in-out
}

.contact-us .info-value a:hover {
  color: #570A50
}

.contact-us .response-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF 0%, #F6F6F6 100%);
  position: relative
}

.contact-us .response-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #558BBD
}

.contact-us .response-section::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 2px;
  background: #570A50
}

.contact-us .response-container {
  max-width: 1400px;
  margin: 0 auto
}

.contact-us .response-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center
}

.contact-us .response-content {
  animation: fade-in-left .6s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  opacity: 0;
  animation-delay: .15s
}

@keyframes fade-in-left {
  0% {
    transform: translateX(-40px);
    opacity: 0
  }

  100% {
    transform: translateX(0);
    opacity: 1
  }
}

.contact-us .response-heading {
  font-size: 42px;
  line-height: 1.2;
  color: #1A1A1A;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -.02em
}

.contact-us .response-text {
  font-size: 18px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0 0 20px
}

.contact-us .response-text:last-child {
  margin-bottom: 0
}

.contact-us .metrics-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  animation: fade-in-right .6s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  opacity: 0;
  animation-delay: .3s
}

@keyframes fade-in-right {
  0% {
    transform: translateX(40px);
    opacity: 0
  }

  100% {
    transform: translateX(0);
    opacity: 1
  }
}

.contact-us .metric-card {
  background: #FFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 7px 22px -1px #558bbd14;
  border-top: 4px solid #558BBD;
  text-align: right;
  transition: all .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.contact-us .metric-card:nth-child(2) {
  border-top-color: #570A50;
  transform: translateY(40px)
}

.contact-us .metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 44px -1px #558bbd24
}

.contact-us .metric-card:nth-child(2):hover {
  transform: translateY(34px)
}

.contact-us .metric-number {
  font-size: 58px;
  line-height: 1.2;
  font-weight: 900;
  color: #558BBD;
  margin: 0 0 6px;
  letter-spacing: -.02em
}

.contact-us .metric-card:nth-child(2) .metric-number {
  color: #570A50
}

.contact-us .metric-label {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

@media (max-width: 1024px) {
  .contact-us .lead-heading {
    font-size: 42px
  }

  .contact-us .response-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .contact-us .metric-card:nth-child(2) {
    transform: translateY(0)
  }

  .contact-us .metric-card:nth-child(2):hover {
    transform: translateY(-6px)
  }

  .contact-us .response-heading {
    font-size: 30px
  }

  .contact-us .metric-number {
    font-size: 42px
  }
}

@media (max-width: 640px) {
  .contact-us .lead-panel {
    padding: 40px 20px
  }

  .contact-us .lead-heading {
    font-size: 30px
  }

  .contact-us .communication-grid,
  .contact-us .response-section {
    padding: 40px 20px
  }

  .contact-us .form-card,
  .contact-us .details-card {
    padding: 20px
  }

  .contact-us .form-heading,
  .contact-us .details-heading {
    font-size: 18px
  }

  .contact-us .budget-options {
    grid-template-columns: 1fr
  }

  .contact-us .info-row {
    grid-template-columns: 1fr;
    gap: 6px
  }

  .contact-us .response-heading {
    font-size: 18px
  }

  .contact-us .metrics-display {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .contact-us .metric-card {
    padding: 20px
  }

  .contact-us .metric-number {
    font-size: 30px
  }

  .contact-us .submit-button {
    width: 100%
  }
}

@media (max-width: 360px) {
  .contact-us .lead-heading {
    font-size: 18px
  }

  .contact-us .response-heading {
    font-size: 15px
  }

  .contact-us .metric-number {
    font-size: 18px
  }
}

.prime-page {
  background: #FFF;
  color: #1d1d1d;
  overflow-x: clip
}

.prime-page ::selection {
  background: #570A50;
  color: #FFF
}

.prime-page img {
  opacity: 0;
  transition: opacity .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.prime-page img.loaded {
  opacity: 1
}

.prime-page input::placeholder,
.prime-page textarea::placeholder {
  font-size: 14px;
  color: #7a7a7a
}

.intro-banner {
  position: relative;
  background: conic-gradient(from 323deg, #558BBD, #570A50, #F6F6F6);
  padding: 80px 20px;
  overflow: hidden
}

.intro-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ffffffeb 0%, #ffffffd9 100%);
  z-index: 1
}

.intro-banner::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #ffffff26 0%, transparent 70%);
  top: -200px;
  right: -150px;
  border-radius: 50%;
  animation: fog-drift 28s cubic-bezier(0.34, 1.2, 0.64, 1) infinite alternate;
  z-index: 2
}

@keyframes fog-drift {
  0% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(-180px, 120px)
  }
}

.intro-banner-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto
}

.intro-banner h1 {
  font-size: 72px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #1d1d1d;
  margin: 0 0 20px
}

.intro-banner .numerical-accent {
  font-size: 58px;
  color: #558BBD;
  font-weight: 900;
  display: inline-block;
  margin: 0 6px 0 0
}

.intro-banner .explanation {
  font-size: 18px;
  line-height: 1.6;
  color: #2d2d2d;
  max-width: 680px;
  margin: 0
}

.intro-banner .dot-decoration {
  position: absolute;
  bottom: 40px;
  right: 80px;
  display: flex;
  gap: 12px;
  z-index: 4
}

.intro-banner .dot-decoration span {
  width: 12px;
  height: 12px;
  background: #558BBD;
  border-radius: 50%;
  opacity: .3;
  animation: dot-pulse 3.2s cubic-bezier(0.34, 1.2, 0.64, 1) infinite
}

.intro-banner .dot-decoration span:nth-child(2) {
  animation-delay: .4s;
  background: #570A50
}

.intro-banner .dot-decoration span:nth-child(3) {
  animation-delay: .8s;
  background: #558BBD
}

.intro-banner .dot-decoration span:nth-child(4) {
  animation-delay: 1.2s;
  background: #570A50
}

@keyframes dot-pulse {

  0%,
  100% {
    opacity: .3;
    transform: scale(1)
  }

  50% {
    opacity: .8;
    transform: scale(1.4)
  }
}

@media (max-width: 1024px) {
  .intro-banner h1 {
    font-size: 58px
  }

  .intro-banner .numerical-accent {
    font-size: 42px
  }

  .intro-banner .dot-decoration {
    right: 40px;
    bottom: 20px
  }
}

@media (max-width: 640px) {
  .intro-banner {
    padding: 40px 20px
  }

  .intro-banner h1 {
    font-size: 42px
  }

  .intro-banner .numerical-accent {
    font-size: 30px
  }

  .intro-banner .explanation {
    font-size: 15px
  }

  .intro-banner .dot-decoration {
    display: none
  }
}

.team-display {
  background: #FFF;
  padding: 80px 20px;
  position: relative
}

.team-display::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 40px;
  width: 280px;
  height: 280px;
  border: 2px solid #558bbd14;
  border-radius: 50%;
  z-index: 1
}

.team-display::after {
  content: '';
  position: absolute;
  top: 60px;
  right: 60px;
  width: 240px;
  height: 240px;
  border: 2px solid #558bbd0d;
  border-radius: 50%;
  z-index: 1
}

.team-display-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.team-display h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #1d1d1d;
  margin: 0 0 40px
}

.team-display-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px
}

.specialist-card {
  background: #F6F6F6;
  padding: 20px;
  border-radius: 12px;
  transition: box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1), transform .38s ease-in-out
}

.specialist-card:hover {
  box-shadow: 0 8px 44px -1px #558bbd24;
  transform: translateY(-6px)
}

.specialist-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 2px;
  margin: 0 0 20px
}

.specialist-card h3 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.01em;
  color: #1d1d1d;
  margin: 0 0 12px
}

.specialist-card .role {
  font-size: 15px;
  line-height: 1.6;
  color: #558BBD;
  font-weight: 700;
  margin: 0 0 12px
}

.specialist-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #3d3d3d;
  margin: 0
}

@media (max-width: 1024px) {
  .team-display-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 640px) {
  .team-display {
    padding: 40px 20px
  }

  .team-display h2 {
    font-size: 30px
  }

  .team-display-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .specialist-card img {
    height: 220px
  }

  .team-display::before,
  .team-display::after {
    display: none
  }
}

.objection-response {
  background: linear-gradient(118deg, #F6F6F6 0%, #FFF 100%);
  padding: 80px 20px;
  position: relative
}

.objection-response::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, #558BBD, transparent)
}

.objection-response-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start
}

.objection-response h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #1d1d1d;
  margin: 0 0 20px
}

.objection-response p {
  font-size: 18px;
  line-height: 1.9;
  color: #2d2d2d;
  margin: 0 0 20px
}

.objection-response p:last-of-type {
  margin: 0
}

.objection-response-sidebar {
  background: #FFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 7px 22px -1px #570a5014;
  position: sticky;
  top: 40px
}

.objection-response-sidebar h3 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.01em;
  color: #1d1d1d;
  margin: 0 0 20px
}

.objection-response-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.objection-response-sidebar li {
  font-size: 15px;
  line-height: 1.6;
  color: #3d3d3d;
  margin: 0 0 12px;
  padding: 0 0 0 20px;
  position: relative
}

.objection-response-sidebar li:last-child {
  margin: 0
}

.objection-response-sidebar li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #570A50;
  border-radius: 50%
}

@media (max-width: 1024px) {
  .objection-response-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .objection-response-sidebar {
    position: static
  }
}

@media (max-width: 640px) {
  .objection-response {
    padding: 40px 20px
  }

  .objection-response h2 {
    font-size: 30px
  }

  .objection-response p {
    font-size: 15px
  }

  .objection-response-sidebar {
    padding: 20px
  }
}

.limitations-block {
  background: #FFF;
  padding: 80px 20px;
  position: relative
}

.limitations-block-inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: right
}

.limitations-block h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #1d1d1d;
  margin: 0 0 40px
}

.limitations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.limitation-item {
  background: #F6F6F6;
  padding: 40px 20px;
  border-radius: 40px;
  transition: background .35s ease-in-out, transform .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  text-align: center
}

.limitation-item:hover {
  background: linear-gradient(135deg, #558bbd14 0%, #570a5014 100%);
  transform: scale(1.05)
}

.limitation-item h3 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.01em;
  color: #1d1d1d;
  margin: 0 0 12px
}

.limitation-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #3d3d3d;
  margin: 0
}

@media (max-width: 1024px) {
  .limitations-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 640px) {
  .limitations-block {
    padding: 40px 20px
  }

  .limitations-block-inner {
    text-align: left
  }

  .limitations-block h2 {
    font-size: 30px
  }

  .limitations-grid {
    grid-template-columns: 1fr
  }
}

.evidence-showcase {
  background: conic-gradient(from 323deg, #558BBD, #570A50, #F6F6F6);
  padding: 80px 20px;
  position: relative;
  overflow: hidden
}

.evidence-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffffff0;
  z-index: 1
}

.evidence-showcase::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #fff3 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  border-radius: 50%;
  animation: fog-drift-reverse 32s ease-in-out infinite alternate;
  z-index: 2
}

@keyframes fog-drift-reverse {
  0% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(200px, -100px)
  }
}

.evidence-showcase-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 3
}

.evidence-showcase h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #1d1d1d;
  margin: 0 0 40px
}

.stat-counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 0 40px
}

.stat-card {
  background: #FFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 3px 3px -1px #558bbd12;
  transition: box-shadow .4s cubic-bezier(0.34, 1.2, 0.64, 1), transform .4s ease-in-out;
  text-align: center
}

.stat-card:hover {
  box-shadow: 0 8px 44px -1px #570a5024;
  transform: translateY(-8px)
}

.stat-card .number {
  font-size: 72px;
  line-height: 1.2;
  font-weight: 900;
  color: #558BBD;
  margin: 0 0 12px
}

.stat-card .label {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #1d1d1d;
  margin: 0
}

.evidence-showcase p {
  font-size: 18px;
  line-height: 1.9;
  color: #2d2d2d;
  margin: 0;
  max-width: 900px
}

@media (max-width: 1024px) {
  .stat-counter-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 640px) {
  .evidence-showcase {
    padding: 40px 20px
  }

  .evidence-showcase h2 {
    font-size: 30px
  }

  .stat-counter-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .stat-card .number {
    font-size: 58px
  }

  .stat-card .label {
    font-size: 15px
  }

  .evidence-showcase p {
    font-size: 15px
  }
}

.adaptation-proof {
  background: #FFF;
  padding: 80px 20px;
  position: relative
}

.adaptation-proof::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(to left, #570A50, transparent)
}

.adaptation-proof-inner {
  max-width: 1400px;
  margin: 0 auto
}

.adaptation-proof h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #1d1d1d;
  margin: 0 0 40px
}

.adaptation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px
}

.adaptation-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden
}

.adaptation-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block
}

.adaptation-content h3 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.01em;
  color: #1d1d1d;
  margin: 0 0 20px
}

.adaptation-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #2d2d2d;
  margin: 0 0 20px
}

.adaptation-content p:last-child {
  margin: 0
}

@media (max-width: 1024px) {
  .adaptation-layout {
    grid-template-columns: 1fr
  }

  .adaptation-visual img {
    height: 380px
  }
}

@media (max-width: 640px) {
  .adaptation-proof {
    padding: 40px 20px
  }

  .adaptation-proof h2 {
    font-size: 30px
  }

  .adaptation-visual img {
    height: 280px
  }

  .adaptation-content h3 {
    font-size: 18px
  }

  .adaptation-content p {
    font-size: 15px
  }
}

.outcome-statement {
  background: linear-gradient(242deg, #F6F6F6 0%, #FFF 100%);
  padding: 80px 20px;
  position: relative
}

.outcome-statement-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center
}

.outcome-statement-text {
  flex: 2
}

.outcome-statement h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #1d1d1d;
  margin: 0 0 20px
}

.outcome-statement p {
  font-size: 18px;
  line-height: 1.9;
  color: #2d2d2d;
  margin: 0 0 20px
}

.outcome-statement p:last-of-type {
  margin: 0
}

.outcome-statement-visual {
  flex: 1;
  position: relative
}

.outcome-statement-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 7px 22px -1px #558bbd14
}

@media (max-width: 1024px) {
  .outcome-statement-inner {
    flex-direction: column;
    gap: 40px
  }

  .outcome-statement-visual img {
    height: 360px
  }
}

@media (max-width: 640px) {
  .outcome-statement {
    padding: 40px 20px
  }

  .outcome-statement h2 {
    font-size: 30px
  }

  .outcome-statement p {
    font-size: 15px
  }

  .outcome-statement-visual img {
    height: 260px
  }
}

.philanthropy {
  background: #FFF;
  overflow-x: clip
}

.philanthropy::selection {
  background: #570A50;
  color: #FFF
}

.philanthropy .opening-scene {
  position: relative;
  background: linear-gradient(180deg, #F6F6F6 0%, #FFF 100%);
  padding: 80px 20px;
  overflow: hidden
}

.philanthropy .opening-scene::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 8%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #558BBD;
  opacity: .04;
  pointer-events: none
}

.philanthropy .opening-scene::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 12%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #570A50;
  opacity: .04;
  pointer-events: none
}

.philanthropy .opening-scene-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .03
}

.philanthropy .opening-scene-pattern-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #558BBD;
  border-radius: 50%
}

.philanthropy .opening-scene-pattern-dot:nth-child(1) {
  top: 20%;
  left: 15%
}

.philanthropy .opening-scene-pattern-dot:nth-child(2) {
  top: 25%;
  left: 25%
}

.philanthropy .opening-scene-pattern-dot:nth-child(3) {
  top: 30%;
  left: 35%
}

.philanthropy .opening-scene-pattern-dot:nth-child(4) {
  top: 35%;
  left: 45%
}

.philanthropy .opening-scene-pattern-dot:nth-child(5) {
  top: 40%;
  left: 55%
}

.philanthropy .opening-scene-pattern-dot:nth-child(6) {
  top: 45%;
  left: 65%
}

.philanthropy .opening-scene-pattern-dot:nth-child(7) {
  top: 50%;
  left: 75%
}

.philanthropy .opening-scene-pattern-dot:nth-child(8) {
  top: 60%;
  left: 20%
}

.philanthropy .opening-scene-pattern-dot:nth-child(9) {
  top: 65%;
  left: 30%
}

.philanthropy .opening-scene-pattern-dot:nth-child(10) {
  top: 70%;
  left: 40%
}

.philanthropy .opening-scene-pattern-dot:nth-child(11) {
  top: 75%;
  left: 50%
}

.philanthropy .opening-scene-pattern-dot:nth-child(12) {
  top: 80%;
  left: 60%
}

.philanthropy .opening-scene-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.philanthropy .opening-scene-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center
}

.philanthropy .opening-scene-headline {
  font-size: 58px;
  line-height: 1.2;
  font-weight: 900;
  color: #0A0A0A;
  letter-spacing: -.02em;
  margin: 0 0 20px;
  animation: philanthropy-clip-reveal .85s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  clip-path: inset(100% 0 0 0)
}

@keyframes philanthropy-clip-reveal {
  to {
    clip-path: inset(0 0 0 0)
  }
}

.philanthropy .opening-scene-headline-accent {
  color: #558BBD
}

.philanthropy .opening-scene-description {
  font-size: 18px;
  line-height: 1.6;
  color: #3A3A3A;
  margin: 0 0 40px;
  animation: philanthropy-wave-item-2 .85s cubic-bezier(0.34, 1.2, 0.64, 1) .15s backwards
}

@keyframes philanthropy-wave-item-2 {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

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

.philanthropy .opening-scene-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #558BBD 0%, #570A50 100%);
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 40px;
  box-shadow: 0 7px 22px -1px #558bbd14 0 8px 44px -1px #558bbd24;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  animation: philanthropy-wave-item-3 .85s cubic-bezier(0.34, 1.2, 0.64, 1) .3s backwards
}

@keyframes philanthropy-wave-item-3 {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

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

.philanthropy .opening-scene-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -1px #558bbd2e 0 16px 56px -1px #558bbd3d
}

.philanthropy .opening-scene-link:hover .opening-scene-link-icon {
  transform: translateX(6px)
}

.philanthropy .opening-scene-link-icon {
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.philanthropy .mission-display {
  position: relative;
  background: #FFF;
  padding: 80px 20px;
  overflow: hidden
}

.philanthropy .mission-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, #F6F6F6 0%, #f6f6f600 100%);
  pointer-events: none
}

.philanthropy .mission-display::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, #fff0 40%, #0a0a0a08 100%);
  pointer-events: none
}

.philanthropy .mission-display-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.philanthropy .mission-display-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.philanthropy .mission-display-visual {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 7px 22px -1px #570a5014 0 8px 44px -1px #570a5024
}

.philanthropy .mission-display-visual-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 12px
}

.philanthropy .mission-display-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease-in-out, opacity .45s cubic-bezier(0.34, 1.2, 0.64, 1);
  opacity: 0
}

.philanthropy .mission-display-image.loaded {
  opacity: 1
}

.philanthropy .mission-display-text {
  text-align: right
}

.philanthropy .mission-display-label {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #558BBD;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 20px
}

.philanthropy .mission-display-heading {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
  color: #0A0A0A;
  letter-spacing: -.02em;
  margin: 0 0 20px
}

.philanthropy .mission-display-heading-bracket {
  color: #570A50
}

.philanthropy .mission-display-paragraph {
  font-size: 18px;
  line-height: 1.6;
  color: #3A3A3A;
  margin: 0 0 20px
}

.philanthropy .mission-display-paragraph:last-child {
  margin-bottom: 0
}

.philanthropy .mission-display-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.philanthropy .mission-display-list-entry {
  position: relative;
  padding-right: 40px;
  font-size: 18px;
  line-height: 1.6;
  color: #3A3A3A;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: right
}

.philanthropy .mission-display-list-entry::after {
  content: '';
  position: absolute;
  right: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: conic-gradient(from 323deg, #558BBD 0%, #570A50 100%);
  border-radius: 50%;
  flex-shrink: 0
}

.philanthropy .mission-display-diagram {
  margin: 40px 0 0;
  padding: 40px;
  background: #F6F6F6;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px
}

.philanthropy .mission-display-metric {
  text-align: right
}

.philanthropy .mission-display-metric-value {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
  color: #558BBD;
  margin: 0 0 6px
}

.philanthropy .mission-display-metric-description {
  font-size: 15px;
  line-height: 1.6;
  color: #3A3A3A;
  margin: 0
}

@media (max-width: 1024px) {
  .philanthropy .opening-scene {
    padding: 60px 20px
  }

  .philanthropy .opening-scene-headline {
    font-size: 42px
  }

  .philanthropy .opening-scene-description {
    font-size: 15px
  }

  .philanthropy .opening-scene-link {
    font-size: 15px;
    padding: 20px 40px
  }

  .philanthropy .mission-display {
    padding: 60px 20px
  }

  .philanthropy .mission-display-layout {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .philanthropy .mission-display-text {
    text-align: left
  }

  .philanthropy .mission-display-heading {
    font-size: 30px
  }

  .philanthropy .mission-display-paragraph {
    font-size: 15px
  }

  .philanthropy .mission-display-list-entry {
    padding-right: 0;
    padding-left: 40px;
    justify-content: flex-start;
    text-align: left
  }

  .philanthropy .mission-display-list-entry::after {
    right: auto;
    left: 0
  }

  .philanthropy .mission-display-visual-wrapper {
    height: 420px
  }

  .philanthropy .mission-display-diagram {
    padding: 20px;
    gap: 20px
  }

  .philanthropy .mission-display-metric {
    text-align: left
  }

  .philanthropy .mission-display-metric-value {
    font-size: 30px
  }
}

@media (max-width: 640px) {
  .philanthropy .opening-scene {
    padding: 40px 20px
  }

  .philanthropy .opening-scene-headline {
    font-size: 30px
  }

  .philanthropy .mission-display {
    padding: 40px 20px
  }

  .philanthropy .mission-display-visual-wrapper {
    height: 320px
  }

  .philanthropy .mission-display-diagram {
    grid-template-columns: 1fr;
    gap: 20px
  }
}

@media (max-width: 360px) {
  .philanthropy .opening-scene-link {
    width: 100%;
    justify-content: center
  }
}

.service-offering {
  background: #FFF;
  max-width: 1400px;
  margin: 0 auto
}

.service-offering ::selection {
  background: #570A50;
  color: #FFF
}

.service-offering .intro-banner {
  position: relative;
  background: radial-gradient(ellipse at center, #558bbd14 0%, #570a500a 70%, transparent 100%);
  padding: 40px 20px;
  overflow: hidden
}

.service-offering .intro-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, #558bbd05 39px, #558bbd05 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, #558bbd05 39px, #558bbd05 40px);
  pointer-events: none
}

.service-offering .intro-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px
}

.service-offering .intro-text-area {
  flex: 1
}

.service-offering .intro-label {
  font-size: 15px;
  color: #558BBD;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
  font-weight: 600
}

.service-offering .intro-heading {
  font-size: 58px;
  line-height: 1.2;
  color: #0D0D0D;
  margin: 0;
  font-weight: 900;
  letter-spacing: -1px
}

.service-offering .intro-visual {
  width: 380px;
  height: 280px;
  position: relative;
  flex-shrink: 0
}

.service-offering .intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  animation: fadeInImage .4s cubic-bezier(0.34, 1.2, 0.64, 1) .2s forwards;
  filter: sepia(0.15) hue-rotate(-10deg) saturate(1.1)
}

@keyframes fadeInImage {
  to {
    opacity: 1
  }
}

.service-offering .intro-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #558bbd40 0%, transparent 60%);
  border-radius: 12px;
  pointer-events: none
}

.service-offering .card-grid-container {
  padding: 80px 20px;
  background: #F6F6F6
}

.service-offering .card-grid-container h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #0D0D0D;
  margin: 0 0 40px;
  text-align: center;
  font-weight: 900;
  letter-spacing: -.5px
}

.service-offering .service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto
}

.service-offering .service-card {
  background: #FFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 3px -1px #558bbd12 0 7px 22px -1px #558bbd14 0 8px 44px -1px #558bbd24;
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  display: flex;
  flex-direction: column
}

.service-offering .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 8px -1px #558bbd1f 0 14px 36px -1px #558bbd26 0 16px 60px -1px #558bbd2e
}

.service-offering .service-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative
}

.service-offering .service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease-in-out;
  opacity: 0;
  animation: fadeInImage .4s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

.service-offering .service-card:hover .service-card-image img {
  transform: scale(1.08)
}

.service-offering .service-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.service-offering .card-meta {
  display: flex;
  gap: 12px;
  margin: 0 0 12px;
  flex-wrap: wrap
}

.service-offering .card-tag {
  font-size: 15px;
  color: #558BBD;
  background: #558bbd14;
  padding: 6px 12px;
  border-radius: 40px;
  font-weight: 600
}

.service-offering .card-user-format {
  font-size: 15px;
  color: #570A50;
  background: #570a5014;
  padding: 6px 12px;
  border-radius: 40px;
  font-weight: 600
}

.service-offering .service-card h3 {
  font-size: 30px;
  line-height: 1.2;
  color: #0D0D0D;
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: -.3px
}

.service-offering .service-card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0 0 20px;
  flex: 1
}

.service-offering .card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 20px;
  padding: 20px 0 0;
  border-top: 1px solid #558bbd1f
}

.service-offering .detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.service-offering .detail-label {
  font-size: 15px;
  color: #888;
  font-weight: 600
}

.service-offering .detail-value {
  font-size: 15px;
  color: #0D0D0D;
  font-weight: 700
}

.service-offering .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px
}

.service-offering .card-price {
  font-size: 30px;
  line-height: 1.2;
  color: #558BBD;
  font-weight: 900
}

.service-offering .card-link {
  background: #558BBD;
  color: #FFF;
  padding: 12px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1), transform .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px
}

.service-offering .card-link::after {
  content: '→';
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.service-offering .card-link:hover {
  background: #4A7AA5;
  transform: translateX(4px)
}

.service-offering .card-link:hover::after {
  transform: translateX(6px)
}

.service-offering .process-explanation {
  padding: 80px 20px;
  background: #FFF
}

.service-offering .process-wrapper {
  max-width: 1200px;
  margin: 0 auto
}

.service-offering .process-explanation h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #0D0D0D;
  margin: 0 0 40px;
  font-weight: 900;
  letter-spacing: -.5px
}

.service-offering .process-steps {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px
}

.service-offering .process-step {
  position: relative
}

.service-offering .step-number {
  width: 60px;
  height: 60px;
  background: conic-gradient(from 323deg, #558BBD 0%, #570A50 100%);
  color: #FFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  margin: 0 0 20px;
  transition: transform .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.service-offering .process-step:hover .step-number {
  transform: rotate(8deg)
}

.service-offering .process-step h3 {
  font-size: 18px;
  line-height: 1.2;
  color: #0D0D0D;
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: -.2px
}

.service-offering .process-step p {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0
}

.service-offering .guarantee-block {
  padding: 80px 20px;
  background: #570A50;
  position: relative;
  overflow: hidden
}

.service-offering .guarantee-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: repeating-radial-gradient(circle at center, transparent 0px, transparent 60px, #ffffff08 60px, #ffffff08 62px);
  transform: translate(-50%, -50%);
  pointer-events: none
}

.service-offering .guarantee-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: center
}

.service-offering .guarantee-text {
  flex: 1
}

.service-offering .guarantee-block h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #FFF !important;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -.5px
}

.service-offering .guarantee-block p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffffe6;
  margin: 0 0 20px
}

.service-offering .guarantee-block p:last-of-type {
  margin: 0
}

.service-offering .guarantee-visual {
  width: 320px;
  height: 420px;
  position: relative;
  flex-shrink: 0
}

.service-offering .guarantee-visual::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: #558BBD;
  transform: rotate(45deg);
  border-radius: 2px
}

.service-offering .guarantee-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInImage .4s cubic-bezier(0.34, 1.2, 0.64, 1) .2s forwards
}

.service-offering .faq-section {
  padding: 80px 20px;
  background: #F6F6F6
}

.service-offering .faq-wrapper {
  max-width: 900px;
  margin: 0 auto
}

.service-offering .faq-section h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #0D0D0D;
  margin: 0 0 40px;
  font-weight: 900;
  letter-spacing: -.5px;
  text-align: center
}

.service-offering .faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.service-offering .faq-item {
  background: #FFF;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 3px -1px #570a5012 0 7px 22px -1px #570a5014 0 8px 44px -1px #570a5024
}

.service-offering .faq-question {
  font-size: 18px;
  line-height: 1.2;
  color: #0D0D0D;
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: -.2px
}

.service-offering .faq-answer {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0
}

.service-offering .statistics-display {
  padding: 80px 20px;
  background: #FFF
}

.service-offering .statistics-wrapper {
  max-width: 1200px;
  margin: 0 auto
}

.service-offering .statistics-display h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #0D0D0D;
  margin: 0 0 40px;
  font-weight: 900;
  letter-spacing: -.5px;
  text-align: right
}

.service-offering .stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.service-offering .stat-card {
  background: linear-gradient(135deg, #F6F6F6 0%, #FFF 100%);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.service-offering .stat-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  width: 0;
  height: 4px;
  background: radial-gradient(ellipse at center, #558BBD 0%, #570A50 50%, transparent 100%);
  transform: translateX(-50%);
  transition: width .42s ease-in-out
}

.service-offering .stat-card:hover {
  transform: translateY(-8px)
}

.service-offering .stat-card:hover::before {
  width: 80%
}

.service-offering .stat-number {
  font-size: 58px;
  line-height: 1.2;
  color: #558BBD;
  font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: -1px
}

.service-offering .stat-label {
  font-size: 18px;
  line-height: 1.2;
  color: #0D0D0D;
  font-weight: 900;
  letter-spacing: -.2px;
  margin: 0
}

@media (max-width: 1024px) {
  .service-offering .intro-content {
    flex-direction: column
  }

  .service-offering .intro-visual {
    width: 100%;
    max-width: 500px
  }

  .service-offering .intro-heading {
    font-size: 42px
  }

  .service-offering .service-cards {
    grid-template-columns: 1fr
  }

  .service-offering .process-steps {
    grid-template-columns: 1fr
  }

  .service-offering .guarantee-content {
    flex-direction: column
  }

  .service-offering .guarantee-visual {
    width: 100%;
    max-width: 400px
  }

  .service-offering .stat-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 640px) {
  .service-offering .intro-banner {
    padding: 20px 12px
  }

  .service-offering .intro-heading {
    font-size: 30px
  }

  .service-offering .card-grid-container,
  .service-offering .process-explanation,
  .service-offering .guarantee-block,
  .service-offering .faq-section,
  .service-offering .statistics-display {
    padding: 40px 12px
  }

  .service-offering .card-grid-container h2,
  .service-offering .process-explanation h2,
  .service-offering .guarantee-block h2,
  .service-offering .faq-section h2,
  .service-offering .statistics-display h2 {
    font-size: 30px
  }

  .service-offering .service-card h3 {
    font-size: 18px
  }

  .service-offering .card-details {
    grid-template-columns: 1fr
  }

  .service-offering .card-footer {
    flex-direction: column;
    align-items: flex-start
  }

  .service-offering .stat-number {
    font-size: 42px
  }
}

@media (max-width: 360px) {
  .service-offering .intro-heading {
    font-size: 30px
  }

  .service-offering .service-cards {
    gap: 20px
  }
}

.success-confirmation {
  background: #F6F6F6;
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.success-confirmation .confirmation-container {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 80px 40px;
  border-radius: 12px;
  box-shadow: 0 7px 22px -1px #558bbd14 0 8px 44px -1px #558bbd24;
  text-align: center
}

.success-confirmation .icon-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  border-radius: 40px;
  background: conic-gradient(from 323deg, #558BBD, #570A50);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.success-confirmation .icon-wrapper::before {
  content: '';
  position: absolute;
  inset: 6px;
  background: #fff;
  border-radius: 40px
}

.success-confirmation .icon-check {
  width: 64px;
  height: 64px;
  position: relative;
  z-index: 1
}

.success-confirmation .icon-check svg {
  width: 100%;
  height: 100%;
  stroke: #558BBD;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.success-confirmation .main-heading {
  font-size: 42px;
  line-height: 1.2;
  color: #0a0a0a;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -.02em
}

.success-confirmation .message-text {
  font-size: 18px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 40px
}

.success-confirmation .detail-box {
  background: #F6F6F6;
  padding: 40px;
  border-radius: 12px;
  margin: 0 0 40px;
  text-align: right
}

.success-confirmation .detail-box .info-label {
  font-size: 15px;
  line-height: 1.6;
  color: #5a5a5a;
  margin: 0 0 12px
}

.success-confirmation .detail-box .info-value {
  font-size: 18px;
  line-height: 1.6;
  color: #0a0a0a;
  margin: 0;
  font-weight: 700
}

.success-confirmation .detail-box .info-value:not(:last-child) {
  margin-bottom: 20px
}

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

.success-confirmation .button-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: conic-gradient(from 323deg, #558BBD, #570A50);
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .38s ease-in-out;
  box-shadow: 0 3px 3px -1px #558bbd12
}

.success-confirmation .button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 22px -1px #558bbd14 0 8px 44px -1px #558bbd24
}

.success-confirmation .button-primary .icon-arrow {
  width: 20px;
  height: 20px;
  transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.success-confirmation .button-primary:hover .icon-arrow {
  transform: translateX(6px)
}

.success-confirmation .button-primary .icon-arrow svg {
  width: 100%;
  height: 100%;
  fill: #fff
}

.success-confirmation .button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: #fff;
  color: #558BBD;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  border: 2px solid #558BBD;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: background .35s ease-in-out, color .35s ease-in-out
}

.success-confirmation .button-secondary:hover {
  background: #558BBD;
  color: #fff
}

.success-confirmation .additional-info {
  margin: 40px 0 0;
  padding: 40px 0 0;
  border-top: 2px solid #F6F6F6
}

.success-confirmation .additional-info .info-heading {
  font-size: 18px;
  line-height: 1.2;
  color: #0a0a0a;
  margin: 0 0 20px;
  font-weight: 700
}

.success-confirmation .additional-info .info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left
}

.success-confirmation .additional-info .info-list .list-item {
  font-size: 15px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 12px;
  padding-right: 40px;
  position: relative
}

.success-confirmation .additional-info .info-list .list-item::before {
  content: '';
  position: absolute;
  right: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #558BBD;
  border-radius: 2px
}

.success-confirmation .additional-info .info-list .list-item:nth-child(2)::before {
  background: #570A50
}

.success-confirmation .additional-info .info-list .list-item:nth-child(3)::before {
  background: #558BBD
}

@media screen and (max-width: 640px) {
  .success-confirmation {
    padding: 40px 12px
  }

  .success-confirmation .confirmation-container {
    padding: 40px 20px
  }

  .success-confirmation .icon-wrapper {
    width: 96px;
    height: 96px;
    margin-bottom: 20px
  }

  .success-confirmation .icon-check {
    width: 48px;
    height: 48px
  }

  .success-confirmation .main-heading {
    font-size: 30px;
    margin-bottom: 12px
  }

  .success-confirmation .message-text {
    font-size: 15px;
    margin-bottom: 20px
  }

  .success-confirmation .detail-box {
    padding: 20px;
    margin-bottom: 20px
  }

  .success-confirmation .action-group {
    flex-direction: column;
    gap: 12px
  }

  .success-confirmation .button-primary,
  .success-confirmation .button-secondary {
    width: 100%;
    justify-content: center
  }

  .success-confirmation .additional-info {
    margin-top: 20px;
    padding-top: 20px
  }
}