html {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #1d1d1d;
  background: #fff
}

.top-band {
  background: linear-gradient(135deg, #003B50 0%, #004d66 100%);
  padding: 8px 0;
  position: relative;
  z-index: 100
}

.top-band-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px
}

.region-pick {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 400
}

.region-icon {
  width: 18px;
  height: 18px;
  fill: #FF9B11
}

.region-text {
  letter-spacing: .3px
}

.header-main {
  background: #F1F0F0;
  border-bottom: 2px solid #FF9B11;
  position: relative;
  z-index: 90
}

.header-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px
}

.brand-area {
  display: flex;
  align-items: center;
  gap: 16px
}

.logo-card {
  background: #fff;
  padding: 8px 24px;
  border-radius: 10px;
  box-shadow: -1px 2px 2px 0 #003b500f -1px 6px 22px 0 #003b501a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 70px;
  border: 1px solid #003b5014;
  transition: box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.logo-card:hover {
  box-shadow: -1px 6px 22px 0 #003b501a -1px 10px 48px 0 #003b501c
}

.logo-img {
  width: 65px;
  height: 65px;
  object-fit: contain
}

.company-label {
  font-size: 24px;
  font-weight: 700;
  color: #003B50;
  letter-spacing: -.2px;
  line-height: 1.1
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.nav-link {
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #003B50;
  text-decoration: none;
  background: #fff;
  border-radius: 6px;
  transition: background .3s cubic-bezier(0.4, 0, 0.2, 1), color .3s cubic-bezier(0.4, 0, 0.2, 1), width .35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -1px 2px 2px 0 #003b500f;
  position: relative;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ff9b1126, transparent);
  transition: left .4s cubic-bezier(0.4, 0, 0.2, 1)
}

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

.nav-link:hover {
  background: #FF9B11;
  color: #fff;
  box-shadow: -1px 6px 22px 0 #003b501a;
  padding-left: 28px;
  padding-right: 28px
}

.nav-link:focus {
  outline: 3px solid #FF9B11;
  outline-offset: 2px
}

.footer-main {
  background: linear-gradient(180deg, #003B50 0%, #002838 100%);
  color: #fff;
  padding: 64px 0 32px;
  position: relative
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF9B11 0%, #ffb84d 50%, #FF9B11 100%)
}

.footer-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px
}

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

.footer-segment {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.footer-heading {
  font-size: 19px;
  font-weight: 700;
  color: #FF9B11;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3
}

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

.footer-nav-link {
  color: #F1F0F0;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  transition: color .28s cubic-bezier(0.4, 0, 0.2, 1), padding-left .3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative
}

.footer-nav-link::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #FF9B11;
  border-radius: 48px;
  opacity: 0;
  transition: opacity .28s cubic-bezier(0.4, 0, 0.2, 1), left .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-nav-link:hover {
  color: #FF9B11;
  padding-left: 24px
}

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

.footer-nav-link:focus {
  outline: 3px solid #FF9B11;
  outline-offset: 2px
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #F1F0F0;
  font-size: 15px;
  line-height: 1.5
}

.contact-icon-wrap {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.contact-icon {
  width: 18px;
  height: 18px;
  fill: #FF9B11
}

.contact-value {
  color: #F1F0F0;
  text-decoration: none;
  transition: color .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-value:hover {
  color: #FF9B11
}

.contact-value:focus {
  outline: 3px solid #FF9B11;
  outline-offset: 2px
}

.footer-logo-strip {
  display: flex;
  justify-content: center;
  padding: 32px 0;
  border-top: 1px solid #ff9b1133;
  border-bottom: 1px solid #ff9b1133;
  margin-bottom: 32px
}

.footer-logo-card {
  background: #fff;
  padding: 8px 32px;
  border-radius: 10px;
  box-shadow: -1px 6px 22px 0 #ff9b111a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 70px;
  border: 1px solid #ff9b1126
}

.footer-logo-img {
  width: 65px;
  height: 65px;
  object-fit: contain
}

.footer-bottom {
  text-align: center;
  font-size: 15px;
  color: #F1F0F0;
  line-height: 1.5
}

.copyright-text {
  margin: 0;
  letter-spacing: .3px
}

.founded-note {
  margin: 8px 0 0;
  font-size: 15px;
  color: #f1f0f0b3;
  letter-spacing: .2px
}

@media (max-width: 1366px) {
  .header-shell {
    padding: 24px 16px
  }

  .footer-shell {
    padding: 0 16px
  }

  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px
  }

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

@media (max-width: 768px) {
  .top-band-inner {
    padding: 0 16px;
    justify-content: center
  }

  .header-shell {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 16px
  }

  .brand-area {
    justify-content: center
  }

  .nav-primary {
    flex-direction: column;
    gap: 8px
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 16px 24px
  }

  .nav-link:hover {
    padding: 16px 24px
  }

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

  .footer-segment {
    text-align: center
  }

  .footer-nav-list {
    align-items: center
  }

  .contact-item {
    justify-content: center
  }

  .logo-card,
  .footer-logo-card {
    min-width: 120px;
    height: 60px
  }

  .logo-img,
  .footer-logo-img {
    width: 55px;
    height: 55px
  }

  .company-label {
    font-size: 19px
  }
}

@media (max-width: 375px) {
  .top-band {
    padding: 4px 0
  }

  .top-band-inner {
    gap: 16px;
    padding: 0 8px
  }

  .region-pick {
    font-size: 15px
  }

  .header-shell {
    padding: 16px 8px
  }

  .brand-area {
    flex-direction: column;
    gap: 8px
  }

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

  .footer-shell {
    padding: 0 8px
  }

  .footer-grid {
    gap: 24px
  }

  .footer-heading {
    font-size: 19px
  }

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

.policy-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 24px;
  background: #fff
}

.policy-main h1 {
  font-size: 56px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 32px;
  letter-spacing: -.02em
}

.policy-main h2 {
  font-size: 24px;
  line-height: 1.3;
  color: #003B50;
  margin: 64px 0 24px;
  letter-spacing: -.01em
}

.policy-main h3 {
  font-size: 19px;
  line-height: 1.3;
  color: #003B50;
  margin: 32px 0 16px;
  font-weight: 600
}

.policy-main h4,
.policy-main h5,
.policy-main h6 {
  font-size: 15px;
  line-height: 1.5;
  color: #003B50;
  margin: 24px 0 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

.policy-main p {
  font-size: 15px;
  line-height: 1.7;
  color: #1a1a1a;
  margin: 0 0 24px
}

.policy-main em,
.policy-main i {
  font-style: italic;
  color: #003B50
}

.policy-main a {
  color: #FF9B11;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.policy-main a:hover {
  border-bottom-color: #FF9B11
}

.policy-main table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: -1px 2px 2px 0 #003b500f
}

.policy-main thead {
  background: linear-gradient(135deg, #003B50 0%, #004d66 100%)
}

.policy-main thead tr {
  border-bottom: 2px solid #FF9B11
}

.policy-main th {
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  padding: 16px 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

.policy-main tbody tr {
  border-bottom: 1px solid #F1F0F0;
  transition: background-color .25s ease-in-out
}

.policy-main tbody tr:last-child {
  border-bottom: none
}

.policy-main tbody tr:hover {
  background-color: #f1f0f080
}

.policy-main td {
  font-size: 15px;
  line-height: 1.7;
  color: #1a1a1a;
  padding: 16px 24px;
  vertical-align: top
}

@media (max-width: 768px) {
  .policy-main {
    padding: 32px 16px
  }

  .policy-main h1 {
    font-size: 24px;
    margin-bottom: 24px
  }

  .policy-main h2 {
    font-size: 19px;
    margin-top: 32px
  }

  .policy-main h3 {
    font-size: 15px;
    margin-top: 24px
  }

  .policy-main table {
    display: block;
    overflow-x: auto;
    margin: 24px -16px;
    border-radius: 0;
    box-shadow: none
  }

  .policy-main th,
  .policy-main td {
    padding: 8px 16px;
    font-size: 15px
  }
}

@media (max-width: 375px) {
  .policy-main {
    padding: 24px 16px
  }

  .policy-main h1 {
    font-size: 19px
  }
}

.arch-dtl {
  background: #FFF;
  color: #003B50;
  max-width: 1400px;
  margin: 0 auto
}

.arch-dtl .dtl-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 64px 32px;
  overflow: hidden
}

.arch-dtl .dtl-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(37deg, transparent 0%, #FF9B11 50%, transparent 100%)
}

.arch-dtl .dtl-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(37deg, transparent 0%, #003B50 50%, transparent 100%)
}

.arch-dtl .banner-img-container {
  flex: 0 0 480px;
  position: relative;
  height: 520px
}

.arch-dtl .banner-img-shape {
  width: 100%;
  height: 100%;
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  position: relative;
  overflow: hidden
}

.arch-dtl .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.arch-dtl .banner-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, transparent 0%, #003b50b3 100%);
  pointer-events: none
}

.arch-dtl .banner-txt {
  flex: 1;
  min-width: 0
}

.arch-dtl .banner-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap
}

.arch-dtl .meta-tag {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(37deg, #FF9B11 0%, #ff9b11cc 100%);
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.arch-dtl .meta-date {
  font-size: 15px;
  color: #003B50;
  opacity: .7
}

.arch-dtl .meta-author {
  font-size: 15px;
  color: #003B50;
  font-weight: 500
}

.arch-dtl .banner-heading {
  font-size: 70px;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #003B50;
  font-weight: 700
}

.arch-dtl .banner-heading .punct {
  color: #FF9B11
}

.arch-dtl .banner-subtitle {
  font-size: 24px;
  line-height: 1.5;
  color: #003B50;
  opacity: .85;
  margin: 0
}

.arch-dtl .art-body {
  padding: 64px 32px;
  background: #F1F0F0;
  position: relative
}

.arch-dtl .art-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: radial-gradient(ellipse at center, #FF9B11 0%, transparent 100%)
}

.arch-dtl .body-container {
  max-width: 920px;
  margin: 0 auto
}

.arch-dtl .body-container p {
  font-size: 19px;
  line-height: 1.7;
  color: #003B50;
  margin: 0 0 24px
}

.arch-dtl .body-container h2 {
  font-size: 56px;
  line-height: 1.3;
  color: #003B50;
  margin: 64px 0 32px;
  font-weight: 700
}

.arch-dtl .body-container h2:first-child {
  margin-top: 0
}

.arch-dtl .body-container ul,
.arch-dtl .body-container ol {
  margin: 0 0 24px;
  padding-left: 32px
}

.arch-dtl .body-container ul li,
.arch-dtl .body-container ol li {
  font-size: 19px;
  line-height: 1.7;
  color: #003B50;
  margin-bottom: 16px
}

.arch-dtl .body-container ul li::marker {
  color: #FF9B11
}

.arch-dtl .body-container ol li::marker {
  color: #FF9B11;
  font-weight: 700
}

.arch-dtl .body-container blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: #FFF;
  border-radius: 10px;
  box-shadow: -1px 2px 2px 0 #003b500f -1px 6px 22px 0 #003b501a;
  position: relative
}

.arch-dtl .body-container blockquote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(37deg, #FF9B11 0%, #ff9b1199 100%);
  border-radius: 10px 0 0 10px
}

.arch-dtl .body-container blockquote p {
  font-size: 24px;
  line-height: 1.5;
  font-style: italic;
  margin: 0
}

.arch-dtl .body-container cite {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: #003B50;
  opacity: .7;
  margin-top: 16px;
  font-style: normal
}

.arch-dtl .body-container figure {
  margin: 32px 0
}

.arch-dtl .body-container figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: -1px 6px 22px 0 #003b501a
}

.arch-dtl .body-container figcaption {
  font-size: 15px;
  line-height: 1.5;
  color: #003B50;
  opacity: .7;
  margin-top: 16px;
  text-align: center
}

.arch-dtl .engage-zone {
  padding: 64px 32px;
  background: #FFF;
  position: relative
}

.arch-dtl .engage-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(37deg, #ff9b1108 0%, transparent 50%, #003b5008 100%);
  pointer-events: none
}

.arch-dtl .engage-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative
}

.arch-dtl .engage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px
}

.arch-dtl .engage-card {
  background: #FFF;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: -1px 2px 2px 0 #003b500f -1px 6px 22px 0 #003b501a;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.arch-dtl .engage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #F1F0F0;
  transition: background .3s ease-in-out
}

.arch-dtl .engage-card:hover {
  transform: translateY(-8px);
  box-shadow: -1px 10px 48px 0 #003b501c
}

.arch-dtl .engage-card:hover::before {
  background: linear-gradient(37deg, #FF9B11 0%, #ff9b1199 100%)
}

.arch-dtl .engage-card.accent-right {
  background: linear-gradient(37deg, #FFF 0%, #ff9b110d 100%)
}

.arch-dtl .engage-card.accent-right::before {
  background: linear-gradient(37deg, #FF9B11 0%, #ff9b11cc 100%)
}

.arch-dtl .engage-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F1F0F0;
  border-radius: 32px;
  transition: transform .3s ease-in-out, background .3s ease-in-out
}

.arch-dtl .engage-card:hover .engage-icon {
  transform: scale(1.1);
  background: #ff9b1126
}

.arch-dtl .engage-icon svg {
  width: 32px;
  height: 32px;
  fill: #FF9B11
}

.arch-dtl .engage-number {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  color: #003B50;
  text-align: center;
  margin: 0 0 8px
}

.arch-dtl .engage-label {
  font-size: 15px;
  line-height: 1.5;
  color: #003B50;
  opacity: .7;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0
}

.arch-dtl .engage-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: #003B50;
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: width .3s ease-in-out, background .3s ease-in-out, box-shadow .3s ease-in-out;
  box-shadow: -1px 2px 2px 0 #003b500f;
  text-decoration: none;
  margin-top: 24px
}

.arch-dtl .engage-btn:hover {
  background: #FF9B11;
  box-shadow: -1px 6px 22px 0 #ff9b111a;
  width: calc(100% + 16px)
}

.arch-dtl .engage-btn:focus {
  outline: 2px solid #FF9B11;
  outline-offset: 4px
}

.arch-dtl .engage-btn:active {
  transform: translateY(2px);
  box-shadow: -1px 2px 2px 0 #003b500f
}

.arch-dtl .engage-card.accent-right .engage-number {
  color: #FF9B11
}

.arch-dtl .corner-fold {
  position: relative;
  perspective: 1000px
}

.arch-dtl .corner-fold::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0;
  border-color: transparent transparent #F1F0F0;
  transition: border-width .35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none
}

.arch-dtl .engage-card:hover.corner-fold::after {
  border-width: 0 48px 48px 0;
  border-color: transparent #F1F0F0 transparent transparent
}

@media (max-width: 1366px) {
  .arch-dtl .dtl-banner {
    gap: 32px;
    padding: 64px 24px
  }

  .arch-dtl .banner-img-container {
    flex: 0 0 400px;
    height: 440px
  }

  .arch-dtl .banner-heading {
    font-size: 56px
  }

  .arch-dtl .banner-subtitle {
    font-size: 19px
  }

  .arch-dtl .engage-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 768px) {
  .arch-dtl .dtl-banner {
    flex-direction: column;
    gap: 32px;
    padding: 32px 16px
  }

  .arch-dtl .banner-img-container {
    flex: 0 0 auto;
    width: 100%;
    height: 320px
  }

  .arch-dtl .banner-img-shape {
    clip-path: polygon(0% 8%, 100% 0%, 100% 92%, 0% 100%)
  }

  .arch-dtl .banner-heading {
    font-size: 56px
  }

  .arch-dtl .banner-subtitle {
    font-size: 19px
  }

  .arch-dtl .art-body {
    padding: 32px 16px
  }

  .arch-dtl .body-container h2 {
    font-size: 56px;
    margin: 32px 0 24px
  }

  .arch-dtl .engage-zone {
    padding: 32px 16px
  }

  .arch-dtl .engage-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

@media (max-width: 375px) {
  .arch-dtl .banner-heading {
    font-size: 56px
  }

  .arch-dtl .banner-subtitle {
    font-size: 19px
  }

  .arch-dtl .body-container h2 {
    font-size: 56px
  }

  .arch-dtl .body-container p,
  .arch-dtl .body-container ul li,
  .arch-dtl .body-container ol li {
    font-size: 19px
  }

  .arch-dtl .engage-number {
    font-size: 56px
  }
}

.crew {
  background: #FFF;
  color: #003B50;
  max-width: 1400px;
  margin: 0 auto
}

.crew .intro-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  padding: 64px 32px;
  position: relative;
  overflow: hidden
}

.crew .intro-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(37deg, #ff9b1114 0%, #fff0 65%);
  pointer-events: none;
  z-index: 1
}

.crew .intro-image-zone {
  position: relative;
  z-index: 2;
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: intro-reveal .35s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

@keyframes intro-reveal {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%)
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }
}

.crew .intro-image-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #003b5073 0%, #003b5000 70%);
  z-index: 2;
  pointer-events: none
}

.crew .intro-image-zone::after {
  content: '?';
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 140px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px #fff9;
  font-weight: 700;
  z-index: 3;
  pointer-events: none
}

.crew .intro-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.crew .intro-text-zone {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.crew .intro-lead {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  color: #003B50;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.crew .intro-lead span {
  display: block
}

.crew .intro-desc {
  font-size: 19px;
  line-height: 1.5;
  color: #003B50;
  margin: 0;
  text-align: left
}

.crew .intro-links {
  display: flex;
  gap: 16px;
  margin-top: 8px
}

.crew .intro-action {
  display: inline-block;
  padding: 16px 32px;
  background: #FF9B11;
  color: #FFF;
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: -1px 6px 22px 0 #ff9b111a;
  transition: width .3s cubic-bezier(0.4, 0, 0.2, 1), background .3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap
}

.crew .intro-action:hover {
  background: #e68a00;
  width: calc(100% + 16px)
}

.crew .intro-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: #003B50;
  text-decoration: none;
  border: 2px solid #003B50;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: background .3s cubic-bezier(0.4, 0, 0.2, 1), color .3s cubic-bezier(0.4, 0, 0.2, 1), width .3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap
}

.crew .intro-secondary:hover {
  background: #003B50;
  color: #FFF;
  width: calc(100% + 16px)
}

.crew .profiles-area {
  background: #F1F0F0;
  padding: 64px 32px;
  position: relative
}

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

.crew .profiles-label {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #003B50;
  margin: 0 0 32px;
  text-align: left
}

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

.crew .member-card {
  background: #FFF;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: -1px 2px 2px 0 #003b500f;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer
}

.crew .member-card:hover {
  transform: translateY(-8px) perspective(800px) rotateX(2deg);
  box-shadow: -1px 10px 48px 0 #003b501c
}

.crew .member-avatar {
  width: 100%;
  height: 280px;
  background: linear-gradient(37deg, #FF9B11 0%, #ff9b114d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.crew .member-avatar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff3
}

.crew .member-avatar-icon {
  width: 80px;
  height: 80px;
  fill: none;
  stroke: #FFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 2
}

.crew .member-info {
  padding: 24px
}

.crew .member-name {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #003B50;
  margin: 0 0 8px
}

.crew .member-role {
  font-size: 15px;
  line-height: 1.5;
  color: #FF9B11;
  margin: 0 0 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em
}

.crew .member-bio {
  font-size: 15px;
  line-height: 1.7;
  color: #003B50;
  margin: 0
}

.crew .approach-segment {
  padding: 64px 32px;
  background: #FFF;
  position: relative
}

.crew .approach-segment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/infographic_assets/banner002.jpg);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  opacity: .08;
  pointer-events: none
}

.crew .approach-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start
}

.crew .approach-visual {
  position: relative
}

.crew .approach-frame {
  width: 100px;
  height: 100px;
  border: 3px solid #FF9B11;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.crew .approach-icon {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: #003B50;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.crew .approach-text {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.crew .approach-heading {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  color: #003B50;
  margin: 0
}

.crew .approach-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

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

.crew .approach-subtitle {
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  color: #003B50;
  margin: 0
}

.crew .approach-detail {
  font-size: 15px;
  line-height: 1.7;
  color: #003B50;
  margin: 0
}

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

.crew .approach-list li {
  font-size: 15px;
  line-height: 1.5;
  color: #003B50;
  padding-left: 24px;
  position: relative
}

.crew .approach-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #FF9B11;
  border-radius: 50%
}

@media (max-width: 1366px) {
  .crew .intro-wrap {
    grid-template-columns: 320px 1fr;
    gap: 48px;
    padding: 48px 24px
  }

  .crew .intro-image-zone {
    height: 440px
  }

  .crew .intro-text-zone {
    padding-top: 64px
  }

  .crew .intro-lead {
    font-size: 48px
  }

  .crew .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
  }

  .crew .approach-content {
    grid-template-columns: 280px 1fr;
    gap: 48px
  }

  .crew .approach-heading {
    font-size: 48px
  }
}

@media (max-width: 768px) {
  .crew .intro-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 16px
  }

  .crew .intro-image-zone {
    height: 320px
  }

  .crew .intro-text-zone {
    padding-top: 0
  }

  .crew .intro-lead {
    font-size: 40px
  }

  .crew .intro-links {
    flex-direction: column
  }

  .crew .intro-action,
  .crew .intro-secondary {
    width: 100%;
    text-align: center
  }

  .crew .intro-action:hover,
  .crew .intro-secondary:hover {
    width: 100%
  }

  .crew .profiles-area {
    padding: 48px 16px
  }

  .crew .profiles-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .crew .approach-segment {
    padding: 48px 16px
  }

  .crew .approach-content {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .crew .approach-heading {
    font-size: 40px
  }

  .crew .approach-columns {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

@media (max-width: 375px) {
  .crew .intro-lead {
    font-size: 32px
  }

  .crew .intro-desc {
    font-size: 17px
  }

  .crew .approach-heading {
    font-size: 32px
  }

  .crew .member-avatar {
    height: 240px
  }
}

.contact-pg {
  background: #fff;
  overflow-x: clip
}

.contact-pg .manifesto-zone {
  background: linear-gradient(37deg, #FF9B11 0%, #FF9B11 45%, #ff9b1100 100%);
  padding-top: 120px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden
}

.contact-pg .manifesto-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, #ffffff26 0%, transparent 60%);
  animation: fog-drift-manifesto 18s ease-in-out infinite;
  pointer-events: none
}

@keyframes fog-drift-manifesto {

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

  50% {
    transform: translate(40px, -30px);
    opacity: .5
  }
}

.contact-pg .manifesto-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px
}

.contact-pg .declaration-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center
}

.contact-pg .declaration-text h1 {
  font-size: 70px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 32px;
  font-weight: 700;
  letter-spacing: -.02em
}

.contact-pg .declaration-text h1 span {
  display: block
}

.contact-pg .declaration-intro {
  font-size: 24px;
  line-height: 1.5;
  color: #003B50;
  margin: 0 0 24px;
  text-align: left;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto
}

.contact-pg .declaration-body {
  font-size: 19px;
  line-height: 1.7;
  color: #003B50;
  text-align: left;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto
}

.contact-pg .declaration-body p {
  margin: 0 0 16px
}

.contact-pg .declaration-body p:last-child {
  margin-bottom: 0
}

.contact-pg .geometric-outline {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 280px;
  height: 280px;
  border: 3px solid #003b5033;
  border-radius: 48px;
  transform: translateY(-50%) rotate(15deg);
  animation: pulse-outline 4s ease-in-out infinite;
  pointer-events: none
}

@keyframes pulse-outline {

  0%,
  100% {
    transform: translateY(-50%) rotate(15deg) scale(1);
    opacity: .3
  }

  50% {
    transform: translateY(-50%) rotate(15deg) scale(1.08);
    opacity: .5
  }
}

.contact-pg .split-reach {
  display: flex;
  flex-direction: row;
  min-height: 680px;
  position: relative
}

.contact-pg .reach-neutral {
  flex: 1;
  background: #fff;
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

.contact-pg .reach-neutral::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 40%, #fff3 0%, transparent 50%);
  animation: fog-drift-neutral 16s ease-in-out infinite;
  pointer-events: none
}

@keyframes fog-drift-neutral {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: .4
  }

  50% {
    transform: translate(-35px, 25px);
    opacity: .6
  }
}

.contact-pg .reach-colored {
  flex: 1;
  background: #e6ddd4;
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.contact-pg .reach-colored::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 60%, #ff9b111f 0%, transparent 65%);
  animation: fog-drift-colored 20s ease-in-out infinite;
  pointer-events: none
}

@keyframes fog-drift-colored {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: .35
  }

  50% {
    transform: translate(50px, -40px);
    opacity: .55
  }
}

.contact-pg .reach-content {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.contact-pg .reach-content h2 {
  font-size: 56px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 24px;
  font-weight: 700
}

.contact-pg .reach-content p {
  font-size: 19px;
  line-height: 1.7;
  color: #003B50;
  margin: 0 0 16px
}

.contact-pg .reach-content p:last-child {
  margin-bottom: 0
}

.contact-pg .info-blocks {
  margin-top: 32px
}

.contact-pg .info-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #003b5026
}

.contact-pg .info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.contact-pg .info-label {
  font-size: 15px;
  line-height: 1.3;
  color: #FF9B11;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 8px;
  font-weight: 600
}

.contact-pg .info-value {
  font-size: 19px;
  line-height: 1.5;
  color: #003B50;
  margin: 0
}

.contact-pg .info-value a {
  color: #003B50;
  text-decoration: none;
  transition: color .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-pg .info-value a:hover {
  color: #FF9B11
}

.contact-pg .visual-rhythm {
  display: flex;
  gap: 8px;
  margin-top: 32px
}

.contact-pg .rhythm-dot {
  width: 8px;
  height: 8px;
  background: #FF9B11;
  border-radius: 999px;
  opacity: .6
}

.contact-pg .rhythm-dot:nth-child(2) {
  opacity: .8
}

.contact-pg .rhythm-dot:nth-child(3) {
  opacity: 1
}

.contact-pg .rhythm-dot:nth-child(4) {
  opacity: .8
}

.contact-pg .rhythm-dot:nth-child(5) {
  opacity: .6
}

.contact-pg .form-section {
  background: #F1F0F0;
  padding: 64px 32px;
  position: relative
}

.contact-pg .form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, #ffffff40 0%, transparent 55%);
  animation: fog-drift-form 22s ease-in-out infinite;
  pointer-events: none
}

@keyframes fog-drift-form {

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

  50% {
    transform: translate(-45px, 35px);
    opacity: .5
  }
}

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

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

.contact-pg .form-sidebar {
  width: 180px;
  flex-shrink: 0
}

.contact-pg .form-main {
  flex: 1;
  max-width: 720px
}

.contact-pg .form-sidebar h3 {
  font-size: 24px;
  line-height: 1.3;
  color: #003B50;
  margin: 0 0 16px;
  font-weight: 700
}

.contact-pg .sidebar-labels {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-pg .sidebar-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.3;
  color: #003B50
}

.contact-pg .sidebar-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0
}

.contact-pg .sidebar-icon svg {
  width: 100%;
  height: 100%;
  fill: #FF9B11
}

.contact-pg .form-main h2 {
  font-size: 56px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 32px;
  font-weight: 700
}

.contact-pg .form-main form {
  display: flex;
  flex-direction: column;
  gap: 24px
}

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

.contact-pg .field-label {
  font-size: 15px;
  line-height: 1.3;
  color: #003B50;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em
}

.contact-pg .field-input {
  width: 100%;
  padding: 16px;
  font-size: 19px;
  line-height: 1.5;
  color: #003B50;
  background: #fff;
  border: 2px solid #003b5033;
  border-radius: 10px;
  transition: border-color .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-pg .field-input::placeholder {
  color: #003b5066
}

.contact-pg .field-input:focus {
  outline: none;
  border-color: #FF9B11;
  box-shadow: -1px 2px 2px 0 #ff9b110f -1px 6px 22px 0 #ff9b111a
}

.contact-pg .field-select {
  width: 100%;
  padding: 16px;
  font-size: 19px;
  line-height: 1.5;
  color: #003B50;
  background: #fff;
  border: 2px solid #003b5033;
  border-radius: 10px;
  transition: border-color .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23003B50' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px
}

.contact-pg .field-select:focus {
  outline: none;
  border-color: #FF9B11;
  box-shadow: -1px 2px 2px 0 #ff9b110f -1px 6px 22px 0 #ff9b111a
}

.contact-pg .radio-group {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-pg .radio-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border: 2px solid #003b5033;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .3s cubic-bezier(0.4, 0, 0.2, 1), background-color .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-pg .radio-option:hover {
  border-color: #FF9B11;
  background: #ff9b110d
}

.contact-pg .radio-option input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: #FF9B11
}

.contact-pg .radio-option label {
  flex: 1;
  font-size: 19px;
  line-height: 1.5;
  color: #003B50;
  cursor: pointer;
  margin: 0
}

.contact-pg .privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #ff9b1114;
  border-radius: 10px
}

.contact-pg .privacy-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 4px 0 0;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #FF9B11
}

.contact-pg .privacy-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.7;
  color: #003B50;
  margin: 0
}

.contact-pg .privacy-text a {
  color: #FF9B11;
  text-decoration: underline;
  transition: color .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-pg .privacy-text a:hover {
  color: #003B50
}

.contact-pg .submit-btn {
  padding: 18px 48px;
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
  background: #003B50;
  border: none;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  cursor: pointer;
  transition: width .35s ease-in-out, background-color .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -1px 2px 2px 0 #003b500f -1px 6px 22px 0 #003b501a;
  align-self: flex-start;
  display: inline-block
}

.contact-pg .submit-btn:hover {
  background: #FF9B11;
  box-shadow: -1px 6px 22px 0 #ff9b111a -1px 10px 48px 0 #ff9b111c;
  width: 280px
}

.contact-pg .submit-btn:active {
  box-shadow: inset 0 2px 4px #003b5033
}

.contact-pg .double-wave-divider {
  height: 80px;
  position: relative;
  background: #fff;
  overflow: hidden
}

.contact-pg .wave-line-top {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(90deg, #FF9B11 0px, #FF9B11 40px, transparent 40px, transparent 80px);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 20'%3E%3Cpath d='M0,10 Q150,0 300,10 T600,10 T900,10 T1200,10' fill='none' stroke='black' stroke-width='20'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 20'%3E%3Cpath d='M0,10 Q150,0 300,10 T600,10 T900,10 T1200,10' fill='none' stroke='black' stroke-width='20'/%3E%3C/svg%3E");
  -webkit-mask-size: 1200px 20px;
  mask-size: 1200px 20px;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x
}

.contact-pg .wave-line-bottom {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(90deg, #003B50 0px, #003B50 40px, transparent 40px, transparent 80px);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 20'%3E%3Cpath d='M0,10 Q150,0 300,10 T600,10 T900,10 T1200,10' fill='none' stroke='black' stroke-width='20'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 20'%3E%3Cpath d='M0,10 Q150,0 300,10 T600,10 T900,10 T1200,10' fill='none' stroke='black' stroke-width='20'/%3E%3C/svg%3E");
  -webkit-mask-size: 1200px 20px;
  mask-size: 1200px 20px;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x
}

.contact-pg .showcase-visual {
  background: #fff;
  padding: 64px 32px;
  position: relative
}

.contact-pg .showcase-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 70%, #ffffff2e 0%, transparent 48%);
  animation: fog-drift-showcase 19s ease-in-out infinite;
  pointer-events: none
}

@keyframes fog-drift-showcase {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: .35
  }

  50% {
    transform: translate(-50px, -30px);
    opacity: .55
  }
}

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

.contact-pg .showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center
}

.contact-pg .showcase-text h2 {
  font-size: 56px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 24px;
  font-weight: 700
}

.contact-pg .showcase-text p {
  font-size: 19px;
  line-height: 1.7;
  color: #003B50;
  margin: 0 0 16px
}

.contact-pg .showcase-text p:last-child {
  margin-bottom: 0
}

.contact-pg .showcase-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: -1px 6px 22px 0 #003b501a -1px 10px 48px 0 #003b501c;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-pg .showcase-image-wrap:hover {
  transform: scale(1.03);
  box-shadow: -1px 10px 48px 0 #003b501c -1px 14px 64px 0 #003b5024
}

.contact-pg .showcase-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: filter .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-pg .showcase-image-wrap:hover img {
  filter: brightness(1.08)
}

.contact-pg .metric-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px
}

.contact-pg .metric-card {
  background: linear-gradient(135deg, #ff9b1114 0%, #003b500f 100%);
  padding: 32px 24px;
  border-radius: 18px;
  border: 2px solid #003b501f;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), border-color .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-pg .metric-card:hover {
  transform: translateY(-4px);
  border-color: #FF9B11
}

.contact-pg .metric-number {
  font-size: 56px;
  line-height: 1.1;
  color: #FF9B11;
  margin: 0 0 8px;
  font-weight: 700
}

.contact-pg .metric-label {
  font-size: 15px;
  line-height: 1.5;
  color: #003B50;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .08em
}

@media (max-width: 1366px) {
  .contact-pg .manifesto-zone {
    padding-top: 96px;
    padding-bottom: 48px
  }

  .contact-pg .declaration-text h1 {
    font-size: 56px
  }

  .contact-pg .geometric-outline {
    width: 220px;
    height: 220px
  }

  .contact-pg .split-reach {
    min-height: 600px
  }

  .contact-pg .reach-content h2 {
    font-size: 48px
  }

  .contact-pg .form-main h2 {
    font-size: 48px
  }

  .contact-pg .showcase-text h2 {
    font-size: 48px
  }

  .contact-pg .metric-number {
    font-size: 48px
  }
}

@media (max-width: 768px) {
  .contact-pg .manifesto-zone {
    padding-top: 64px;
    padding-bottom: 32px
  }

  .contact-pg .manifesto-inner {
    padding: 0 24px
  }

  .contact-pg .declaration-text h1 {
    font-size: 42px;
    margin-bottom: 24px
  }

  .contact-pg .declaration-intro {
    font-size: 19px;
    margin-bottom: 16px
  }

  .contact-pg .declaration-body {
    font-size: 17px
  }

  .contact-pg .geometric-outline {
    display: none
  }

  .contact-pg .split-reach {
    flex-direction: column;
    min-height: auto
  }

  .contact-pg .reach-neutral,
  .contact-pg .reach-colored {
    padding: 48px 24px
  }

  .contact-pg .reach-content h2 {
    font-size: 36px
  }

  .contact-pg .info-blocks {
    margin-top: 24px
  }

  .contact-pg .form-section {
    padding: 48px 24px
  }

  .contact-pg .form-layout {
    flex-direction: column;
    gap: 32px
  }

  .contact-pg .form-sidebar {
    width: 100%
  }

  .contact-pg .sidebar-labels {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px
  }

  .contact-pg .form-main h2 {
    font-size: 36px;
    margin-bottom: 24px
  }

  .contact-pg .submit-btn:hover {
    width: 100%
  }

  .contact-pg .showcase-visual {
    padding: 48px 24px
  }

  .contact-pg .showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .contact-pg .showcase-text h2 {
    font-size: 36px
  }

  .contact-pg .showcase-image-wrap img {
    height: 320px
  }

  .contact-pg .metric-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px
  }

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

@media (max-width: 375px) {
  .contact-pg .manifesto-zone {
    padding-top: 48px;
    padding-bottom: 24px
  }

  .contact-pg .manifesto-inner {
    padding: 0 16px
  }

  .contact-pg .declaration-text h1 {
    font-size: 36px
  }

  .contact-pg .declaration-intro {
    font-size: 17px
  }

  .contact-pg .declaration-body {
    font-size: 15px
  }

  .contact-pg .reach-neutral,
  .contact-pg .reach-colored {
    padding: 32px 16px
  }

  .contact-pg .reach-content h2 {
    font-size: 32px
  }

  .contact-pg .info-value {
    font-size: 17px
  }

  .contact-pg .form-section {
    padding: 32px 16px
  }

  .contact-pg .form-main h2 {
    font-size: 32px
  }

  .contact-pg .field-input,
  .contact-pg .field-select,
  .contact-pg .radio-option label {
    font-size: 17px
  }

  .contact-pg .submit-btn {
    width: 100%;
    padding: 16px 32px
  }

  .contact-pg .showcase-visual {
    padding: 32px 16px
  }

  .contact-pg .showcase-text h2 {
    font-size: 32px
  }

  .contact-pg .showcase-text p {
    font-size: 17px
  }

  .contact-pg .showcase-image-wrap img {
    height: 280px
  }

  .contact-pg .metric-card {
    padding: 24px 16px
  }

  .contact-pg .metric-number {
    font-size: 36px
  }
}

.arch {
  background: #FFF;
  max-width: 100%;
  overflow-x: clip
}

.arch .lead-zone {
  max-width: 1400px;
  margin: 0 auto;
  padding: 96px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
  position: relative
}

.arch .lead-zone::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 24px;
  width: 280px;
  height: 280px;
  background: linear-gradient(37deg, #ff9b1114 0%, #ff9b1100 100%);
  border-radius: 48px;
  z-index: 0;
  pointer-events: none
}

.arch .lead-txt {
  position: relative;
  z-index: 1
}

.arch .quote-mark {
  font-size: 240px;
  line-height: 1;
  color: #003b500a;
  position: absolute;
  top: -80px;
  left: -40px;
  font-weight: 700;
  pointer-events: none;
  user-select: none
}

.arch .lead-heading {
  font-size: 70px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 24px;
  font-weight: 700
}

.arch .lead-heading .marked {
  background: linear-gradient(37deg, #FF9B11 0%, #ff9b114d 100%);
  padding: 4px 16px;
  border-radius: 6px;
  display: inline-block
}

.arch .lead-subtext {
  font-size: 19px;
  line-height: 1.7;
  color: #003B50;
  margin: 0;
  opacity: .85
}

.arch .lead-img-card {
  background: #FFF;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: -1px 10px 48px 0 #003b501c;
  position: relative;
  z-index: 1;
  transform: translateY(0);
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.arch .lead-img-card:hover {
  transform: translateY(-8px)
}

.arch .lead-img-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.2)
}

.arch .catalog-wrap {
  background: linear-gradient(37deg, #ff9b1108 0%, #f1f0f080 100%);
  padding: 64px 0;
  position: relative
}

.arch .catalog-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px
}

.arch .catalog-heading {
  font-size: 56px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 64px;
  font-weight: 700;
  text-align: center
}

.arch .post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none
}

.arch .post-item {
  background: #FFF;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: -1px 6px 22px 0 #003b501a;
  transition: box-shadow .3s ease-in-out, transform .3s ease-in-out;
  display: flex;
  flex-direction: column
}

.arch .post-item:hover {
  box-shadow: -1px 10px 48px 0 #003b501c;
  transform: translateY(-4px)
}

.arch .post-thumb {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative
}

.arch .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.arch .post-item:hover .post-thumb img {
  transform: scale(1.08)
}

.arch .post-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #FF9B11;
  color: #FFF;
  font-size: 15px;
  line-height: 1.3;
  padding: 6px 16px;
  border-radius: 32px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .05em
}

.arch .post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1
}

.arch .post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.3;
  color: #003B50;
  opacity: .6
}

.arch .post-author {
  font-weight: 700
}

.arch .post-date {
  display: flex;
  align-items: center;
  gap: 4px
}

.arch .post-date::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #FF9B11;
  border-radius: 999px
}

.arch .post-heading {
  font-size: 24px;
  line-height: 1.3;
  color: #003B50;
  margin: 0 0 16px;
  font-weight: 700
}

.arch .post-link {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease-in-out
}

.arch .post-link:hover {
  color: #FF9B11
}

.arch .post-subtitle {
  font-size: 19px;
  line-height: 1.5;
  color: #003B50;
  margin: 0 0 16px;
  opacity: .75
}

.arch .post-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #003B50;
  margin: 0 0 24px;
  opacity: .7;
  flex-grow: 1
}

.arch .post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #003b501a
}

.arch .post-likes {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.3;
  color: #003B50;
  opacity: .6
}

.arch .like-icon {
  width: 20px;
  height: 20px;
  fill: #FF9B11
}

.arch .post-cta {
  background: transparent;
  color: #003B50;
  border: 2px solid #003B50;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background .3s ease-in-out, color .3s ease-in-out, width .3s ease-in-out;
  text-decoration: none;
  display: inline-block
}

.arch .post-cta:hover {
  background: #003B50;
  color: #FFF;
  width: calc(100% + 8px)
}

.arch .skills-zone {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 24px;
  position: relative
}

.arch .skills-zone::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 64px;
  width: 180px;
  height: 180px;
  background: #ff9b1114;
  border-radius: 999px;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none
}

.arch .skills-zone::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 120px;
  width: 120px;
  height: 120px;
  background: #003b500f;
  border-radius: 999px;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none
}

.arch .skills-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1
}

.arch .skills-content h2 {
  font-size: 56px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 24px;
  font-weight: 700
}

.arch .skills-content p {
  font-size: 19px;
  line-height: 1.7;
  color: #003B50;
  margin: 0 0 32px;
  opacity: .85
}

.arch .skill-bars {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.arch .skill-row {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.arch .skill-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  line-height: 1.3;
  color: #003B50;
  font-weight: 700;
  letter-spacing: .03em
}

.arch .skill-percent {
  color: #FF9B11
}

.arch .skill-track {
  width: 100%;
  height: 12px;
  background: #003b5014;
  border-radius: 32px;
  overflow: hidden;
  position: relative
}

.arch .skill-fill {
  height: 100%;
  background: linear-gradient(37deg, #FF9B11 0%, #ff9b11b3 100%);
  border-radius: 32px;
  transition: width .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.arch .skill-fill[data-level="92"] {
  width: 92%
}

.arch .skill-fill[data-level="87"] {
  width: 87%
}

.arch .skill-fill[data-level="78"] {
  width: 78%
}

.arch .skill-fill[data-level="84"] {
  width: 84%
}

.arch .metrics-stage {
  background: #003B50;
  padding: 64px 0;
  position: relative;
  overflow: hidden
}

.arch .metrics-stage::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: #ff9b111f;
  border-radius: 999px;
  z-index: 0;
  pointer-events: none
}

.arch .metrics-stage::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: #ff9b1114;
  border-radius: 999px;
  z-index: 0;
  pointer-events: none
}

.arch .metrics-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1
}

.arch .metrics-heading {
  font-size: 56px;
  line-height: 1.1;
  color: #FFF;
  margin: 0 0 64px;
  font-weight: 700;
  text-align: center
}

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

.arch .metric-card {
  background: #ffffff14;
  border: 2px solid #ff9b1133;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: background .35s ease-in-out, border-color .35s ease-in-out, transform .35s ease-in-out
}

.arch .metric-card:hover {
  background: #ffffff1f;
  border-color: #ff9b1166;
  transform: translateY(-8px)
}

.arch .metric-number {
  font-size: 70px;
  line-height: 1.1;
  color: #FF9B11;
  font-weight: 700;
  margin: 0 0 16px
}

.arch .metric-label {
  font-size: 19px;
  line-height: 1.5;
  color: #FFF;
  margin: 0;
  opacity: .9
}

.arch .steps-area {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 24px;
  position: relative
}

.arch .steps-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 32px;
  background: linear-gradient(90deg, #003B50 0%, #003B50 33.33%, transparent 33.33%, transparent 66.66%, #003B50 66.66%, #003B50 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 90% 100%, 80% 0, 70% 100%, 60% 0, 50% 100%, 40% 0, 30% 100%, 20% 0, 10% 100%, 0 0)
}

.arch .steps-heading {
  font-size: 56px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 64px;
  font-weight: 700;
  text-align: center
}

.arch .steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.arch .step-block {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: start;
  padding: 24px;
  background: #f1f0f066;
  border-radius: 10px;
  transition: background .3s ease-in-out
}

.arch .step-block:hover {
  background: #ff9b110f
}

.arch .step-num {
  font-size: 70px;
  line-height: 1;
  color: #FF9B11;
  font-weight: 700;
  text-align: center
}

.arch .step-txt h3 {
  font-size: 24px;
  line-height: 1.3;
  color: #003B50;
  margin: 0 0 16px;
  font-weight: 700
}

.arch .step-txt p {
  font-size: 15px;
  line-height: 1.7;
  color: #003B50;
  margin: 0;
  opacity: .8
}

.arch .change-visual {
  background: linear-gradient(37deg, #ff9b110d 0%, #f1f0f0cc 100%);
  padding: 64px 0
}

.arch .change-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px
}

.arch .change-heading {
  font-size: 56px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 64px;
  font-weight: 700;
  text-align: center
}

.arch .change-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px
}

.arch .change-value {
  font-size: 70px;
  line-height: 1;
  color: #003B50;
  font-weight: 700;
  background: #FFF;
  padding: 32px 64px;
  border-radius: 18px;
  box-shadow: -1px 6px 22px 0 #003b501a
}

.arch .change-arrow {
  width: 80px;
  height: 80px;
  fill: #FF9B11
}

@media (max-width: 1366px) {
  .arch .lead-zone {
    grid-template-columns: 1fr 300px;
    gap: 32px;
    padding: 64px 24px 48px
  }

  .arch .lead-heading {
    font-size: 56px
  }

  .arch .lead-img-card img {
    height: 360px
  }

  .arch .post-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px
  }

  .arch .metrics-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .arch .skills-layout {
    grid-template-columns: 1fr;
    gap: 48px
  }
}

@media (max-width: 768px) {
  .arch .lead-zone {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 16px 32px
  }

  .arch .lead-heading {
    font-size: 42px
  }

  .arch .lead-img-card {
    max-width: 400px;
    margin: 0 auto
  }

  .arch .lead-img-card img {
    height: 300px
  }

  .arch .catalog-heading {
    font-size: 42px;
    margin: 0 0 48px
  }

  .arch .post-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .arch .skills-zone {
    padding: 48px 16px
  }

  .arch .skills-content h2 {
    font-size: 42px
  }

  .arch .metrics-heading {
    font-size: 42px;
    margin: 0 0 48px
  }

  .arch .metrics-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .arch .steps-heading {
    font-size: 42px;
    margin: 0 0 48px
  }

  .arch .step-block {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .arch .change-heading {
    font-size: 42px;
    margin: 0 0 48px
  }

  .arch .change-display {
    flex-direction: column;
    gap: 24px
  }

  .arch .change-value {
    padding: 24px 48px
  }
}

@media (max-width: 375px) {
  .arch .lead-heading {
    font-size: 32px
  }

  .arch .catalog-heading,
  .arch .skills-content h2,
  .arch .metrics-heading,
  .arch .steps-heading,
  .arch .change-heading {
    font-size: 32px
  }

  .arch .metric-number,
  .arch .step-num,
  .arch .change-value {
    font-size: 56px
  }

  .arch .post-thumb {
    height: 200px
  }
}

.first {
  background: #fff;
  color: #003B50;
  overflow-x: clip
}

.first .opening-zone {
  position: relative;
  padding: 64px 24px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 480px
}

.first .opening-zone::before {
  content: '';
  position: absolute;
  top: 32px;
  right: 8%;
  width: 180px;
  height: 180px;
  border-top: 4px solid #FF9B11;
  border-right: 4px solid #FF9B11;
  opacity: .3;
  pointer-events: none
}

.first .opening-zone::after {
  content: '';
  position: absolute;
  bottom: 48px;
  left: 12%;
  width: 220px;
  height: 140px;
  background: linear-gradient(37deg, #ff9b1126 0%, #ff9b1100 70%);
  clip-path: polygon(0 0, 100% 20%, 85% 100%, 0 80%);
  pointer-events: none
}

.first .opening-content {
  position: relative;
  z-index: 2
}

.first .opening-visual {
  position: relative;
  height: 420px;
  border-radius: 18px;
  overflow: hidden
}

.first .opening-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(0);
  transition: filter .35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative
}

.first .opening-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, #003b5000 0%, #003b5099 100%);
  pointer-events: none
}

.first .opening-visual:hover img {
  filter: blur(0)
}

.first .numeric-accent {
  font-size: 70px;
  line-height: 1.1;
  color: #FF9B11;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -.02em
}

.first .opening-statement {
  font-size: 56px;
  line-height: 1.1;
  color: #003B50;
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: -.01em
}

.first .opening-explanation {
  font-size: 19px;
  line-height: 1.5;
  color: #003B50;
  margin: 0;
  max-width: 480px
}

.first .curved-decoration {
  position: absolute;
  top: 15%;
  left: -5%;
  width: 300px;
  height: 300px;
  pointer-events: none;
  opacity: .08;
  z-index: 1
}

.first .curved-decoration svg {
  width: 100%;
  height: 100%
}

.first .creator-showcase {
  padding: 64px 24px;
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(37deg, #F1F0F0 0%, #f1f0f000 100%)
}

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

.first .creator-intro {
  text-align: center;
  margin: 0 0 64px
}

.first .creator-intro h2 {
  font-size: 56px;
  line-height: 1.3;
  color: #003B50;
  margin: 0 0 24px;
  font-weight: 700
}

.first .creator-intro p {
  font-size: 19px;
  line-height: 1.5;
  color: #003B50;
  margin: 0 auto;
  max-width: 680px
}

.first .creator-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: -1px 2px 2px 0 #ff9b110f -1px 6px 22px 0 #ff9b111a;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.first .creator-card:hover {
  transform: translateY(-4px);
  box-shadow: -1px 10px 48px 0 #ff9b111c
}

.first .creator-photo {
  width: 100%;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 24px
}

.first .creator-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transition: filter .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.first .creator-card:hover .creator-photo img {
  filter: blur(0)
}

.first .creator-name {
  font-size: 24px;
  line-height: 1.3;
  color: #003B50;
  margin: 0 0 8px;
  font-weight: 700
}

.first .creator-role {
  font-size: 15px;
  line-height: 1.5;
  color: #FF9B11;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.first .creator-bio {
  font-size: 15px;
  line-height: 1.7;
  color: #003B50;
  margin: 0
}

.first .distance-reveal {
  padding: 64px 24px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative
}

.first .distance-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center
}

.first .distance-text h2 {
  font-size: 56px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 32px;
  font-weight: 700
}

.first .distance-text p {
  font-size: 19px;
  line-height: 1.7;
  color: #003B50;
  margin: 0 0 24px
}

.first .distance-text p:last-child {
  margin: 0
}

.first .distance-visual {
  position: relative;
  height: 480px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: -1px 6px 22px 0 #003b501a
}

.first .distance-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
  transition: filter .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.first .distance-visual:hover img {
  filter: blur(0)
}

.first .conditions-segment {
  padding: 64px 24px;
  background: #F1F0F0;
  position: relative;
  animation: bg-pulse 6s ease-in-out infinite
}

@keyframes bg-pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .92
  }
}

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

.first .conditions-header {
  text-align: left;
  margin: 0 0 64px;
  max-width: 720px
}

.first .conditions-header h2 {
  font-size: 56px;
  line-height: 1.3;
  color: #003B50;
  margin: 0 0 24px;
  font-weight: 700
}

.first .conditions-header p {
  font-size: 19px;
  line-height: 1.5;
  color: #003B50;
  margin: 0
}

.first .conditions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

.first .condition-item {
  background: #fff;
  padding: 32px;
  border-radius: 10px;
  border-left: 0;
  box-shadow: -1px 2px 2px 0 #003b500f;
  transition: transform .28s ease-in-out
}

.first .condition-item:hover {
  transform: translateX(8px)
}

.first .condition-marker {
  width: 48px;
  height: 48px;
  background: linear-gradient(37deg, #FF9B11 0%, #ff9b1199 100%);
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px
}

.first .condition-marker svg {
  width: 24px;
  height: 24px;
  fill: #fff
}

.first .condition-title {
  font-size: 24px;
  line-height: 1.3;
  color: #003B50;
  margin: 0 0 16px;
  font-weight: 700
}

.first .condition-description {
  font-size: 15px;
  line-height: 1.7;
  color: #003B50;
  margin: 0
}

.first .metrics-display {
  padding: 64px 24px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative
}

.first .metrics-divider {
  height: 2px;
  background: repeating-linear-gradient(to right, #FF9B11 0px, #FF9B11 12px, transparent 12px, transparent 24px);
  margin: 0 0 64px
}

.first .metrics-header {
  text-align: center;
  margin: 0 0 64px
}

.first .metrics-header h2 {
  font-size: 56px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 24px;
  font-weight: 700
}

.first .metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px
}

.first .metric-box {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(37deg, #ff9b1114 0%, #ff9b1100 100%);
  border-radius: 10px;
  transition: background .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.first .metric-box:hover {
  background: linear-gradient(37deg, #ff9b1126 0%, #ff9b1100 100%)
}

.first .metric-value {
  font-size: 70px;
  line-height: 1.1;
  color: #FF9B11;
  margin: 0 0 16px;
  font-weight: 700
}

.first .metric-label {
  font-size: 19px;
  line-height: 1.3;
  color: #003B50;
  margin: 0;
  font-weight: 600
}

.first .approach-foundation {
  padding: 64px 24px;
  max-width: 1400px;
  margin: 0 auto
}

.first .approach-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start
}

.first .approach-left {
  position: sticky;
  top: 100px
}

.first .approach-left h2 {
  font-size: 56px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 24px;
  font-weight: 700
}

.first .approach-left p {
  font-size: 19px;
  line-height: 1.5;
  color: #003B50;
  margin: 0
}

.first .approach-steps {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.first .step-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 32px;
  background: #fff;
  border-radius: 18px;
  box-shadow: -1px 2px 2px 0 #003b500f -1px 6px 22px 0 #003b501a;
  transition: box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.first .step-block:hover {
  box-shadow: -1px 10px 48px 0 #003b501c
}

.first .step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(37deg, #003B50 0%, #003b50cc 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0
}

.first .step-content h3 {
  font-size: 24px;
  line-height: 1.3;
  color: #003B50;
  margin: 0 0 16px;
  font-weight: 700
}

.first .step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #003B50;
  margin: 0
}

.first .experience-moment {
  padding: 64px 24px;
  background: #fff;
  position: relative
}

.first .experience-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center
}

.first .experience-photo {
  width: 380px;
  height: 520px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: -1px 6px 22px 0 #ff9b111a;
  position: relative;
  transform: translateX(-32px)
}

.first .experience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transition: filter .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.first .experience-photo:hover img {
  filter: blur(0)
}

.first .experience-story {
  padding: 32px 64px 32px 32px
}

.first .experience-story h2 {
  font-size: 56px;
  line-height: 1.3;
  color: #003B50;
  margin: 0 0 32px;
  font-weight: 700
}

.first .experience-quote {
  font-size: 24px;
  line-height: 1.5;
  color: #003B50;
  margin: 0 0 24px;
  font-style: italic;
  position: relative;
  padding: 0 0 0 32px
}

.first .experience-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #FF9B11;
  border-radius: 6px
}

.first .experience-details p {
  font-size: 15px;
  line-height: 1.7;
  color: #003B50;
  margin: 0 0 16px
}

.first .experience-details p:last-child {
  margin: 0
}

.first .experience-attribution {
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 2px solid #F1F0F0
}

.first .attribution-name {
  font-size: 19px;
  line-height: 1.3;
  color: #003B50;
  margin: 0 0 4px;
  font-weight: 700
}

.first .attribution-context {
  font-size: 15px;
  line-height: 1.5;
  color: #FF9B11;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .06em
}

@media (max-width: 1366px) {
  .first .opening-zone {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 24px
  }

  .first .opening-visual {
    height: 360px
  }

  .first .creator-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .first .distance-layout {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .first .distance-visual {
    height: 400px
  }

  .first .conditions-list {
    grid-template-columns: 1fr
  }

  .first .metrics-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .first .approach-split {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .first .approach-left {
    position: static
  }

  .first .experience-wrapper {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .first .experience-photo {
    width: 100%;
    height: 420px;
    transform: translateX(0)
  }

  .first .experience-story {
    padding: 32px
  }
}

@media (max-width: 768px) {
  .first .opening-zone {
    padding: 32px 16px
  }

  .first .numeric-accent {
    font-size: 56px
  }

  .first .opening-statement {
    font-size: 24px
  }

  .first .opening-explanation {
    font-size: 15px
  }

  .first .opening-visual {
    height: 280px
  }

  .first .creator-showcase {
    padding: 48px 16px
  }

  .first .creator-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .first .creator-intro {
    margin: 0 0 48px
  }

  .first .creator-intro h2 {
    font-size: 24px
  }

  .first .creator-intro p {
    font-size: 15px
  }

  .first .distance-reveal {
    padding: 48px 16px
  }

  .first .distance-text h2 {
    font-size: 24px;
    margin: 0 0 24px
  }

  .first .distance-text p {
    font-size: 15px
  }

  .first .distance-visual {
    height: 320px
  }

  .first .conditions-segment {
    padding: 48px 16px
  }

  .first .conditions-header {
    margin: 0 0 48px
  }

  .first .conditions-header h2 {
    font-size: 24px
  }

  .first .conditions-header p {
    font-size: 15px
  }

  .first .condition-item {
    padding: 24px
  }

  .first .metrics-display {
    padding: 48px 16px
  }

  .first .metrics-header h2 {
    font-size: 24px
  }

  .first .metrics-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .first .metric-value {
    font-size: 56px
  }

  .first .approach-foundation {
    padding: 48px 16px
  }

  .first .approach-left h2 {
    font-size: 24px
  }

  .first .approach-left p {
    font-size: 15px
  }

  .first .step-block {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px
  }

  .first .step-number {
    width: 48px;
    height: 48px;
    font-size: 19px
  }

  .first .step-content h3 {
    font-size: 19px
  }

  .first .experience-moment {
    padding: 48px 16px
  }

  .first .experience-photo {
    height: 360px
  }

  .first .experience-story {
    padding: 24px
  }

  .first .experience-story h2 {
    font-size: 24px;
    margin: 0 0 24px
  }

  .first .experience-quote {
    font-size: 19px;
    padding: 0 0 0 24px
  }
}

@media (max-width: 375px) {
  .first .opening-zone {
    padding: 24px 16px
  }

  .first .numeric-accent {
    font-size: 24px
  }

  .first .opening-statement {
    font-size: 19px
  }

  .first .opening-visual {
    height: 240px
  }

  .first .creator-showcase {
    padding: 32px 16px
  }

  .first .creator-intro h2 {
    font-size: 19px
  }

  .first .distance-reveal {
    padding: 32px 16px
  }

  .first .distance-text h2 {
    font-size: 19px
  }

  .first .distance-visual {
    height: 280px
  }

  .first .conditions-segment {
    padding: 32px 16px
  }

  .first .conditions-header h2 {
    font-size: 19px
  }

  .first .metrics-display {
    padding: 32px 16px
  }

  .first .metrics-header h2 {
    font-size: 19px
  }

  .first .metric-value {
    font-size: 24px
  }

  .first .approach-foundation {
    padding: 32px 16px
  }

  .first .approach-left h2 {
    font-size: 19px
  }

  .first .experience-moment {
    padding: 32px 16px
  }

  .first .experience-photo {
    height: 300px
  }

  .first .experience-story h2 {
    font-size: 19px
  }

  .first .experience-quote {
    font-size: 15px
  }
}

.abt-us {
  background: #FFF;
  color: #003B50;
  max-width: 1400px;
  margin: 0 auto
}

.abt-us .intro-zone {
  position: relative;
  padding: 64px 24px;
  text-align: center;
  overflow: hidden
}

.abt-us .intro-zone::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: linear-gradient(37deg, #ff9b1114 0%, #ff9b1100 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1
}

.abt-us .intro-zone::after {
  content: '∞';
  position: absolute;
  top: 32px;
  right: 64px;
  font-size: 280px;
  line-height: 1;
  color: #003b5008;
  font-weight: 100;
  pointer-events: none;
  z-index: 0
}

.abt-us .intro-img-wrap {
  position: relative;
  max-width: 700px;
  margin: 0 auto 32px;
  border-radius: 18px;
  overflow: hidden;
  z-index: 2
}

.abt-us .intro-img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 30%, #003b5040 100%);
  pointer-events: none;
  z-index: 2
}

.abt-us .intro-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .intro-img-wrap:hover .intro-img {
  transform: scale(1.08) translateX(-12px)
}

.abt-us .intro-txt {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto
}

.abt-us .intro-quote {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 140px;
  line-height: 1;
  color: #ff9b111f;
  font-weight: 700;
  pointer-events: none
}

.abt-us .intro-headline {
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 700;
  color: #003B50
}

.abt-us .intro-desc {
  font-size: 19px;
  line-height: 1.7;
  color: #003B50;
  text-align: left;
  max-width: 680px;
  margin: 0 auto
}

.abt-us .journey-zone {
  padding: 64px 24px;
  background: linear-gradient(37deg, #F1F0F0 0%, #f1f0f066 100%);
  position: relative
}

.abt-us .journey-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #ff9b1105 2px, #ff9b1105 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, #ff9b1105 2px, #ff9b1105 4px);
  pointer-events: none;
  opacity: .6
}

.abt-us .journey-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.abt-us .journey-header {
  text-align: center;
  margin: 0 0 64px
}

.abt-us .journey-title {
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 700;
  color: #003B50
}

.abt-us .journey-subtitle {
  font-size: 19px;
  line-height: 1.5;
  color: #003B50;
  max-width: 600px;
  margin: 0 auto
}

.abt-us .journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative
}

.abt-us .journey-grid::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, #ff9b114d 0%, #ff9b11cc 25%, #ff9b11cc 50%, #ff9b11cc 75%, #ff9b114d 100%);
  z-index: 0;
  animation: lineDrawJourney 2.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: left center
}

@keyframes lineDrawJourney {
  0% {
    transform: scaleX(0)
  }

  100% {
    transform: scaleX(1)
  }
}

.abt-us .journey-step {
  position: relative;
  z-index: 1;
  text-align: center
}

.abt-us .journey-icon-wrap {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -1px 6px 22px 0 #ff9b111a;
  position: relative;
  transition: background .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .journey-icon-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(37deg, #ff9b1114 0%, transparent 70%);
  transition: opacity .35s ease-in-out;
  opacity: 0
}

.abt-us .journey-step:hover .journey-icon-wrap::before {
  opacity: 1
}

.abt-us .journey-step:hover .journey-icon-wrap {
  background: linear-gradient(135deg, #ff9b110d 0%, #FFF 100%);
  box-shadow: -1px 10px 48px 0 #ff9b111c
}

.abt-us .journey-icon {
  width: 72px;
  height: 72px;
  position: relative;
  z-index: 2
}

.abt-us .journey-icon svg {
  width: 100%;
  height: 100%;
  fill: #FF9B11
}

.abt-us .journey-step-label {
  font-size: 15px;
  line-height: 1.3;
  color: #FF9B11;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 8px;
  font-weight: 600
}

.abt-us .journey-step-title {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 8px;
  font-weight: 700;
  color: #003B50
}

.abt-us .journey-step-desc {
  font-size: 15px;
  line-height: 1.5;
  color: #003B50;
  margin: 0
}

.abt-us .divider-wrap {
  text-align: center;
  padding: 48px 24px;
  position: relative
}

.abt-us .divider-line {
  display: inline-flex;
  align-items: center;
  gap: 16px
}

.abt-us .divider-line::before,
.abt-us .divider-line::after {
  content: '';
  width: 80px;
  height: 2px;
  background: linear-gradient(37deg, #ff9b1199 0%, #003b504d 100%)
}

.abt-us .divider-diamond {
  width: 12px;
  height: 12px;
  background: #FF9B11;
  transform: rotate(45deg)
}

.abt-us .mission-zone {
  padding: 64px 24px;
  background: #FFF;
  position: relative
}

.abt-us .mission-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.abt-us .mission-content-col {
  position: relative
}

.abt-us .mission-label {
  font-size: 15px;
  line-height: 1.3;
  color: #FF9B11;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 16px;
  font-weight: 600
}

.abt-us .mission-headline {
  font-size: 70px;
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 700;
  color: #003B50;
  display: flex;
  flex-direction: column
}

.abt-us .mission-headline span {
  display: block
}

.abt-us .mission-text {
  font-size: 19px;
  line-height: 1.7;
  color: #003B50;
  margin: 0 0 24px
}

.abt-us .mission-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0 0
}

.abt-us .stat-card {
  padding: 24px;
  background: linear-gradient(37deg, #ff9b110f 0%, #f1f0f066 100%);
  border-radius: 10px;
  transition: background .3s ease-in-out, transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .stat-card:hover {
  background: linear-gradient(37deg, #ff9b111f 0%, #f1f0f099 100%);
  transform: translateY(-4px)
}

.abt-us .stat-number {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  color: #FF9B11;
  margin: 0 0 8px;
  display: block
}

.abt-us .stat-label {
  font-size: 15px;
  line-height: 1.5;
  color: #003B50;
  margin: 0
}

.abt-us .mission-img-col {
  position: relative
}

.abt-us .mission-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.abt-us .mission-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: -1px 6px 22px 0 #003b501a
}

.abt-us .mission-img-wrap:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3
}

.abt-us .mission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .32s ease-in-out
}

.abt-us .mission-img-wrap:first-child .mission-img {
  height: 520px
}

.abt-us .mission-img-wrap:nth-child(2) .mission-img,
.abt-us .mission-img-wrap:nth-child(3) .mission-img {
  height: 252px
}

.abt-us .mission-img-wrap:hover .mission-img {
  transform: scale(1.06) translateX(8px)
}

.abt-us .approach-zone {
  padding: 64px 24px;
  background: linear-gradient(37deg, #003b5008 0%, #ff9b1105 100%);
  position: relative
}

.abt-us .approach-inner {
  max-width: 1200px;
  margin: 0 auto
}

.abt-us .approach-header {
  text-align: center;
  margin: 0 0 64px
}

.abt-us .approach-title {
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 700;
  color: #003B50
}

.abt-us .approach-subtitle {
  font-size: 19px;
  line-height: 1.5;
  color: #003B50;
  max-width: 700px;
  margin: 0 auto
}

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

.abt-us .approach-card {
  background: #FFF;
  padding: 32px;
  border-radius: 18px;
  box-shadow: -1px 2px 2px 0 #003b500f;
  transition: box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1), transform .3s ease-in-out;
  position: relative;
  overflow: hidden
}

.abt-us .approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF9B11 0%, #ff9b114d 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .approach-card:hover::before {
  transform: scaleX(1)
}

.abt-us .approach-card:hover {
  box-shadow: -1px 10px 48px 0 #003b501c;
  transform: translateY(-6px)
}

.abt-us .approach-card-number {
  font-size: 70px;
  line-height: 1;
  font-weight: 700;
  color: #ff9b1126;
  margin: 0 0 16px;
  display: block
}

.abt-us .approach-card-title {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 16px;
  font-weight: 700;
  color: #003B50
}

.abt-us .approach-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: #003B50;
  margin: 0
}

.abt-us .cta-zone {
  padding: 64px 24px;
  background: linear-gradient(37deg, #003B50 0%, #003b50eb 100%);
  text-align: center;
  position: relative;
  overflow: hidden
}

.abt-us .cta-zone::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ff9b111f 0%, transparent 70%);
  pointer-events: none
}

.abt-us .cta-zone::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ff9b1114 0%, transparent 70%);
  pointer-events: none
}

.abt-us .cta-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.abt-us .cta-headline {
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 700;
  color: #FFF
}

.abt-us .cta-text {
  font-size: 19px;
  line-height: 1.7;
  color: #ffffffeb;
  margin: 0 0 32px
}

.abt-us .cta-btn {
  display: inline-block;
  padding: 16px 64px;
  background: #FF9B11;
  color: #003B50;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background .3s ease-in-out, width .35s cubic-bezier(0.4, 0, 0.2, 1), padding .35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -1px 6px 22px 0 #ff9b111a
}

.abt-us .cta-btn:hover {
  background: linear-gradient(37deg, #FF9B11 0%, #FFB84D 100%);
  padding: 16px 80px
}

.abt-us .cta-btn:focus {
  outline: 3px solid #ff9b1166;
  outline-offset: 4px
}

.abt-us .cta-btn:active {
  transform: scale(0.98)
}

@media (max-width: 1366px) {

  .abt-us .intro-headline,
  .abt-us .journey-title,
  .abt-us .mission-headline,
  .abt-us .approach-title,
  .abt-us .cta-headline {
    font-size: 56px
  }

  .abt-us .mission-headline {
    font-size: 56px
  }

  .abt-us .stat-number,
  .abt-us .approach-card-number {
    font-size: 56px
  }

  .abt-us .journey-grid {
    gap: 24px
  }

  .abt-us .journey-icon-wrap {
    width: 140px;
    height: 140px
  }

  .abt-us .journey-icon {
    width: 64px;
    height: 64px
  }
}

@media (max-width: 768px) {
  .abt-us .intro-zone {
    padding: 48px 16px
  }

  .abt-us .intro-zone::after {
    font-size: 180px;
    right: 16px
  }

  .abt-us .intro-img {
    height: 320px
  }

  .abt-us .intro-headline {
    font-size: 42px
  }

  .abt-us .intro-desc {
    font-size: 17px
  }

  .abt-us .journey-zone {
    padding: 48px 16px
  }

  .abt-us .journey-title {
    font-size: 42px
  }

  .abt-us .journey-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
  }

  .abt-us .journey-grid::before {
    display: none
  }

  .abt-us .journey-icon-wrap {
    width: 120px;
    height: 120px
  }

  .abt-us .journey-icon {
    width: 56px;
    height: 56px
  }

  .abt-us .mission-zone {
    padding: 48px 16px
  }

  .abt-us .mission-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .abt-us .mission-headline {
    font-size: 42px
  }

  .abt-us .mission-img-wrap:first-child .mission-img {
    height: 420px
  }

  .abt-us .mission-img-wrap:nth-child(2) .mission-img,
  .abt-us .mission-img-wrap:nth-child(3) .mission-img {
    height: 200px
  }

  .abt-us .approach-zone {
    padding: 48px 16px
  }

  .abt-us .approach-title {
    font-size: 42px
  }

  .abt-us .approach-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .abt-us .cta-zone {
    padding: 48px 16px
  }

  .abt-us .cta-headline {
    font-size: 42px
  }

  .abt-us .cta-btn {
    padding: 16px 48px
  }

  .abt-us .cta-btn:hover {
    padding: 16px 56px
  }
}

@media (max-width: 375px) {

  .abt-us .intro-headline,
  .abt-us .journey-title,
  .abt-us .mission-headline,
  .abt-us .approach-title,
  .abt-us .cta-headline {
    font-size: 36px
  }

  .abt-us .intro-img {
    height: 280px
  }

  .abt-us .journey-grid {
    grid-template-columns: 1fr
  }

  .abt-us .mission-stats {
    grid-template-columns: 1fr
  }

  .abt-us .mission-img-grid {
    grid-template-columns: 1fr
  }

  .abt-us .mission-img-wrap:first-child {
    grid-column: 1;
    grid-row: 1
  }

  .abt-us .mission-img-wrap:first-child .mission-img,
  .abt-us .mission-img-wrap:nth-child(2) .mission-img,
  .abt-us .mission-img-wrap:nth-child(3) .mission-img {
    height: 280px
  }

  .abt-us .cta-btn {
    padding: 16px 32px;
    font-size: 14px
  }

  .abt-us .cta-btn:hover {
    padding: 16px 40px
  }
}

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

.learn-prog .top-intro {
  position: relative;
  padding: 64px 24px;
  overflow: hidden;
  background: linear-gradient(37deg, #003B50 0%, #003b50d9 100%)
}

.top-intro::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 100%;
  background: radial-gradient(ellipse at 85% 15%, #ff9b112e 0%, transparent 60%);
  pointer-events: none
}

.top-intro::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none
}

.learn-prog .top-intro .intro-wrap {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.learn-prog .top-intro .intro-content {
  max-width: 720px
}

.learn-prog .top-intro h1 {
  font-size: 56px;
  line-height: 1.1;
  color: #FFF;
  margin: 0 0 24px;
  letter-spacing: -.02em
}

.learn-prog .top-intro .intro-desc {
  font-size: 19px;
  line-height: 1.7;
  color: #ffffffeb;
  margin: 0
}

.learn-prog .foundation-grid {
  padding: 64px 24px;
  background: #F1F0F0;
  position: relative
}

.learn-prog .foundation-grid .grid-container {
  max-width: 1400px;
  margin: 0 auto
}

.learn-prog .foundation-grid .grid-header {
  margin: 0 0 64px
}

.learn-prog .foundation-grid h2 {
  font-size: 56px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 24px;
  text-align: center
}

.learn-prog .foundation-grid .grid-intro {
  font-size: 19px;
  line-height: 1.7;
  color: #003B50;
  margin: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto
}

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

.learn-prog .foundation-grid .skill-card {
  background: #FFF;
  border-radius: 18px;
  padding: 32px;
  box-shadow: -1px 2px 2px 0 #003b500f -1px 6px 22px 0 #003b501a;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.learn-prog .foundation-grid .skill-card:hover {
  transform: translateY(-8px);
  box-shadow: -1px 10px 48px 0 #003b501c
}

.learn-prog .foundation-grid .skill-card.featured {
  grid-column: span 2;
  background: linear-gradient(37deg, #FF9B11 0%, #ff9b11e0 100%)
}

.learn-prog .foundation-grid .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: #F1F0F0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px
}

.learn-prog .foundation-grid .skill-card.featured .card-icon {
  background: #ffffff40
}

.learn-prog .foundation-grid .card-icon svg {
  width: 32px;
  height: 32px;
  fill: #003B50
}

.learn-prog .foundation-grid .skill-card.featured .card-icon svg {
  fill: #FFF
}

.learn-prog .foundation-grid .skill-card h3 {
  font-size: 24px;
  line-height: 1.3;
  color: #003B50;
  margin: 0 0 16px
}

.learn-prog .foundation-grid .skill-card.featured h3 {
  color: #FFF
}

.learn-prog .foundation-grid .skill-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #003B50;
  margin: 0
}

.learn-prog .foundation-grid .skill-card.featured p {
  color: #fffffff2
}

.learn-prog .journey-visual {
  padding: 0;
  background: linear-gradient(180deg, #003B50 0%, #00536E 100%);
  position: relative;
  overflow: hidden
}

.learn-prog .journey-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg width='100' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,30 Q25,10 50,30 T100,30 L100,0 L0,0 Z' fill='%23F1F0F0'/%3E%3C/svg%3E") repeat-x;
  background-size: 100px 60px;
  pointer-events: none
}

.learn-prog .journey-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg width='100' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,30 Q25,50 50,30 T100,30 L100,60 L0,60 Z' fill='%23FFFFFF'/%3E%3C/svg%3E") repeat-x;
  background-size: 100px 60px;
  pointer-events: none
}

.learn-prog .journey-visual .journey-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 24px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center
}

.learn-prog .journey-visual .journey-text {
  flex: 3
}

.learn-prog .journey-visual h2 {
  font-size: 70px;
  line-height: 1.1;
  color: #FFF;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column
}

.learn-prog .journey-visual h2 span {
  display: block
}

.learn-prog .journey-visual .journey-desc {
  font-size: 19px;
  line-height: 1.7;
  color: #ffffffe6;
  margin: 0 0 24px
}

.learn-prog .journey-visual .journey-detail {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffffd9;
  margin: 0
}

.learn-prog .journey-visual .journey-image {
  flex: 1;
  position: relative
}

.learn-prog .journey-visual .journey-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: -1px 10px 48px 0 #ff9b111c;
  display: block;
  position: relative
}

.learn-prog .journey-visual .journey-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #003b504d 0%, transparent 40%);
  border-radius: 18px;
  pointer-events: none;
  z-index: 1
}

.learn-prog .metrics-compare {
  padding: 64px 24px;
  background: #FFF;
  position: relative
}

.learn-prog .metrics-compare::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #FF9B11 50%, transparent 100%);
  animation: edge-pulse 4s cubic-bezier(0.4, 0, 0.2, 1) infinite
}

.learn-prog .metrics-compare::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #003B50 50%, transparent 100%);
  animation: edge-pulse 4s cubic-bezier(0.4, 0, 0.2, 1) infinite 2s
}

@keyframes edge-pulse {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: .8
  }
}

.learn-prog .metrics-compare .metrics-wrap {
  max-width: 1400px;
  margin: 0 auto
}

.learn-prog .metrics-compare h2 {
  font-size: 56px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 64px;
  text-align: center
}

.learn-prog .metrics-compare .comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin: 0 0 64px
}

.learn-prog .metrics-compare .metric-block {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.learn-prog .metrics-compare .metric-label {
  font-size: 15px;
  line-height: 1.5;
  color: #003B50;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0;
  opacity: .7
}

.learn-prog .metrics-compare .metric-value {
  font-size: 70px;
  line-height: 1.1;
  margin: 0;
  font-weight: 700
}

.learn-prog .metrics-compare .metric-block:first-child .metric-value {
  color: #FF9B11
}

.learn-prog .metrics-compare .metric-block:last-child .metric-value {
  color: #003B50
}

.learn-prog .metrics-compare .metric-explain {
  font-size: 19px;
  line-height: 1.7;
  color: #003B50;
  margin: 0
}

.learn-prog .metrics-compare .steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0
}

.learn-prog .metrics-compare .steps-list li {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: #F1F0F0;
  border-radius: 10px;
  transition: background .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.learn-prog .metrics-compare .steps-list li:hover {
  background: #ff9b1114
}

.learn-prog .metrics-compare .step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background: #FF9B11;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 700
}

.learn-prog .metrics-compare .step-content h3 {
  font-size: 24px;
  line-height: 1.3;
  color: #003B50;
  margin: 0 0 8px
}

.learn-prog .metrics-compare .step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #003B50;
  margin: 0
}

@media (max-width: 1366px) {
  .learn-prog .top-intro {
    padding: 64px 24px
  }

  .learn-prog .top-intro h1 {
    font-size: 56px
  }

  .learn-prog .foundation-grid h2,
  .learn-prog .metrics-compare h2 {
    font-size: 56px
  }

  .learn-prog .journey-visual h2 {
    font-size: 56px
  }

  .learn-prog .metrics-compare .metric-value {
    font-size: 56px
  }
}

@media (max-width: 768px) {
  .learn-prog .top-intro {
    padding: 48px 16px
  }

  .learn-prog .top-intro h1 {
    font-size: 24px;
    margin: 0 0 16px
  }

  .learn-prog .top-intro .intro-desc {
    font-size: 15px
  }

  .learn-prog .foundation-grid {
    padding: 48px 16px
  }

  .learn-prog .foundation-grid .grid-header {
    margin: 0 0 32px
  }

  .learn-prog .foundation-grid h2 {
    font-size: 24px;
    margin: 0 0 16px
  }

  .learn-prog .foundation-grid .grid-intro {
    font-size: 15px
  }

  .learn-prog .foundation-grid .cards-display {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .learn-prog .foundation-grid .skill-card.featured {
    grid-column: span 1
  }

  .learn-prog .foundation-grid .skill-card {
    padding: 24px
  }

  .learn-prog .foundation-grid .card-icon {
    width: 48px;
    height: 48px;
    margin: 0 0 16px
  }

  .learn-prog .foundation-grid .card-icon svg {
    width: 24px;
    height: 24px
  }

  .learn-prog .foundation-grid .skill-card h3 {
    font-size: 19px
  }

  .learn-prog .journey-visual .journey-inner {
    padding: 80px 16px;
    flex-direction: column;
    gap: 32px
  }

  .learn-prog .journey-visual h2 {
    font-size: 24px;
    margin: 0 0 16px
  }

  .learn-prog .journey-visual .journey-desc {
    font-size: 15px;
    margin: 0 0 16px
  }

  .learn-prog .journey-visual .journey-detail {
    font-size: 15px
  }

  .learn-prog .metrics-compare {
    padding: 48px 16px
  }

  .learn-prog .metrics-compare h2 {
    font-size: 24px;
    margin: 0 0 32px
  }

  .learn-prog .metrics-compare .comparison-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 0 0 32px
  }

  .learn-prog .metrics-compare .metric-value {
    font-size: 24px
  }

  .learn-prog .metrics-compare .metric-explain {
    font-size: 15px
  }

  .learn-prog .metrics-compare .steps-list {
    gap: 16px
  }

  .learn-prog .metrics-compare .steps-list li {
    padding: 16px;
    flex-direction: column;
    gap: 16px
  }

  .learn-prog .metrics-compare .step-num {
    width: 40px;
    height: 40px;
    font-size: 15px
  }

  .learn-prog .metrics-compare .step-content h3 {
    font-size: 19px
  }
}

@media (max-width: 375px) {
  .learn-prog .top-intro {
    padding: 32px 16px
  }

  .learn-prog .top-intro h1 {
    font-size: 24px
  }

  .learn-prog .foundation-grid {
    padding: 32px 16px
  }

  .learn-prog .foundation-grid h2 {
    font-size: 24px
  }

  .learn-prog .journey-visual .journey-inner {
    padding: 64px 16px
  }

  .learn-prog .journey-visual h2 {
    font-size: 24px
  }

  .learn-prog .metrics-compare {
    padding: 32px 16px
  }

  .learn-prog .metrics-compare h2 {
    font-size: 24px
  }

  .learn-prog .metrics-compare .metric-value {
    font-size: 24px
  }
}

.success-page {
  background: linear-gradient(37deg, #FF9B11 0%, #ff9b1100 100%), #F1F0F0;
  min-height: 100vh;
  padding: 64px 16px
}

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

.success-page .status-visual {
  width: 120px;
  height: 120px;
  background: #003B50;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -1px 6px 22px 0 #003b501a;
  position: relative
}

.success-page .status-visual::before {
  content: '';
  width: 56px;
  height: 28px;
  border-left: 6px solid #FF9B11;
  border-bottom: 6px solid #FF9B11;
  transform: rotate(-45deg);
  position: relative;
  top: -8px
}

.success-page .message-block {
  background: #fff;
  border-radius: 18px;
  padding: 64px 32px;
  max-width: 680px;
  text-align: center;
  box-shadow: -1px 2px 2px 0 #003b500f
}

.success-page .message-block h1 {
  font-size: 56px;
  line-height: 1.1;
  color: #003B50;
  margin: 0 0 24px
}

.success-page .message-block .lead-text {
  font-size: 24px;
  line-height: 1.5;
  color: #003B50;
  margin: 0 0 32px
}

.success-page .message-block .detail-text {
  font-size: 19px;
  line-height: 1.7;
  color: #003B50;
  opacity: .8;
  margin: 0
}

.success-page .info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 680px;
  width: 100%
}

.success-page .info-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: -1px 2px 2px 0 #ff9b110f;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.success-page .info-card .card-label {
  font-size: 15px;
  line-height: 1.3;
  color: #003B50;
  opacity: .6;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0
}

.success-page .info-card .card-value {
  font-size: 19px;
  line-height: 1.5;
  color: #003B50;
  margin: 0
}

.success-page .action-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  width: 100%
}

.success-page .primary-btn {
  background: #FF9B11;
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 16px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -1px 6px 22px 0 #ff9b111a;
  text-decoration: none;
  display: inline-block;
  text-align: center
}

.success-page .primary-btn:hover {
  transform: scaleX(1.05);
  box-shadow: -1px 10px 48px 0 #ff9b111c
}

.success-page .secondary-btn {
  background: transparent;
  color: #003B50;
  font-size: 15px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 16px 32px;
  border: 2px solid #003B50;
  border-radius: 6px;
  cursor: pointer;
  transition: background .35s ease-in-out, color .35s ease-in-out;
  text-decoration: none;
  display: inline-block;
  text-align: center
}

.success-page .secondary-btn:hover {
  background: #003B50;
  color: #fff
}

.success-page .contact-strip {
  background: #fff;
  border-radius: 32px;
  padding: 32px;
  max-width: 680px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: -1px 2px 2px 0 #003b500f
}

.success-page .contact-strip .strip-heading {
  font-size: 19px;
  line-height: 1.3;
  color: #003B50;
  margin: 0;
  text-align: center
}

.success-page .contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center
}

.success-page .contact-item {
  font-size: 15px;
  line-height: 1.5;
  color: #003B50;
  margin: 0
}

.success-page .contact-item a {
  color: #FF9B11;
  text-decoration: none;
  transition: color .28s ease-in-out
}

.success-page .contact-item a:hover {
  color: #003B50
}

@media (min-width: 768px) {
  .success-page {
    padding: 64px 24px
  }

  .success-page .status-visual {
    width: 160px;
    height: 160px
  }

  .success-page .status-visual::before {
    width: 72px;
    height: 36px;
    border-left: 8px solid #FF9B11;
    border-bottom: 8px solid #FF9B11;
    top: -10px
  }

  .success-page .message-block {
    padding: 64px
  }

  .success-page .message-block h1 {
    font-size: 70px
  }

  .success-page .info-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .success-page .action-group {
    flex-direction: row;
    justify-content: center
  }

  .success-page .contact-strip {
    flex-direction: row;
    justify-content: space-between;
    align-items: center
  }

  .success-page .contact-details {
    flex-direction: row;
    gap: 24px
  }
}

@media (min-width: 1366px) {
  .success-page .confirmation-wrap {
    gap: 64px
  }
}