* {
  box-sizing: border-box
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-family: 'Fira Sans', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  color: #1d1d1d;
  background: #fff
}

::selection {
  background: #000;
  color: #fff
}

.hd-shell {
  background: linear-gradient(135deg, #fff 0%, #F9F9F9 100%);
  border-bottom: 3px solid #EA9060;
  padding: 16px 0;
  position: relative
}

.hd-shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #EA9060 20%, #224349 50%, #EA9060 80%, transparent 100%);
  opacity: .4
}

.hd-hold {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px
}

.hd-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 40px
}

.logo-frame {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0
}

.logo-box {
  width: 62px;
  height: 62px;
  border: 3px solid #224349;
  border-radius: 10px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 4px 25px -2px #22434914;
  transition: transform .12s ease-out, box-shadow .12s ease-out
}

.logo-box:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 44px -2px #22434921
}

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

.hd-trust {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.trust-label {
  font-size: 13px;
  font-weight: 500;
  color: #224349;
  letter-spacing: -.01em;
  text-transform: uppercase
}

.trust-value {
  font-size: 16px;
  font-weight: 700;
  color: #EA9060;
  letter-spacing: -.02em
}

.hd-contact {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #224349;
  text-decoration: none;
  transition: color .1s ease-out
}

.contact-item:hover {
  color: #EA9060
}

.contact-item:focus {
  outline: 2px solid #EA9060;
  outline-offset: 4px;
  border-radius: 6px;
  transform: scale(1.02)
}

.contact-ico {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center
}

.contact-ico svg {
  width: 100%;
  height: 100%;
  fill: currentColor
}

.nav-primary {
  background: #fff;
  border: 1px solid #2243491f;
  border-radius: 44px;
  padding: 8px 16px;
  box-shadow: 0 3px 4px -2px #2243490f 0 4px 25px -2px #ea906014
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap
}

.nav-item {
  position: relative
}

.nav-link {
  display: block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 500;
  color: #224349;
  text-decoration: none;
  border-radius: 44px;
  transition: background .1s ease-out, color .1s ease-out, width .12s ease-out;
  white-space: nowrap;
  letter-spacing: -.01em;
  position: relative
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: #EA9060;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .15s ease-out
}

.nav-link:hover {
  background: linear-gradient(135deg, #ea906014 0%, #f9f9f999 100%);
  color: #EA9060
}

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

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

.nav-link.active {
  background: linear-gradient(135deg, #EA9060 0%, #224349 100%);
  color: #fff
}

.nav-link.active::after {
  display: none
}

.ftr-shell {
  background: linear-gradient(180deg, #224349 0%, #1a3439 100%);
  color: #fff;
  padding: 80px 0 40px;
  position: relative;
  margin-top: 80px
}

.ftr-shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #EA9060 0%, #224349 50%, #EA9060 100%)
}

.ftr-hold {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px
}

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

.ftr-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ftr-heading {
  font-size: 16px;
  font-weight: 700;
  color: #EA9060;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
  border-bottom: 2px solid #EA9060;
  padding-bottom: 8px;
  display: inline-block
}

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

.ftr-nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #ffffffd9;
  text-decoration: none;
  transition: color .1s ease-out, padding-left .12s ease-out;
  display: block;
  position: relative;
  padding-left: 0
}

.ftr-nav-link::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #EA9060;
  border-radius: 6px;
  opacity: 0;
  transition: opacity .1s ease-out, left .12s ease-out
}

.ftr-nav-link:hover {
  color: #EA9060;
  padding-left: 16px
}

.ftr-nav-link:hover::before {
  opacity: 1;
  left: 0
}

.ftr-nav-link:focus {
  outline: 2px solid #EA9060;
  outline-offset: 4px;
  border-radius: 6px;
  transform: scale(1.02)
}

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

.ftr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffd9
}

.ftr-contact-ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center
}

.ftr-contact-ico svg {
  width: 100%;
  height: 100%;
  fill: #EA9060
}

.ftr-contact-link {
  color: #ffffffd9;
  text-decoration: none;
  transition: color .1s ease-out
}

.ftr-contact-link:hover {
  color: #EA9060;
  text-decoration: underline;
  text-decoration-color: #EA9060;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px
}

.ftr-contact-link:focus {
  outline: 2px solid #EA9060;
  outline-offset: 4px;
  border-radius: 6px;
  transform: scale(1.02)
}

.ftr-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid #ea906033
}

.ftr-logo-box {
  width: 58px;
  height: 58px;
  border: 2px solid #EA9060;
  border-radius: 10px;
  padding: 8px;
  background: #ffffff0d;
  box-shadow: 0 4px 25px -2px #ea906014;
  transition: transform .12s ease-out, box-shadow .12s ease-out
}

.ftr-logo-box:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 44px -2px #ea906021
}

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

.ftr-copy {
  font-size: 13px;
  font-weight: 400;
  color: #fff9;
  text-align: center;
  letter-spacing: .02em
}

@media (max-width: 1024px) {
  .hd-top {
    flex-wrap: wrap
  }

  .hd-contact {
    width: 100%;
    justify-content: center;
    margin-left: 0
  }

  .nav-list {
    gap: 4px
  }

  .nav-link {
    padding: 16px
  }

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

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

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

  .hd-top {
    gap: 16px
  }

  .logo-frame {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }

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

  .nav-primary {
    border-radius: 10px;
    padding: 8px
  }

  .nav-list {
    flex-direction: column;
    width: 100%
  }

  .nav-item {
    width: 100%
  }

  .nav-link {
    width: 100%;
    text-align: center;
    border-radius: 10px
  }

  .ftr-hold {
    padding: 0 16px
  }

  .ftr-shell {
    padding: 40px 0;
    margin-top: 40px
  }

  .ftr-grid {
    margin-bottom: 40px
  }

  .ftr-bottom {
    gap: 16px;
    padding-top: 16px
  }
}

@media (max-width: 480px) {
  .hd-hold {
    padding: 0 8px
  }

  .logo-box {
    width: 52px;
    height: 52px
  }

  .trust-label {
    font-size: 13px
  }

  .trust-value {
    font-size: 13px
  }

  .contact-item {
    font-size: 13px
  }

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

  .ftr-hold {
    padding: 0 8px
  }

  .ftr-heading {
    font-size: 13px
  }

  .ftr-nav-link {
    font-size: 13px
  }

  .ftr-contact-item {
    font-size: 13px
  }

  .ftr-copy {
    font-size: 13px
  }
}

.terms-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  background: #fff
}

.terms-inner h1 {
  font-size: 52px;
  line-height: 1.2;
  color: #224349;
  margin: 0 0 40px
}

.terms-inner h2 {
  font-size: 28px;
  line-height: 1.2;
  color: #224349;
  margin: 80px 0 16px
}

.terms-inner h3 {
  font-size: 16px;
  line-height: 1.55;
  color: #224349;
  font-weight: 600;
  margin: 40px 0 16px
}

.terms-inner p {
  font-size: 16px;
  line-height: 1.8;
  color: #224349;
  margin: 0 0 16px
}

.terms-inner ul {
  font-size: 16px;
  line-height: 1.8;
  color: #224349;
  margin: 0 0 16px;
  padding: 0 0 0 40px;
  list-style-type: disc
}

.terms-inner ol {
  font-size: 16px;
  line-height: 1.8;
  color: #224349;
  margin: 0 0 16px;
  padding: 0 0 0 40px;
  list-style-type: decimal
}

.terms-inner li {
  margin: 0 0 8px
}

.terms-inner strong,
.terms-inner b {
  font-weight: 600;
  color: #224349
}

.terms-inner em,
.terms-inner i {
  font-style: italic
}

.terms-inner a {
  color: #EA9060;
  text-decoration: underline;
  transition: opacity .12s ease-out
}

.terms-inner a:hover {
  opacity: .7
}

.terms-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-size: 16px;
  line-height: 1.55;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 4px -2px #2243490f 0 4px 25px -2px #22434914
}

.terms-inner thead {
  background: #F9F9F9
}

.terms-inner th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: #224349;
  border-bottom: 2px solid #EA9060
}

.terms-inner td {
  padding: 16px;
  color: #224349;
  border-bottom: 1px solid #F9F9F9
}

.terms-inner tbody tr:last-child td {
  border-bottom: none
}

.terms-inner tbody tr:hover {
  background: #F9F9F9;
  transition: background .1s linear
}

.terms-inner hr {
  border: none;
  height: 2px;
  background: #F9F9F9;
  margin: 80px 0
}

@media (max-width: 1024px) {
  .terms-inner {
    padding: 40px 16px
  }

  .terms-inner h1 {
    font-size: 28px;
    margin: 0 0 16px
  }

  .terms-inner h2 {
    font-size: 28px;
    margin: 40px 0 16px
  }

  .terms-inner hr {
    margin: 40px 0
  }
}

@media (max-width: 768px) {

  .terms-inner ul,
  .terms-inner ol {
    padding: 0 0 0 16px
  }

  .terms-inner table {
    font-size: 13px;
    margin: 16px 0
  }

  .terms-inner th,
  .terms-inner td {
    padding: 8px
  }
}

.svc-dtl {
  background: #FFF;
  color: #1a1818;
  max-width: 1400px;
  margin: 0 auto
}

.svc-dtl__hdng {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px;
  overflow: visible
}

.svc-dtl__hdng-img {
  width: 100%;
  max-width: 900px;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px
}

.svc-dtl__hdng-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, transparent, #224349b8);
  pointer-events: none
}

.svc-dtl__hdng-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: svc-dtl-scale .8s ease-out forwards;
  transform: scale(0.97)
}

@keyframes svc-dtl-scale {
  to {
    transform: scale(1)
  }
}

.svc-dtl__hdng-txt {
  text-align: center;
  max-width: 780px;
  position: relative
}

.svc-dtl__hdng-txt::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #EA9060;
  border-radius: 50%;
  box-shadow: 20px 0 0 #EA9060, -20px 0 0 #EA9060, 40px 0 0 #ea906080 -40px 0 0 #ea906080
}

.svc-dtl__hdng-ttl {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 16px;
  color: #224349
}

.svc-dtl__hdng-lst {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.svc-dtl__hdng-lst li {
  font-size: 16px;
  line-height: 1.55;
  color: #4a4a4a;
  position: relative;
  padding-left: 24px
}

.svc-dtl__hdng-lst li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #EA9060
}

.svc-dtl__info-wrap {
  background: linear-gradient(173deg, #f9f9f9d9, #ea906014), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23F9F9F9" width="100" height="100"/><circle cx="10" cy="10" r="1" fill="%23224349" opacity="0.03"/><circle cx="50" cy="50" r="1" fill="%23224349" opacity="0.03"/><circle cx="90" cy="90" r="1" fill="%23224349" opacity="0.03"/></svg>');
  padding: 80px 16px;
  position: relative
}

.svc-dtl__info-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  height: 1px;
  background: linear-gradient(to right, #EA9060, transparent)
}

.svc-dtl__info-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative
}

.svc-dtl__info-grid::after {
  content: '';
  position: absolute;
  top: 80px;
  right: 300px;
  width: 2px;
  height: 120px;
  background: repeating-linear-gradient(to bottom, #224349 0, #224349 8px, transparent 8px, transparent 16px);
  opacity: .15;
  pointer-events: none
}

.svc-dtl__main-col {
  position: relative
}

.svc-dtl__prgm-blk {
  background: #FFF;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 3px 4px -2px #ea90600f 0 4px 25px -2px #ea906014 0 8px 44px -2px #ea906021;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden
}

.svc-dtl__prgm-blk::before {
  content: '01';
  position: absolute;
  top: -20px;
  right: 40px;
  font-size: 180px;
  font-weight: 700;
  color: #F9F9F9;
  line-height: 1;
  pointer-events: none;
  z-index: 0
}

.svc-dtl__prgm-blk>* {
  position: relative;
  z-index: 1
}

.svc-dtl__prgm-blk h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  color: #224349
}

.svc-dtl__prgm-blk h3 {
  font-size: 16px;
  line-height: 1.55;
  margin: 16px 0 8px;
  color: #224349;
  font-weight: 600
}

.svc-dtl__prgm-blk p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
  color: #3a3a3a
}

.svc-dtl__prgm-blk p:first-of-type {
  background: #f9f9f999;
  padding: 16px;
  border-radius: 6px;
  border-left: 3px solid #EA9060
}

.svc-dtl__prgm-blk ol {
  margin: 16px 0;
  padding-left: 24px;
  color: #3a3a3a
}

.svc-dtl__prgm-blk li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px
}

.svc-dtl__prgm-blk em {
  font-style: italic;
  color: #EA9060
}

.svc-dtl__prgm-blk figure {
  margin: 16px 0;
  padding: 16px;
  background: #F9F9F9;
  border-radius: 6px
}

.svc-dtl__prgm-blk figcaption {
  font-size: 13px;
  line-height: 1.55;
  color: #6a6a6a;
  margin-top: 8px
}

.svc-dtl__prgm-blk details {
  margin: 16px 0;
  border: 1px solid #F9F9F9;
  border-radius: 6px;
  overflow: hidden
}

.svc-dtl__prgm-blk summary {
  padding: 16px;
  cursor: pointer;
  background: #F9F9F9;
  font-size: 16px;
  font-weight: 600;
  color: #224349;
  transition: background .12s ease-out
}

.svc-dtl__prgm-blk summary:hover {
  background: #ea90601a
}

.svc-dtl__prgm-blk details[open] summary {
  border-bottom: 1px solid #F9F9F9
}

.svc-dtl__prgm-blk details> :not(summary) {
  padding: 16px
}

.svc-dtl__dsc-blk {
  background: #FFF;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 3px 4px -2px #2243490f 0 4px 25px -2px #22434914 0 8px 44px -2px #22434921;
  position: relative;
  overflow: hidden
}

.svc-dtl__dsc-blk::before {
  content: '02';
  position: absolute;
  top: -20px;
  left: 40px;
  font-size: 180px;
  font-weight: 700;
  color: #F9F9F9;
  line-height: 1;
  pointer-events: none;
  z-index: 0
}

.svc-dtl__dsc-blk>* {
  position: relative;
  z-index: 1
}

.svc-dtl__dsc-blk h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  color: #224349
}

.svc-dtl__dsc-blk h3 {
  font-size: 16px;
  line-height: 1.55;
  margin: 16px 0 8px;
  color: #224349;
  font-weight: 600
}

.svc-dtl__dsc-blk p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
  color: #3a3a3a
}

.svc-dtl__dsc-blk strong {
  font-weight: 600;
  color: #224349
}

.svc-dtl__dsc-blk ol {
  margin: 16px 0;
  padding-left: 24px;
  color: #3a3a3a
}

.svc-dtl__dsc-blk li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px
}

.svc-dtl__dsc-blk dl {
  margin: 16px 0;
  border-left: 3px solid #EA9060;
  padding-left: 16px
}

.svc-dtl__dsc-blk dt {
  font-size: 16px;
  font-weight: 600;
  color: #224349;
  margin-bottom: 4px
}

.svc-dtl__dsc-blk dd {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a3a;
  margin: 0 0 16px
}

.svc-dtl__side-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.svc-dtl__prc-crd {
  background: #FFF;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 3px 4px -2px #ea90600f 0 4px 25px -2px #ea906014 0 8px 44px -2px #ea906021;
  position: sticky;
  top: 16px
}

.svc-dtl__prc-lbl {
  font-size: 13px;
  line-height: 1.55;
  color: #6a6a6a;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: .05em
}

.svc-dtl__prc-val {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
  color: #224349;
  margin: 0 0 16px
}

.svc-dtl__prc-val span {
  font-size: 28px;
  color: #EA9060
}

.svc-dtl__sts-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #F9F9F9
}

.svc-dtl__sts-itm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0
}

.svc-dtl__sts-itm-lbl {
  font-size: 13px;
  line-height: 1.55;
  color: #6a6a6a;
  display: flex;
  align-items: center;
  gap: 8px
}

.svc-dtl__sts-itm-lbl::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #EA9060;
  border-radius: 50%
}

.svc-dtl__sts-itm-val {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
  color: #224349
}

.svc-dtl__cta-btn {
  width: 100%;
  padding: 16px 40px;
  background: linear-gradient(173deg, #EA9060, #d17a4f);
  background-size: 100% 100%;
  border: none;
  border-radius: 44px;
  font-size: 16px;
  font-weight: 600;
  color: #FFF;
  cursor: pointer;
  transition: transform .1s ease-out, box-shadow .1s ease-out, background-size .12s ease-out;
  box-shadow: 0 3px 4px -2px #ea90600f 0 4px 25px -2px #ea906014;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.svc-dtl__cta-btn::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid #FFF;
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
  transition: transform .12s ease-out
}

.svc-dtl__cta-btn:hover {
  background-size: 110% 100%;
  box-shadow: 0 4px 25px -2px #ea90602e 0 8px 44px -2px #ea906038
}

.svc-dtl__cta-btn:hover::after {
  transform: rotate(45deg) translateX(2px)
}

.svc-dtl__cta-btn:active {
  transform: translateY(1px)
}

.svc-dtl__pros-cons {
  background: #FFF;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 3px 4px -2px #2243490f 0 4px 25px -2px #22434914;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px
}

.svc-dtl__pros,
.svc-dtl__cons {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.svc-dtl__pros-ttl,
.svc-dtl__cons-ttl {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px
}

.svc-dtl__pros-ttl {
  color: #224349
}

.svc-dtl__pros-ttl::before {
  content: '';
  width: 18px;
  height: 18px;
  background: #224349;
  border-radius: 50%;
  position: relative;
  background: #224349;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat
}

.svc-dtl__cons-ttl {
  color: #EA9060
}

.svc-dtl__cons-ttl::before {
  content: '';
  width: 18px;
  height: 18px;
  background: #EA9060;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg>') center/contain no-repeat
}

.svc-dtl__pros ul,
.svc-dtl__cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.svc-dtl__pros li,
.svc-dtl__cons li {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a3a;
  padding-left: 24px;
  position: relative
}

.svc-dtl__pros li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #22434926;
  border-radius: 50%
}

.svc-dtl__cons li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #ea906026;
  border-radius: 50%
}

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

  .svc-dtl__side-col {
    order: -1
  }

  .svc-dtl__prc-crd {
    position: static
  }

  .svc-dtl__pros-cons {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .svc-dtl__info-grid::after {
    display: none
  }
}

@media (max-width: 768px) {
  .svc-dtl__hdng-ttl {
    font-size: 28px
  }

  .svc-dtl__hdng-img {
    height: 200px
  }

  .svc-dtl__prgm-blk,
  .svc-dtl__dsc-blk,
  .svc-dtl__prc-crd,
  .svc-dtl__pros-cons {
    padding: 16px
  }

  .svc-dtl__info-wrap {
    padding: 40px 16px
  }

  .svc-dtl__prc-val {
    font-size: 28px
  }

  .svc-dtl__prc-val span {
    font-size: 16px
  }
}

@media (max-width: 480px) {
  .svc-dtl__hdng {
    padding: 16px
  }

  .svc-dtl__hdng-ttl {
    font-size: 28px
  }

  .svc-dtl__hdng-img {
    height: 180px;
    margin-bottom: 16px
  }
}

@media print {
  .svc-dtl {
    max-width: 100%
  }

  .svc-dtl__hdng-img {
    height: 160px;
    page-break-inside: avoid
  }

  .svc-dtl__info-wrap {
    background: #FFF;
    padding: 16px 0
  }

  .svc-dtl__info-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .svc-dtl__info-grid::after {
    display: none
  }

  .svc-dtl__prgm-blk,
  .svc-dtl__dsc-blk,
  .svc-dtl__prc-crd,
  .svc-dtl__pros-cons {
    box-shadow: none;
    border: 1px solid #e0e0e0;
    padding: 16px;
    page-break-inside: avoid
  }

  .svc-dtl__prgm-blk::before,
  .svc-dtl__dsc-blk::before {
    display: none
  }

  .svc-dtl__cta-btn {
    display: none
  }

  .svc-dtl__side-col {
    order: 0
  }

  .svc-dtl__pros-cons {
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }
}

.rdmp {
  background: #fff;
  color: #224349
}

.rdmp__ttl {
  background: #224349;
  color: #F9F9F9;
  padding: 40px 16px;
  position: relative;
  overflow: hidden
}

.rdmp__ttl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, #ea906014 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none
}

.rdmp__ttl-ctn {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.rdmp__eyebrow {
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #EA9060;
  margin: 0 0 8px
}

.rdmp__ttl-hdg {
  font-size: 52px;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -.02em
}

.rdmp__phases {
  padding: 80px 16px;
  background: linear-gradient(173deg, #F9F9F9 0%, #fff 100%), radial-gradient(ellipse at 70% 30%, #ea90600a, transparent);
  position: relative
}

.rdmp__phases-ctn {
  max-width: 1400px;
  margin: 0 auto
}

.rdmp__phases-hdg {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 40px;
  letter-spacing: -.01em
}

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

.rdmp__phase {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 25px -2px #22434914;
  position: relative;
  transition: transform .12s ease-out, box-shadow .12s ease-out
}

.rdmp__phase:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 44px -2px #22434921
}

.rdmp__phase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(173deg, #EA9060, #224349);
  border-radius: 10px 0 0 10px;
  opacity: 0;
  transition: opacity .1s linear
}

.rdmp__phase:hover::before {
  opacity: 1
}

.rdmp__phase-num {
  font-size: 66px;
  line-height: 1;
  color: #ea90601f;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -.03em
}

.rdmp__phase-ttl {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 16px;
  font-weight: 600;
  color: #224349
}

.rdmp__phase-txt {
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
  color: #224349
}

.rdmp__timeline {
  padding: 80px 16px;
  background: #fff;
  position: relative
}

.rdmp__timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #F9F9F9;
  z-index: 0
}

.rdmp__timeline-ctn {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.rdmp__timeline-hdg {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 40px;
  letter-spacing: -.01em
}

.rdmp__timeline-grd {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.rdmp__timeline-row {
  display: flex;
  gap: 16px;
  align-items: stretch
}

.rdmp__timeline-qtr {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 3px 4px -2px #2243490f;
  position: relative;
  overflow: hidden;
  transition: box-shadow .15s ease-out
}

.rdmp__timeline-qtr:hover {
  box-shadow: 0 8px 44px -2px #22434921
}

.rdmp__timeline-qtr::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(173deg, #ea906014, #22434914);
  border-radius: 44px;
  pointer-events: none;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  transition: clip-path .12s ease-out
}

.rdmp__timeline-qtr:hover::after {
  clip-path: polygon(0 80%, 100% 0, 100% 100%)
}

.rdmp__timeline-lbl {
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 8px;
  color: #EA9060;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

.rdmp__timeline-subhdg {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 16px;
  font-weight: 600;
  color: #224349
}

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

.rdmp__timeline-itm {
  font-size: 13px;
  line-height: 1.8;
  color: #224349;
  padding-left: 16px;
  position: relative
}

.rdmp__timeline-itm::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 0;
  height: 0;
  border-left: 4px solid #EA9060;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent
}

.rdmp__roles {
  padding: 80px 16px;
  background: #fff
}

.rdmp__roles-ctn {
  max-width: 1400px;
  margin: 0 auto
}

.rdmp__roles-hdg {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 40px;
  letter-spacing: -.01em
}

.rdmp__roles-grd {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px
}

.rdmp__roles-main {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.rdmp__role-crd {
  background: #F9F9F9;
  padding: 40px;
  border-radius: 10px;
  position: relative;
  overflow: hidden
}

.rdmp__role-crd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #EA9060, transparent)
}

.rdmp__role-ttl {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 16px;
  font-weight: 600;
  color: #224349
}

.rdmp__role-txt {
  font-size: 13px;
  line-height: 1.8;
  margin: 0 0 16px;
  color: #224349
}

.rdmp__role-txt:first-of-type {
  background: #ea90600f;
  padding: 16px;
  border-radius: 6px;
  border-left: 3px solid #EA9060
}

.rdmp__role-txt:last-of-type {
  margin: 0
}

.rdmp__roles-side {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.rdmp__roles-img {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 25px -2px #22434914;
  position: relative
}

.rdmp__roles-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .15s ease-out
}

.rdmp__roles-img:hover img {
  transform: scale(1.05)
}

.rdmp__roles-metric {
  background: #224349;
  color: #F9F9F9;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: rdmp-clr-shift .8s ease-out
}

@keyframes rdmp-clr-shift {
  0% {
    background: #EA9060
  }

  100% {
    background: #224349
  }
}

.rdmp__roles-metric::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: #ea906014;
  border-radius: 44px;
  pointer-events: none
}

.rdmp__metric-val {
  font-size: 52px;
  line-height: 1.2;
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: -.02em;
  position: relative;
  z-index: 1
}

.rdmp__metric-lbl {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .05em;
  position: relative;
  z-index: 1;
  opacity: .9
}

.rdmp__divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 40px 0
}

.rdmp__divider-arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #EA9060;
  transform: rotate(90deg);
  opacity: .3;
  transition: opacity .1s linear
}

.rdmp__divider-arrow:hover {
  opacity: 1
}

@media (max-width: 1024px) {
  .rdmp__ttl-hdg {
    font-size: 28px
  }

  .rdmp__phases-grd {
    grid-template-columns: 1fr
  }

  .rdmp__timeline-row {
    flex-direction: column
  }

  .rdmp__roles-grd {
    grid-template-columns: 1fr
  }

  .rdmp__roles-side {
    flex-direction: row
  }

  .rdmp__roles-img {
    height: 300px
  }
}

@media (max-width: 768px) {
  .rdmp__ttl {
    padding: 40px 16px
  }

  .rdmp__phases {
    padding: 40px 16px
  }

  .rdmp__timeline {
    padding: 40px 16px
  }

  .rdmp__roles {
    padding: 40px 16px
  }

  .rdmp__phase {
    padding: 16px
  }

  .rdmp__timeline-qtr {
    padding: 16px
  }

  .rdmp__role-crd {
    padding: 16px
  }

  .rdmp__roles-metric {
    padding: 16px
  }

  .rdmp__roles-side {
    flex-direction: column
  }
}

@media (max-width: 480px) {
  .rdmp__ttl-hdg {
    font-size: 28px
  }

  .rdmp__phases-hdg {
    font-size: 16px
  }

  .rdmp__timeline-hdg {
    font-size: 16px
  }

  .rdmp__roles-hdg {
    font-size: 16px
  }

  .rdmp__phase-num {
    font-size: 52px
  }

  .rdmp__metric-val {
    font-size: 28px
  }
}

.cntct {
  max-width: 1400px;
  margin: 0 auto;
  background: #fff
}

.cntct__intro {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 80px 40px;
  background: linear-gradient(173deg, #fff 0%, #F9F9F9 100%), radial-gradient(ellipse at 30% 40%, #ea90600a 0%, transparent 70%);
  overflow: hidden
}

.cntct__intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(30deg, transparent 48%, #ea906005 48%, #ea906005 52%, transparent 52%), linear-gradient(150deg, transparent 48%, #ea906005 48%, #ea906005 52%, transparent 52%);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1
}

.cntct__txt-zone {
  position: relative;
  flex: 1 1 65%;
  padding: 40px 80px 40px 40px;
  z-index: 2
}

.cntct__img-zone {
  position: relative;
  flex: 1 1 35%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2
}

.cntct__img-zone::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 80px 80px 0;
  border-color: transparent #ea90601f transparent transparent
}

.cntct__img-zone::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 80px 80px;
  border-color: transparent transparent #22434914
}

.cntct__visual {
  width: 100%;
  max-width: 400px;
  height: 480px;
  background: linear-gradient(173deg, #224349 0%, #EA9060 100%);
  border-radius: 10px;
  box-shadow: 0 8px 44px -2px #ea906021;
  position: relative;
  overflow: hidden
}

.cntct__visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: #ffffff1a;
  border-radius: 50%
}

.cntct__visual::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  background: #ffffff26;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%)
}

.cntct__headline {
  font-size: 52px;
  line-height: 1.2;
  color: #224349;
  margin: 0 0 40px;
  letter-spacing: -.02em
}

.cntct__headline-break {
  display: block
}

.cntct__desc {
  font-size: 16px;
  line-height: 1.55;
  color: #224349;
  margin: 0;
  background: #f9f9f999;
  padding: 16px;
  border-radius: 6px
}

.cntct__form-wrapper {
  padding: 80px 40px;
  background: #fff;
  position: relative
}

.cntct__form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-image: radial-gradient(circle, #ea90604d 1px, transparent 1px), radial-gradient(circle, #2243494d 1px, transparent 1px);
  background-size: 16px 2px, 16px 2px;
  background-position: 0 0, 8px 0;
  background-repeat: repeat-x
}

.cntct__form-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px
}

.cntct__form-header {
  text-align: center;
  position: relative
}

.cntct__form-header::before {
  content: '01';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 120px;
  line-height: 1;
  color: #ea90600f;
  font-weight: 700;
  z-index: 0;
  pointer-events: none
}

.cntct__form-title {
  font-size: 52px;
  line-height: 1.2;
  color: #224349;
  margin: 0 0 16px;
  letter-spacing: -.02em;
  position: relative;
  z-index: 1
}

.cntct__form-subtitle {
  font-size: 16px;
  line-height: 1.55;
  color: #224349;
  margin: 0;
  opacity: .8
}

.cntct__form {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.cntct__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px
}

.cntct__field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cntct__field.wide {
  grid-column: 1 / -1
}

.cntct__label {
  font-size: 13px;
  line-height: 1.2;
  color: #224349;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

.cntct__input {
  padding: 16px;
  font-size: 16px;
  line-height: 1.55;
  color: #224349;
  background: #F9F9F9;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: border-color .12s ease-out, background .12s ease-out, box-shadow .12s ease-out;
  outline: none
}

.cntct__input::placeholder {
  color: #22434966;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.cntct__input:focus {
  background: #fff;
  border-color: #EA9060;
  box-shadow: 0 4px 25px -2px #ea906014
}

.cntct__input:hover:not(:focus) {
  background: #f9f9f9b3
}

.cntct__size-selector {
  display: flex;
  flex-direction: column;
  gap: 16px
}

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

.cntct__size-option {
  position: relative
}

.cntct__size-input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.cntct__size-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background: #F9F9F9;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .1s ease-out, background .1s ease-out, transform .1s ease-out, box-shadow .1s ease-out;
  text-align: center
}

.cntct__size-label:hover {
  background: #f9f9f9b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 25px -2px #ea906014
}

.cntct__size-input:checked+.cntct__size-label {
  background: #fff;
  border-color: #EA9060;
  box-shadow: 0 4px 25px -2px #ea906014
}

.cntct__size-icon {
  width: 48px;
  height: 48px;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(173deg, #ea90601a 0%, #2243491a 100%);
  border-radius: 44px;
  position: relative
}

.cntct__size-icon::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: #EA9060;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transition: transform .12s ease-out
}

.cntct__size-input:checked+.cntct__size-label .cntct__size-icon::before {
  transform: rotate(45deg)
}

.cntct__size-text {
  font-size: 16px;
  line-height: 1.2;
  color: #224349;
  font-weight: 600
}

.cntct__size-desc {
  font-size: 13px;
  line-height: 1.2;
  color: #22434999;
  margin: 4px 0 0
}

.cntct__privacy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #f9f9f966;
  border-radius: 6px
}

.cntct__privacy-checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  cursor: pointer;
  accent-color: #EA9060
}

.cntct__privacy-label {
  font-size: 13px;
  line-height: 1.55;
  color: #224349;
  cursor: pointer
}

.cntct__privacy-link {
  color: #EA9060;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .1s ease-out
}

.cntct__privacy-link:hover {
  border-bottom-color: #EA9060
}

.cntct__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px
}

.cntct__submit {
  padding: 16px 80px;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(173deg, #EA9060 0%, #224349 100%);
  border: none;
  border-radius: 44px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .12s ease-out, box-shadow .12s ease-out, padding .12s ease-out;
  box-shadow: 0 4px 25px -2px #ea906014;
  position: relative;
  overflow: hidden
}

.cntct__submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: #fff3;
  border-radius: 50%;
  transition: width .15s ease-out, height .15s ease-out
}

.cntct__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 44px -2px #ea906021;
  padding: 16px 100px
}

.cntct__submit:hover::before {
  width: 300px;
  height: 300px
}

.cntct__submit:active {
  transform: translateY(0)
}

.cntct__info-cards {
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 40px;
  align-items: center;
  margin: 80px 0 0
}

.cntct__info-card {
  padding: 40px;
  background: #F9F9F9;
  border-radius: 10px;
  text-align: center;
  transition: transform .12s ease-out, box-shadow .12s ease-out;
  position: relative;
  overflow: hidden
}

.cntct__info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #EA9060 0%, #224349 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .15s ease-out
}

.cntct__info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 44px -2px #ea906021
}

.cntct__info-card:hover::before {
  transform: scaleX(1)
}

.cntct__info-card.central {
  background: linear-gradient(173deg, #ea906014 0%, #22434914 100%);
  padding: 80px 40px;
  box-shadow: 0 4px 25px -2px #ea906014
}

.cntct__info-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(173deg, #EA9060 0%, #224349 100%);
  border-radius: 44px;
  position: relative
}

.cntct__info-icon::before {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  background: #fff;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%)
}

.cntct__info-card:nth-child(2) .cntct__info-icon::before {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%)
}

.cntct__info-card:nth-child(3) .cntct__info-icon::before {
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%)
}

.cntct__info-title {
  font-size: 16px;
  line-height: 1.2;
  color: #224349;
  margin: 0 0 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

.cntct__info-value {
  font-size: 16px;
  line-height: 1.55;
  color: #224349;
  margin: 0
}

.cntct__info-link {
  color: #EA9060;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .1s ease-out, color .1s ease-out;
  display: inline-block
}

.cntct__info-link:hover {
  border-bottom-color: #EA9060;
  color: #224349;
  background: #EA9060
}

@media (max-width: 1024px) {
  .cntct__intro {
    flex-direction: column;
    padding: 40px
  }

  .cntct__txt-zone {
    padding: 40px
  }

  .cntct__img-zone {
    padding: 40px
  }

  .cntct__visual {
    max-width: 100%;
    height: 400px
  }

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

  .cntct__size-options {
    grid-template-columns: 1fr
  }

  .cntct__info-cards {
    grid-template-columns: 1fr
  }

  .cntct__info-card.central {
    padding: 40px
  }
}

@media (max-width: 768px) {
  .cntct__intro {
    padding: 40px 16px
  }

  .cntct__txt-zone {
    padding: 16px
  }

  .cntct__img-zone {
    padding: 16px
  }

  .cntct__headline {
    font-size: 28px
  }

  .cntct__form-wrapper {
    padding: 40px 16px
  }

  .cntct__form-title {
    font-size: 28px
  }

  .cntct__form-header::before {
    font-size: 80px;
    top: -20px
  }

  .cntct__submit {
    padding: 16px 40px
  }

  .cntct__submit:hover {
    padding: 16px 60px
  }

  .cntct__actions {
    flex-direction: column
  }
}

@media (max-width: 480px) {
  .cntct__intro {
    padding: 40px 16px
  }

  .cntct__visual {
    height: 300px
  }

  .cntct__headline {
    font-size: 28px;
    margin: 0 0 16px
  }

  .cntct__form-wrapper {
    padding: 40px 16px
  }

  .cntct__form-container {
    gap: 16px
  }

  .cntct__form {
    gap: 16px
  }

  .cntct__size-label {
    padding: 16px
  }

  .cntct__info-cards {
    margin: 40px 0 0;
    gap: 16px
  }

  .cntct__info-card {
    padding: 16px
  }
}

@keyframes cntct-drop {
  from {
    opacity: 0;
    transform: translateY(-40px)
  }

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

.cntct__intro {
  animation: cntct-drop .8s ease-out
}

.cntct__form-wrapper {
  animation: cntct-drop 1s ease-out .2s both
}

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

.frnt__opener {
  position: relative;
  background: linear-gradient(173deg, #EA9060 0%, #F9F9F9 48%, #224349 100%), radial-gradient(ellipse at 73% 28%, #ea906066 0%, transparent 62%);
  padding: 80px 40px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center
}

.frnt__opener::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: #fff;
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%)
}

.frnt__opener-txt {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px
}

.frnt__opener-hd {
  font-size: 66px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  text-shadow: 0 3px 4px #2243492e;
  animation: frnt-drop .9s ease-out
}

@keyframes frnt-drop {
  0% {
    opacity: 0;
    transform: translateY(-48px)
  }

  70% {
    transform: translateY(3px)
  }

  85% {
    transform: translateY(-1px)
  }

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

.frnt__cond {
  padding: 80px 40px;
  background: #fff;
  position: relative;
  margin-left: 80px
}

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

.frnt__cond-visual {
  position: relative
}

.frnt__cond-visual::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 180px;
  height: 180px;
  border: 2px solid #EA9060;
  border-radius: 44px;
  opacity: .3;
  z-index: 1
}

.frnt__cond-visual::after {
  content: '';
  position: absolute;
  bottom: 24px;
  left: -24px;
  width: 140px;
  height: 140px;
  background: linear-gradient(173deg, #ea906014 0%, #22434914 100%);
  border-radius: 10px;
  z-index: 1
}

.frnt__cond-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 44px -2px #22434921
}

.frnt__cond-txt {
  padding: 40px 0
}

.frnt__cond-hd {
  font-size: 52px;
  line-height: 1.2;
  color: #224349;
  margin: 0 0 40px;
  position: relative
}

.frnt__cond-hd::before {
  content: '01';
  position: absolute;
  font-size: 140px;
  line-height: 1;
  color: #F9F9F9;
  top: -32px;
  left: -8px;
  z-index: -1;
  font-weight: 700
}

.frnt__cond-p {
  font-size: 16px;
  line-height: 1.8;
  color: #224349;
  margin: 0 0 16px
}

.frnt__cond-p:first-of-type {
  background: linear-gradient(173deg, #ea90600f 0%, #f9f9f966 100%);
  padding: 16px;
  border-radius: 6px;
  border-left: 4px solid #EA9060
}

.frnt__cond-link {
  color: #224349;
  text-decoration: underline;
  text-decoration-color: #EA9060;
  text-underline-offset: 3px;
  transition: background-color .12s ease-out, color .12s ease-out;
  padding: 0 4px;
  border-radius: 6px
}

.frnt__cond-link:hover {
  background-color: #EA9060;
  color: #fff;
  text-decoration: none
}

.frnt__divider-1 {
  text-align: center;
  padding: 40px;
  position: relative
}

.frnt__divider-1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #EA9060 50%, transparent 100%);
  opacity: .3
}

.frnt__divider-shape {
  width: 16px;
  height: 16px;
  background: #224349;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  transform: rotate(45deg);
  box-shadow: 0 3px 4px -2px #2243490f
}

.frnt__worth {
  padding: 80px 40px;
  background: #224349;
  position: relative;
  margin-right: 80px
}

.frnt__worth-inner {
  max-width: 1120px;
  margin: 0 auto
}

.frnt__worth-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: center
}

.frnt__worth-hd {
  font-size: 52px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 40px;
  position: relative
}

.frnt__worth-hd::before {
  content: '02';
  position: absolute;
  font-size: 140px;
  line-height: 1;
  color: #ea90601f;
  top: -32px;
  left: -8px;
  z-index: 0;
  font-weight: 700
}

.frnt__worth-hd span {
  position: relative;
  z-index: 1
}

.frnt__worth-p {
  font-size: 16px;
  line-height: 1.8;
  color: #F9F9F9;
  margin: 0 0 16px
}

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

.frnt__metric {
  background: linear-gradient(173deg, #ea906026 0%, #f9f9f90d 100%);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #ea906033;
  transition: transform .15s ease-out, box-shadow .15s ease-out;
  position: relative;
  overflow: hidden
}

.frnt__metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #EA9060 0%, #224349 100%);
  opacity: 0;
  transition: opacity .12s ease-out
}

.frnt__metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 44px -2px #ea906033
}

.frnt__metric:hover::before {
  opacity: 1
}

.frnt__metric-num {
  font-size: 52px;
  line-height: 1.2;
  color: #EA9060;
  margin: 0 0 8px;
  font-weight: 700
}

.frnt__metric-lbl {
  font-size: 13px;
  line-height: 1.55;
  color: #F9F9F9;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .08em
}

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

.frnt__worth-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  display: block;
  transition: transform .15s ease-out, box-shadow .15s ease-out;
  box-shadow: 0 4px 25px -2px #ea906014
}

.frnt__worth-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 44px -2px #ea906033
}

.frnt__divider-2 {
  text-align: center;
  padding: 40px;
  position: relative
}

.frnt__divider-2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #224349 50%, transparent 100%);
  opacity: .2
}

.frnt__divider-circle {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 3px solid #EA9060;
  border-radius: 44px;
  display: inline-block;
  position: relative
}

.frnt__belong {
  padding: 80px 40px;
  background: #F9F9F9;
  position: relative;
  margin-left: 40px
}

.frnt__belong::before {
  content: '';
  position: absolute;
  top: 80px;
  right: 40px;
  width: 320px;
  height: 320px;
  border-radius: 44px;
  background: linear-gradient(173deg, #ea90600f 0%, #2243490f 100%);
  z-index: 0;
  pointer-events: none
}

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

.frnt__belong-hd {
  font-size: 52px;
  line-height: 1.2;
  color: #224349;
  margin: 0 0 80px;
  text-align: center;
  position: relative
}

.frnt__belong-hd::before {
  content: '03';
  position: absolute;
  font-size: 140px;
  line-height: 1;
  color: #ea906014;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  font-weight: 700
}

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

.frnt__profile {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 25px -2px #22434914;
  transition: transform .12s ease-out, box-shadow .12s ease-out;
  position: relative
}

.frnt__profile::after {
  content: '';
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  border-radius: 44px;
  background: linear-gradient(173deg, #ea906026 0%, #22434926 100%);
  z-index: 0;
  pointer-events: none;
  transition: transform .15s ease-out
}

.frnt__profile:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 44px -2px #22434921
}

.frnt__profile:hover::after {
  transform: scale(1.4)
}

.frnt__profile-tag {
  display: inline-block;
  font-size: 13px;
  line-height: 1.55;
  color: #224349;
  background: linear-gradient(173deg, #ea906026 0%, #f9f9f999 100%);
  padding: 8px 16px;
  border-radius: 44px;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600
}

.frnt__profile-hd {
  font-size: 28px;
  line-height: 1.2;
  color: #224349;
  margin: 0 0 16px
}

.frnt__profile-p {
  font-size: 16px;
  line-height: 1.8;
  color: #224349;
  margin: 0 0 16px;
  position: relative;
  z-index: 1
}

.frnt__profile-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0
}

.frnt__profile-item {
  font-size: 16px;
  line-height: 1.8;
  color: #224349;
  padding: 8px 0 8px 24px;
  position: relative
}

.frnt__profile-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: #EA9060;
  border-radius: 44px
}

@media (max-width: 1024px) {
  .frnt__opener {
    padding: 80px 40px;
    min-height: 360px
  }

  .frnt__opener-hd {
    font-size: 52px
  }

  .frnt__cond {
    margin-left: 40px
  }

  .frnt__cond-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .frnt__cond-img {
    height: 420px
  }

  .frnt__cond-hd {
    font-size: 28px
  }

  .frnt__cond-hd::before {
    font-size: 100px;
    top: -24px
  }

  .frnt__worth {
    margin-right: 40px
  }

  .frnt__worth-top {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .frnt__worth-hd {
    font-size: 28px
  }

  .frnt__worth-hd::before {
    font-size: 100px;
    top: -24px
  }

  .frnt__worth-gallery {
    grid-template-columns: 1fr 1fr
  }

  .frnt__belong {
    margin-left: 0
  }

  .frnt__belong-hd {
    font-size: 28px;
    margin-bottom: 40px
  }

  .frnt__belong-hd::before {
    font-size: 100px;
    top: -24px
  }

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

@media (max-width: 768px) {
  .frnt__opener {
    padding: 40px 16px;
    min-height: 280px
  }

  .frnt__opener-hd {
    font-size: 28px
  }

  .frnt__cond {
    padding: 40px 16px;
    margin-left: 0
  }

  .frnt__cond-inner {
    gap: 40px
  }

  .frnt__cond-img {
    height: 320px
  }

  .frnt__cond-txt {
    padding: 0
  }

  .frnt__cond-hd::before {
    font-size: 80px;
    top: -16px
  }

  .frnt__worth {
    padding: 40px 16px;
    margin-right: 0
  }

  .frnt__worth-top {
    margin-bottom: 40px
  }

  .frnt__worth-hd::before {
    font-size: 80px;
    top: -16px
  }

  .frnt__worth-metrics {
    grid-template-columns: 1fr
  }

  .frnt__metric {
    padding: 40px 16px
  }

  .frnt__worth-gallery {
    grid-template-columns: 1fr
  }

  .frnt__worth-img {
    height: 240px
  }

  .frnt__belong {
    padding: 40px 16px
  }

  .frnt__belong-hd {
    margin-bottom: 40px
  }

  .frnt__belong-hd::before {
    font-size: 80px;
    top: -16px
  }

  .frnt__profile {
    padding: 40px 16px
  }
}

@media (max-width: 480px) {
  .frnt__opener {
    padding: 40px 16px
  }

  .frnt__opener-hd {
    font-size: 28px
  }

  .frnt__cond {
    padding: 40px 16px
  }

  .frnt__cond-inner {
    gap: 40px
  }

  .frnt__cond-img {
    height: 280px
  }

  .frnt__worth {
    padding: 40px 16px
  }

  .frnt__worth-gallery {
    gap: 8px
  }

  .frnt__worth-img {
    height: 200px
  }

  .frnt__belong {
    padding: 40px 16px
  }

  .frnt__profile {
    padding: 40px 16px
  }
}

.abt {
  max-width: 1400px;
  margin: 0 auto;
  background: #fff
}

.abt__opening {
  position: relative;
  padding: 80px 40px;
  background: linear-gradient(173deg, #EA9060 0%, #F9F9F9 35%, #224349 100%), radial-gradient(ellipse at 25% 30%, #ea906066 0%, transparent 50%), radial-gradient(ellipse at 75% 70%, #2243494d 0%, transparent 50%);
  overflow: hidden
}

.abt__opening-deco {
  position: absolute;
  top: 40px;
  right: 80px;
  width: 180px;
  height: 180px;
  border: 2px solid #ffffff26;
  border-radius: 44px;
  transform: rotate(15deg);
  pointer-events: none
}

.abt__opening-deco::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border: 2px solid #ffffff1f;
  border-radius: 50%;
  transform: translate(-50%, -50%)
}

.abt__opening-inner {
  max-width: 880px;
  position: relative;
  z-index: 1
}

.abt__opening-heading {
  font-size: 66px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 40px;
  letter-spacing: -.02em
}

.abt__opening-punct {
  color: #EA9060
}

.abt__opening-text {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffeb;
  margin: 0;
  max-width: 640px
}

@media (max-width: 1024px) {
  .abt__opening {
    padding: 80px 16px
  }

  .abt__opening-deco {
    width: 140px;
    height: 140px;
    right: 40px
  }

  .abt__opening-heading {
    font-size: 52px
  }
}

@media (max-width: 768px) {
  .abt__opening {
    padding: 40px 16px
  }

  .abt__opening-deco {
    width: 100px;
    height: 100px;
    top: 16px;
    right: 16px
  }

  .abt__opening-heading {
    font-size: 28px;
    margin: 0 0 16px
  }
}

.abt__narrative {
  position: relative;
  padding: 80px 40px;
  background: #F9F9F9;
  display: flex;
  gap: 40px;
  align-items: flex-start
}

.abt__narrative::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 1px;
  background: repeating-linear-gradient(90deg, transparent 0px, transparent 8px, #EA9060 8px, #EA9060 12px, transparent 12px, transparent 16px, #224349 16px, #224349 20px)
}

.abt__narrative-main {
  flex: 0 0 calc(75% - 20px);
  display: flex;
  flex-direction: column;
  gap: 40px
}

.abt__narrative-aside {
  flex: 0 0 calc(25% - 20px);
  position: sticky;
  top: 40px
}

.abt__narrative-heading {
  font-size: 52px;
  line-height: 1.2;
  color: #224349;
  margin: 0 0 40px;
  letter-spacing: -.01em;
  position: relative
}

.abt__narrative-heading::before {
  content: '01';
  position: absolute;
  top: -16px;
  left: -8px;
  font-size: 120px;
  line-height: 1;
  color: #ea906014;
  font-weight: 700;
  z-index: 0;
  pointer-events: none
}

.abt__narrative-content {
  display: flex;
  flex-direction: column;
  gap: 40px
}

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

.abt__narrative-subtitle {
  font-size: 28px;
  line-height: 1.2;
  color: #224349;
  margin: 0;
  letter-spacing: -.01em
}

.abt__narrative-para {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0
}

.abt__narrative-para.featured {
  background: #ea90600a;
  padding: 16px;
  border-radius: 6px;
  border-left: 4px solid #EA9060
}

.abt__narrative-visual {
  width: 100%;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 25px -2px #22434914
}

.abt__narrative-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.abt__narrative-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 3px 4px -2px #2243490f 0 4px 25px -2px #22434914
}

.abt__narrative-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid #22434914;
  transition: transform .12s ease-out
}

.abt__narrative-metric:last-child {
  border-bottom: none
}

.abt__narrative-metric:hover {
  transform: translateX(4px)
}

.abt__narrative-metric-value {
  font-size: 52px;
  line-height: 1;
  color: #EA9060;
  font-weight: 700;
  letter-spacing: -.02em
}

.abt__narrative-metric-label {
  font-size: 13px;
  line-height: 1.2;
  color: #224349;
  text-transform: uppercase;
  letter-spacing: .05em
}

.abt__narrative-crd {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 3px 4px -2px #2243490f;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden
}

.abt__narrative-crd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #EA9060 0%, #224349 100%)
}

.abt__narrative-crd-heading {
  font-size: 28px;
  line-height: 1.2;
  color: #224349;
  margin: 0
}

.abt__narrative-crd-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0
}

.abt__narrative-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.abt__narrative-gallery-item {
  width: 100%;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 4px -2px #ea90600f;
  transition: box-shadow .1s ease-out, transform .1s ease-out
}

.abt__narrative-gallery-item:hover {
  box-shadow: 0 8px 44px -2px #ea906021;
  transform: translateY(-4px)
}

.abt__narrative-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.abt__narrative-link {
  color: #224349;
  text-decoration: underline;
  text-decoration-color: #EA9060;
  text-underline-offset: 4px;
  transition: background-color .08s ease-out, color .08s ease-out;
  padding: 0 4px;
  border-radius: 6px
}

.abt__narrative-link:hover {
  background-color: #EA9060;
  color: #fff;
  text-decoration: none
}

@media (max-width: 1024px) {
  .abt__narrative {
    flex-direction: column;
    padding: 80px 16px
  }

  .abt__narrative-main {
    flex: 1 1 auto
  }

  .abt__narrative-aside {
    flex: 1 1 auto;
    position: static;
    width: 100%
  }

  .abt__narrative-heading {
    font-size: 28px;
    margin: 0 0 16px
  }

  .abt__narrative-heading::before {
    font-size: 80px;
    top: -8px;
    left: -4px
  }

  .abt__narrative-visual {
    height: 320px
  }

  .abt__narrative-gallery {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .abt__narrative {
    padding: 40px 16px;
    gap: 16px
  }

  .abt__narrative-content {
    gap: 16px
  }

  .abt__narrative-metrics {
    padding: 16px
  }

  .abt__narrative-metric-value {
    font-size: 28px
  }

  .abt__narrative-crd {
    padding: 16px
  }

  .abt__narrative-visual {
    height: 240px
  }

  .abt__narrative-gallery-item {
    height: 220px
  }
}

.abt__pulse-bg {
  position: relative;
  padding: 80px 40px;
  background: #fff;
  overflow: hidden
}

.abt__pulse-bg::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 80px;
  width: 300px;
  height: 300px;
  border: 3px solid #ea90601f;
  border-radius: 50%;
  animation: abt-pulse 4s ease-in-out infinite;
  pointer-events: none
}

.abt__pulse-bg::after {
  content: '';
  position: absolute;
  bottom: 80px;
  right: 120px;
  width: 200px;
  height: 200px;
  border: 2px solid #2243491a;
  border-radius: 44px;
  transform: rotate(25deg);
  animation: abt-pulse-alt 5s ease-in-out infinite;
  pointer-events: none
}

@keyframes abt-pulse {

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

  50% {
    transform: scale(1.08);
    opacity: .06
  }
}

@keyframes abt-pulse-alt {

  0%,
  100% {
    transform: rotate(25deg) scale(1);
    opacity: .1
  }

  50% {
    transform: rotate(30deg) scale(1.05);
    opacity: .05
  }
}

.abt__gradient-shift {
  position: relative;
  padding: 80px 40px;
  background: linear-gradient(135deg, #F9F9F9 0%, #fff 100%);
  animation: abt-gradient-bg 8s ease-in-out infinite alternate
}

@keyframes abt-gradient-bg {
  0% {
    background: linear-gradient(135deg, #F9F9F9 0%, #fff 100%)
  }

  100% {
    background: linear-gradient(315deg, #fff 0%, #F9F9F9 100%)
  }
}

.abt__blur-layer {
  position: relative;
  padding: 80px 40px;
  background-image: url(/content_assets/asset-2023-008.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed
}

.abt__blur-layer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(12px);
  background: #ffffffe0;
  z-index: 0
}

.abt__blur-layer-inner {
  position: relative;
  z-index: 1
}

@media (max-width: 768px) {
  .abt__blur-layer {
    background-attachment: scroll
  }
}

.srv {
  background: #fff;
  color: #224349;
  overflow-x: clip
}

.srv::selection {
  background: #000;
  color: #fff
}

.srv__title-wrap {
  position: relative;
  background: linear-gradient(173deg, #EA9060 0%, #ea9060b3 40%, #f9f9f900 100%);
  padding: 40px 16px;
  overflow: visible;
  z-index: 1
}

.srv__title-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1
}

.srv__title-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center
}

.srv__title-text {
  flex: 1
}

.srv__title-h {
  font-size: 52px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #224349;
  letter-spacing: -.02em
}

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

.srv__title-item {
  font-size: 16px;
  line-height: 1.55;
  color: #224349;
  padding: 0 0 0 16px;
  position: relative
}

.srv__title-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #224349;
  border-radius: 10px
}

.srv__title-img {
  width: 380px;
  height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 8px 44px -2px #ea906021;
  position: relative
}

.srv__title-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 -80px 60px -40px #0006;
  pointer-events: none
}

@media (max-width: 1024px) {
  .srv__title-container {
    flex-direction: column;
    align-items: flex-start
  }

  .srv__title-img {
    width: 100%;
    height: 280px
  }
}

@media (max-width: 768px) {
  .srv__title-h {
    font-size: 28px
  }

  .srv__title-wrap {
    padding: 40px 16px
  }
}

.srv__catalog {
  padding: 80px 16px;
  background: #F9F9F9;
  position: relative
}

.srv__catalog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #EA9060 0px, #EA9060 8px, transparent 8px, transparent 16px)
}

.srv__catalog-container {
  max-width: 1400px;
  margin: 0 auto
}

.srv__catalog-h {
  font-size: 52px;
  line-height: 1.2;
  margin: 0 0 40px;
  color: #224349;
  letter-spacing: -.02em
}

.srv__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px
}

.srv__card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 25px -2px #22434914;
  transition: transform .12s ease-out, box-shadow .12s ease-out;
  display: flex;
  flex-direction: column;
  position: relative
}

.srv__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 44px -2px #22434921
}

.srv__card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative
}

.srv__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .15s ease-out
}

.srv__card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -60px 50px -30px #00000080;
  pointer-events: none
}

.srv__card:hover .srv__card-img {
  transform: scale(1.05)
}

.srv__card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1
}

.srv__card-title {
  font-size: 28px;
  line-height: 1.2;
  margin: 0;
  color: #224349;
  letter-spacing: -.01em
}

.srv__card-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #224349;
  margin: 0
}

.srv__card-meta {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin: 8px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid #2243491a
}

.srv__card-price {
  font-size: 28px;
  line-height: 1.2;
  color: #EA9060;
  font-weight: 600;
  letter-spacing: -.01em
}

.srv__card-seats {
  font-size: 13px;
  line-height: 1.55;
  color: #224349;
  opacity: .7;
  align-self: flex-end
}

.srv__card-link {
  display: inline-block;
  margin: 8px 0 0;
  padding: 8px 16px;
  background: #224349;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.55;
  transition: background .1s ease-out, width .12s ease-out;
  align-self: flex-start
}

.srv__card-link:hover {
  background: #EA9060;
  padding-left: 40px;
  padding-right: 40px
}

@media (max-width: 768px) {
  .srv__catalog-h {
    font-size: 28px
  }

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

.srv__approach {
  padding: 80px 16px;
  background: linear-gradient(173deg, #f9f9f94d 0%, #ea90600d 100%), radial-gradient(ellipse at 30% 40%, #ea906014 0%, transparent 60%);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin-bottom: -40px
}

.srv__approach-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.srv__approach-text {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.srv__approach-h {
  font-size: 52px;
  line-height: 1.2;
  margin: 0;
  color: #224349;
  letter-spacing: -.02em;
  position: relative
}

.srv__approach-h::before {
  content: '01';
  position: absolute;
  font-size: 120px;
  line-height: 1;
  color: #EA9060;
  opacity: .12;
  top: -40px;
  left: -8px;
  z-index: -1;
  font-weight: 700
}

.srv__approach-p {
  font-size: 16px;
  line-height: 1.55;
  color: #224349;
  margin: 0
}

.srv__approach-p:first-of-type {
  background: #ea906014;
  padding: 16px;
  border-radius: 6px;
  border-left: 4px solid #EA9060
}

.srv__approach-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative
}

.srv__approach-metric {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 4px 25px -2px #22434914;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  transition: transform .1s ease-out
}

.srv__approach-metric:hover {
  transform: translateX(8px)
}

.srv__approach-num {
  font-size: 52px;
  line-height: 1;
  color: #224349;
  font-weight: 700;
  letter-spacing: -.02em;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 4px
}

.srv__approach-int {
  color: #EA9060
}

.srv__approach-frac {
  color: #224349;
  font-size: 28px
}

.srv__approach-label {
  font-size: 13px;
  line-height: 1.55;
  color: #224349;
  opacity: .7
}

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

@media (max-width: 768px) {
  .srv__approach-h {
    font-size: 28px
  }

  .srv__approach-h::before {
    font-size: 66px;
    top: -16px
  }
}

.srv__process {
  padding: 120px 16px 80px;
  background: #fff;
  position: relative
}

.srv__process-container {
  max-width: 1400px;
  margin: 0 auto
}

.srv__process-h {
  font-size: 52px;
  line-height: 1.2;
  margin: 0 0 40px;
  color: #224349;
  letter-spacing: -.02em;
  text-align: center
}

.srv__process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative
}

.srv__process-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #EA9060 20%, #EA9060 80%, transparent 100%);
  z-index: 0
}

.srv__process-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1
}

.srv__process-icon {
  width: 120px;
  height: 120px;
  border-radius: 44px;
  background: linear-gradient(173deg, #F9F9F9 0%, #fff 100%);
  box-shadow: 0 4px 25px -2px #ea906014;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: #EA9060;
  transition: transform .12s ease-out, box-shadow .12s ease-out;
  cursor: pointer;
  position: relative
}

.srv__process-icon:active {
  animation: srv-rotate .3s ease-out
}

@keyframes srv-rotate {
  0% {
    transform: rotate(0deg)
  }

  50% {
    transform: rotate(15deg)
  }

  100% {
    transform: rotate(0deg)
  }
}

.srv__process-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 44px -2px #ea906021
}

.srv__process-icon svg {
  width: 52px;
  height: 52px
}

.srv__process-step-h {
  font-size: 28px;
  line-height: 1.2;
  margin: 0;
  color: #224349;
  letter-spacing: -.01em
}

.srv__process-step-p {
  font-size: 16px;
  line-height: 1.55;
  color: #224349;
  margin: 0
}

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

  .srv__process-grid::before {
    display: none
  }
}

@media (max-width: 768px) {
  .srv__process-h {
    font-size: 28px
  }
}

.srv__format {
  padding: 80px 16px;
  background: #224349;
  position: relative;
  animation: srv-pulse 8s ease-in-out infinite
}

@keyframes srv-pulse {

  0%,
  100% {
    filter: brightness(1)
  }

  50% {
    filter: brightness(1.03)
  }
}

.srv__format::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #EA9060 0px, #EA9060 12px, transparent 12px, transparent 24px)
}

.srv__format-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start
}

.srv__format-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 40px
}

.srv__format-h {
  font-size: 52px;
  line-height: 1.2;
  margin: 0;
  color: #fff;
  letter-spacing: -.02em
}

.srv__format-intro {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffd9;
  margin: 0
}

.srv__format-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  grid-auto-rows: auto
}

.srv__format-box {
  background: #ffffff14;
  padding: 16px;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  transition: background .1s ease-out, transform .1s ease-out;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.srv__format-box:hover {
  background: #ea906026;
  transform: scale(1.02)
}

.srv__format-box.tall {
  grid-row: span 2
}

.srv__format-box-h {
  font-size: 28px;
  line-height: 1.2;
  margin: 0;
  color: #EA9060;
  letter-spacing: -.01em
}

.srv__format-box-p {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffd9;
  margin: 0
}

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

  .srv__format-left {
    position: static
  }

  .srv__format-right {
    grid-template-columns: 1fr
  }

  .srv__format-box.tall {
    grid-row: span 1
  }
}

@media (max-width: 768px) {
  .srv__format-h {
    font-size: 28px
  }
}

.srv__benefits {
  padding: 80px 16px;
  background: #F9F9F9;
  position: relative
}

.srv__benefits-container {
  max-width: 1400px;
  margin: 0 auto
}

.srv__benefits-h {
  font-size: 52px;
  line-height: 1.2;
  margin: 0 0 40px;
  color: #224349;
  letter-spacing: -.02em;
  position: relative
}

.srv__benefits-h::before {
  content: '02';
  position: absolute;
  font-size: 120px;
  line-height: 1;
  color: #224349;
  opacity: .08;
  top: -40px;
  right: 0;
  z-index: 0;
  font-weight: 700
}

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

.srv__benefits-main {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 44px -2px #22434921;
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-row: span 2
}

.srv__benefits-main-h {
  font-size: 28px;
  line-height: 1.2;
  margin: 0;
  color: #224349;
  letter-spacing: -.01em
}

.srv__benefits-main-p {
  font-size: 16px;
  line-height: 1.8;
  color: #224349;
  margin: 0
}

.srv__benefits-side {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 3px 4px -2px #2243490f;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .1s ease-out
}

.srv__benefits-side:hover {
  box-shadow: 0 4px 25px -2px #ea906014
}

.srv__benefits-side-h {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
  color: #EA9060;
  letter-spacing: -.01em;
  font-weight: 600
}

.srv__benefits-side-p {
  font-size: 13px;
  line-height: 1.55;
  color: #224349;
  margin: 0
}

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

  .srv__benefits-main {
    grid-row: span 1
  }
}

@media (max-width: 768px) {
  .srv__benefits-h {
    font-size: 28px
  }

  .srv__benefits-h::before {
    font-size: 66px;
    top: -16px
  }

  .srv__benefits-main {
    padding: 16px
  }
}

.success-pg {
  background: linear-gradient(173deg, #F9F9F9 0%, #FFF 100%), radial-gradient(circle at 70% 30%, #ea90600f 0%, transparent 60%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px
}

.success-pg .conf-wrap {
  max-width: 640px;
  width: 100%;
  text-align: center
}

.success-pg .stat-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 40px;
  border-radius: 44px;
  background: linear-gradient(173deg, #ea90601f 0%, #22434914 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.success-pg .stat-icon::before {
  content: '';
  width: 36px;
  height: 20px;
  border-left: 4px solid #224349;
  border-bottom: 4px solid #224349;
  transform: rotate(-45deg) translateY(-4px);
  display: block
}

.success-pg .conf-ttl {
  font-size: 52px;
  line-height: 1.2;
  color: #224349;
  margin: 0 0 16px;
  letter-spacing: -.02em
}

.success-pg .conf-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #224349;
  margin: 0 0 40px;
  opacity: .72
}

.success-pg .conf-desc span {
  text-decoration: line-through;
  opacity: .5
}

.success-pg .conf-desc strong {
  color: #EA9060;
  font-weight: 600;
  text-decoration: none
}

.success-pg .ref-num {
  display: inline-block;
  padding: 8px 16px;
  background: #2243490a;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.55;
  color: #224349;
  margin: 0 0 40px;
  letter-spacing: .05em
}

.success-pg .act-grp {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.success-pg .btn-prim {
  padding: 16px 40px;
  background: #224349;
  color: #FFF;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.55;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .12s ease-out, box-shadow .12s ease-out;
  box-shadow: 0 3px 4px -2px #2243490f 0 4px 25px -2px #22434914
}

.success-pg .btn-prim:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 25px -2px #22434914 0 8px 44px -2px #22434921
}

.success-pg .btn-prim::after {
  content: '';
  width: 16px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  display: block
}

.success-pg .btn-sec {
  padding: 16px 40px;
  background: transparent;
  color: #224349;
  border: 2px solid #22434929;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.55;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .1s linear, background .1s linear
}

.success-pg .btn-sec:hover {
  border-color: #EA9060;
  background: #ea90600a
}

.success-pg .btn-sec::before {
  content: '';
  width: 16px;
  height: 16px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(-45deg);
  display: block
}

.success-pg .info-note {
  margin: 80px 0 0;
  padding: 16px;
  background: #ea90600f;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.8;
  color: #224349;
  text-align: left
}

.success-pg .info-note p {
  margin: 0
}

@media (max-width: 480px) {
  .success-pg .conf-ttl {
    font-size: 28px
  }

  .success-pg .act-grp {
    flex-direction: column;
    width: 100%
  }

  .success-pg .btn-prim,
  .success-pg .btn-sec {
    width: 100%;
    justify-content: center
  }

  .success-pg .stat-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 16px
  }

  .success-pg .stat-icon::before {
    width: 28px;
    height: 16px
  }
}