html {
  box-sizing: border-box
}

body {
  margin: 0;
  padding: 0;
  scrollbar-gutter: stable;
  min-height: 100vh;
  font-family: 'Roboto', sans-serif
}

.skip-placeholder {
  display: none
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0
}

.brand__img-hold {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 #feebe30f 0 5px 28px 0 #feebe314 0 9px 52px 0 #feebe31f inset 0 0 0 1px #feebe3e6;
  flex-shrink: 0
}

.brand__img-hold img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  object-position: center;
  display: block
}

.brand__label {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.brand__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1b1b1b
}

.brand__descriptor {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  color: #3a3a3a;
  white-space: nowrap
}

.site-head {
  background: linear-gradient(135deg, #fff 0%, #FEEBE3 40%, #BCF8D5 100%);
  border-bottom: 1px solid #feebe3b3;
  box-shadow: 0 1px 4px 0 #feebe30f 0 5px 28px 0 #feebe314;
  position: relative
}

.site-head__strip {
  background: linear-gradient(90deg, #CEE5FF 0%, #BCF8D5 100%);
  padding: 6px 24px
}

.site-head__strip-hold {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px
}

.strip-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1.3;
  color: #1b1b1b;
  text-decoration: none;
  transition: color .1s ease-out
}

.strip-contact:focus {
  outline: none
}

.strip-contact:focus::before {
  content: 'fokus';
  position: absolute;
  top: -18px;
  left: 0;
  font-size: 10px;
  color: #1b1b1b;
  background: #BCF8D5;
  padding: 2px 4px;
  border-radius: 4px
}

.strip-contact:hover {
  color: #0d6b3a
}

.strip-contact i {
  font-size: 15px
}

.site-head__body {
  max-width: 1024px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end
}

.site-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  color: #1b1b1b;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 6px;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  transition: color .1s ease-out, border-color .12s ease-out
}

.site-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(0deg, #FEEBE3 0%, #feebe34d 100%);
  border-radius: 6px;
  transition: height .1s ease-out;
  z-index: 0
}

.site-nav__link:hover::after {
  height: 100%
}

.site-nav__link:hover {
  border-color: #feebe3e6;
  color: #1b1b1b
}

.site-nav__link span,
.site-nav__link i {
  position: relative;
  z-index: 1
}

.site-nav__link:focus {
  outline: none;
  border-color: #BCF8D5
}

.site-nav__link:focus::before {
  content: 'fokus';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: #1b1b1b;
  background: #BCF8D5;
  padding: 2px 4px;
  border-radius: 4px;
  z-index: 10;
  white-space: nowrap
}

.site-nav__link--active {
  border-color: #bcf8d5cc;
  background: #bcf8d533;
  font-weight: 700
}

.foot {
  background: linear-gradient(180deg, #1b1b1b 0%, #111 100%)
}

.foot__primary {
  max-width: 1024px;
  margin: 0 auto;
  padding: 52px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 52px
}

.foot__about-text {
  font-size: 15px;
  line-height: 1.6;
  color: #c8c8c8;
  margin: 12px 0 0;
  padding: 0
}

.foot__col-label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 12px;
  padding: 0
}

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

.foot__links li {
  display: flex;
  align-items: center;
  gap: 6px
}

.foot__links a {
  font-size: 15px;
  line-height: 1.3;
  color: #c8c8c8;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .08s ease-out, border-color .1s ease-out
}

.foot__links a:hover {
  color: #BCF8D5;
  border-bottom-color: #BCF8D5
}

.foot__links a:focus {
  outline: none;
  color: #BCF8D5
}

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

.foot__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px
}

.foot__contact-list i {
  font-size: 15px;
  color: #BCF8D5;
  margin-top: 2px;
  flex-shrink: 0
}

.foot__contact-list a,
.foot__contact-list span {
  font-size: 15px;
  line-height: 1.3;
  color: #c8c8c8;
  text-decoration: none;
  transition: color .08s ease-out
}

.foot__contact-list a:hover {
  color: #BCF8D5
}

.foot__mid {
  border-top: 1px solid #ffffff12
}

.foot__mid-hold {
  max-width: 1024px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.foot__legal-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.foot__legal-links a {
  font-size: 15px;
  line-height: 1.3;
  color: #888;
  text-decoration: none;
  transition: color .08s ease-out
}

.foot__legal-links a:hover {
  color: #BCF8D5
}

.foot__bottom {
  border-top: 1px solid #ffffff0d;
  background: #0d0d0d
}

.foot__bottom-hold {
  max-width: 1024px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.foot__logo-hold {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 #feebe30f 0 5px 28px 0 #feebe314 inset 0 0 0 1px #feebe399
}

.foot__logo-hold img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  display: block
}

.foot__copy {
  font-size: 15px;
  line-height: 1.3;
  color: #666
}

@media (max-width: 992px) {
  .foot__primary {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .site-head__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px
  }

  .site-nav {
    justify-content: flex-start
  }

  .brand__descriptor {
    white-space: normal
  }
}

@media (max-width: 576px) {
  .foot__primary {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px
  }

  .site-head__strip-hold {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px
  }

  .foot__bottom-hold {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .foot__mid-hold {
    flex-direction: column;
    align-items: flex-start
  }
}

.policy-layout {
  max-width: 1024px;
  margin: 0 auto;
  padding: 96px 52px;
  color: #2a2a2e
}

.policy-layout h1 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 52px;
  margin-top: 0
}

.policy-layout h2 {
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -.015em;
  margin-top: 52px;
  margin-bottom: 24px
}

.policy-layout h3 {
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -.01em;
  margin-top: 24px;
  margin-bottom: 12px
}

.policy-layout h4,
.policy-layout h5,
.policy-layout h6 {
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0;
  margin-top: 24px;
  margin-bottom: 12px
}

.policy-layout p {
  font-size: 15px;
  line-height: 1.9;
  margin-top: 0;
  margin-bottom: 24px
}

.policy-layout ul,
.policy-layout ol {
  font-size: 15px;
  line-height: 1.9;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 24px
}

.policy-layout ul {
  list-style: disc
}

.policy-layout ol {
  list-style: decimal
}

.policy-layout li {
  margin-bottom: 6px
}

.policy-layout li:last-child {
  margin-bottom: 0
}

.policy-layout ul ul,
.policy-layout ol ol,
.policy-layout ul ol,
.policy-layout ol ul {
  margin-top: 6px;
  margin-bottom: 6px
}

.policy-layout strong,
.policy-layout b {
  font-weight: 700;
  color: #1b1b20
}

.policy-layout em,
.policy-layout i {
  font-style: italic
}

.policy-layout a {
  color: #2a5fb0;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .1s ease-out, text-decoration-color .1s ease-out
}

.policy-layout a:hover {
  color: #1a3d7a;
  text-decoration-color: #1a3d7a
}

.policy-layout table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px 0 #feebe30f 0 5px 28px 0 #feebe314;
  border-radius: 6px;
  overflow: hidden
}

.policy-layout thead {
  background-color: #FEEBE3
}

.policy-layout thead th {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #1b1b20;
  padding: 12px 24px;
  text-align: left;
  border-bottom: 2px solid #feebe399
}

.policy-layout tbody tr {
  border-bottom: 1px solid #cee5ff66;
  transition: background-color .08s linear
}

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

.policy-layout tbody tr:hover {
  background-color: #cee5ff2e
}

.policy-layout td {
  padding: 12px 24px;
  vertical-align: top;
  color: #2a2a2e
}

.policy-layout div {
  margin-bottom: 24px
}

@media (max-width: 992px) {
  .policy-layout {
    padding: 52px 24px
  }

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

  .policy-layout h2 {
    font-size: 18px;
    margin-top: 24px
  }

  .policy-layout table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }
}

@media (max-width: 576px) {
  .policy-layout {
    padding: 52px 12px
  }

  .policy-layout h1 {
    font-size: 38px
  }

  .policy-layout thead th,
  .policy-layout td {
    padding: 12px
  }
}

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

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

.abt-us .radial-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: 600px;
  height: 600px;
  z-index: 0
}

.abt-us .radial-rings span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #feebe359;
  animation: ring-expand 4s ease-out infinite
}

.abt-us .radial-rings span:nth-child(1) {
  width: 120px;
  height: 120px;
  animation-delay: 0s
}

.abt-us .radial-rings span:nth-child(2) {
  width: 240px;
  height: 240px;
  animation-delay: 1s
}

.abt-us .radial-rings span:nth-child(3) {
  width: 380px;
  height: 380px;
  animation-delay: 2s
}

.abt-us .radial-rings span:nth-child(4) {
  width: 520px;
  height: 520px;
  animation-delay: 3s
}

@keyframes ring-expand {
  0% {
    opacity: .5;
    transform: translate(-50%, -50%) scale(0.85)
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.15)
  }
}

.abt-us .hero-row {
  position: relative;
  background: #fff;
  padding: 96px 0 52px;
  overflow: hidden
}

.abt-us .hero-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: conic-gradient(from 200deg at 20% 0%, #FEEBE3 0deg, #BCF8D5 90deg, #CEE5FF 160deg, #fff 220deg);
  opacity: .45;
  z-index: 0
}

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

.abt-us .hero-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 52px
}

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

.abt-us .hero-card {
  position: relative;
  width: 320px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 52px 0 #feebe31f
}

.abt-us .hero-card img {
  width: 320px;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.88);
  transition: filter .12s ease-out
}

.abt-us .hero-card:hover img {
  filter: brightness(1.05)
}

.abt-us .hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #feebe38c 0%, #bcf8d52e 60%, transparent 100%);
  pointer-events: none
}

.abt-us .hero-circles {
  position: absolute;
  top: -24px;
  right: -24px;
  pointer-events: none;
  z-index: 0
}

.abt-us .hero-circles svg {
  display: block
}

.abt-us .hero-txt-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 0 52px 12px
}

.abt-us .hero-eyebrow {
  font-size: 15px;
  line-height: 1.6;
  color: #5a4a42;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 12px
}

.abt-us .hero-h1 {
  font-size: 68px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #1b1410;
  margin: 0 0 12px
}

.abt-us .hero-h1 em {
  font-style: italic;
  font-weight: 400;
  font-size: 52px;
  color: #3b2e27;
  display: block
}

.abt-us .hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #3b2e27;
  margin: 24px 0 0;
  max-width: 480px
}

.abt-us .hero-sub+.hero-sub {
  margin-top: 12px
}

.abt-us .hero-badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #bcf8d5b3;
  background: #bcf8d540;
  font-size: 15px;
  line-height: 1.3;
  color: #1b3d2a;
  box-shadow: inset 0 1px 6px 0 #bcf8d559
}

.abt-us .hero-badge i {
  font-size: 18px;
  color: #2e7d52
}

.abt-us .wave-divider-1 {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #fff
}

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

.abt-us .about-story {
  position: relative;
  background: linear-gradient(180deg, #f7f2ef 0%, #fff 100%);
  padding: 96px 0 52px
}

.abt-us .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 52px
}

.abt-us .story-lead {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.abt-us .story-aside {
  grid-column: 3 / 4;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.abt-us .story-hd {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.025em;
  color: #1b1410;
  margin: 0
}

.abt-us .story-intro-p {
  font-size: 18px;
  line-height: 1.6;
  color: #2d2420;
  margin: 0
}

.abt-us .story-p {
  font-size: 15px;
  line-height: 1.9;
  color: #3b2e27;
  margin: 0
}

.abt-us .def-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.abt-us .def-list dt {
  font-size: 15px;
  font-weight: 700;
  color: #1b1410;
  line-height: 1.3;
  letter-spacing: -.01em
}

.abt-us .def-list dd {
  font-size: 15px;
  line-height: 1.6;
  color: #5a4a42;
  margin: 0 0 6px;
  padding-left: 12px
}

.abt-us .def-item {
  padding: 12px;
  border-radius: 6px;
  background: #cee5ff40;
  box-shadow: 0 1px 4px 0 #feebe30f
}

.abt-us .story-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 28px 0 #feebe314
}

.abt-us .story-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.9);
  transition: filter .1s ease-out
}

.abt-us .story-img-wrap:hover img {
  filter: brightness(1.05)
}

.abt-us .story-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(0deg, #1b1410a6 0%, transparent 100%);
  font-size: 15px;
  line-height: 1.3;
  color: #fff
}

.abt-us .metric-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 24px
}

.abt-us .metric-box {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  text-align: center
}

.abt-us .metric-box--a {
  background: #feebe399;
  box-shadow: inset 0 1px 8px 0 #feebe380
}

.abt-us .metric-box--b {
  background: #bcf8d566;
  box-shadow: inset 0 1px 8px 0 #bcf8d573
}

.abt-us .metric-box--c {
  background: #cee5ff73;
  box-shadow: inset 0 1px 8px 0 #cee5ff73
}

.abt-us .metric-num {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #1b1410;
  display: block
}

.abt-us .metric-lbl {
  font-size: 15px;
  line-height: 1.3;
  color: #5a4a42;
  display: block;
  margin-top: 6px
}

.abt-us .zigzag-top {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #fff
}

.abt-us .zigzag-top svg {
  display: block;
  width: 100%
}

.abt-us .team-row {
  position: relative;
  background: #fff;
  padding: 52px 0 96px;
  overflow: hidden
}

.abt-us .team-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: conic-gradient(from 30deg at 80% 100%, #CEE5FF 0deg, #BCF8D5 80deg, #fff 160deg);
  opacity: .3;
  z-index: 0;
  pointer-events: none
}

.abt-us .team-hd-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  position: relative;
  z-index: 1
}

.abt-us .team-hd {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #1b1410;
  margin: 0
}

.abt-us .team-hd-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #5a4a42;
  max-width: 360px;
  margin: 0
}

.abt-us .team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1
}

.abt-us .t-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 28px 0 #feebe314;
  display: flex;
  flex-direction: column;
  transition: box-shadow .12s ease-out
}

.abt-us .t-card:hover {
  box-shadow: 0 9px 52px 0 #feebe31f
}

.abt-us .t-card--accent-a .t-card-top {
  background: #feebe38c
}

.abt-us .t-card--accent-b .t-card-top {
  background: #bcf8d573
}

.abt-us .t-card--accent-c .t-card-top {
  background: #cee5ff80
}

.abt-us .t-card-top {
  padding: 24px 24px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.abt-us .t-card-img {
  width: 72px;
  height: 72px;
  border-radius: 36px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 4px 0 #feebe30f
}

.abt-us .t-card-img img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.9);
  transition: filter .1s ease-out
}

.abt-us .t-card:hover .t-card-img img {
  filter: brightness(1.05)
}

.abt-us .t-card-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #1b1410;
  margin: 0 0 4px
}

.abt-us .t-card-role {
  font-size: 15px;
  line-height: 1.3;
  color: #5a4a42;
  margin: 0
}

.abt-us .t-card-body {
  padding: 12px 24px 24px;
  flex: 1;
  background: #fff
}

.abt-us .t-card-bio {
  font-size: 15px;
  line-height: 1.9;
  color: #3b2e27;
  margin: 0
}

.abt-us .bg-shift-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 38px, #bcf8d512 38px, #bcf8d512 39px), repeating-linear-gradient(90deg, transparent, transparent 52px, #cee5ff12 52px, #cee5ff12 53px);
  animation: pattern-shift 18s linear infinite
}

@keyframes pattern-shift {
  0% {
    background-position: 0 0, 0 0
  }

  100% {
    background-position: 0 200px, 200px 0
  }
}

@media (max-width: 992px) {
  .abt-us .hero-inner {
    flex-direction: column;
    gap: 24px
  }

  .abt-us .hero-img-col {
    flex: 0 0 auto
  }

  .abt-us .hero-card {
    width: 100%;
    height: 280px
  }

  .abt-us .hero-card img {
    width: 100%;
    height: 280px
  }

  .abt-us .hero-h1 {
    font-size: 52px
  }

  .abt-us .hero-h1 em {
    font-size: 38px
  }

  .abt-us .hero-txt-col {
    padding: 0
  }

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

  .abt-us .story-lead {
    grid-column: 1
  }

  .abt-us .story-aside {
    grid-column: 1
  }

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

  .abt-us .team-hd-row {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 576px) {
  .abt-us .hero-row {
    padding: 52px 0 24px
  }

  .abt-us .hero-h1 {
    font-size: 38px
  }

  .abt-us .hero-h1 em {
    font-size: 38px
  }

  .abt-us .metric-row {
    flex-direction: column
  }

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

  .abt-us .about-story {
    padding: 52px 0 24px
  }

  .abt-us .team-row {
    padding: 24px 0 52px
  }

  .abt-us .story-hd {
    font-size: 38px
  }
}

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

.certs__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px
}

.certs__wave-bg {
  position: relative;
  background: #fff;
  overflow: hidden
}

.certs__wave-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0
}

.certs__wave-anim::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: conic-gradient(from 210deg at 30% 60%, #FEEBE3 0deg, #BCF8D5 60deg, #CEE5FF 120deg, #FEEBE3 180deg, #fff 240deg, #fff 360deg);
  opacity: .18;
  animation: wavepass 9s linear infinite;
  border-radius: 36px
}

@keyframes wavepass {
  0% {
    transform: translateX(-8%) rotate(0deg)
  }

  50% {
    transform: translateX(4%) rotate(3deg)
  }

  100% {
    transform: translateX(-8%) rotate(0deg)
  }
}

.certs__title-block {
  padding: 52px 0;
  position: relative;
  z-index: 1
}

.certs__title-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
  position: relative
}

.certs__title-img-wrap {
  flex: 0 0 220px;
  border-radius: 12px;
  overflow: hidden;
  position: relative
}

.certs__title-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #feebe38c 0%, transparent 60%);
  pointer-events: none
}

.certs__title-img-wrap--right::after {
  background: linear-gradient(to left, #bcf8d573 0%, transparent 60%)
}

.certs__title-img {
  width: 220px;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block
}

.certs__title-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  position: relative;
  z-index: 1
}

.certs__title-deco {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  border-radius: 12px
}

.certs__title-deco::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 52px 52px 0;
  border-color: transparent #CEE5FF transparent transparent;
  opacity: .7
}

.certs__title-deco::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 52px 0 0 52px;
  border-color: transparent transparent transparent #FEEBE3;
  opacity: .6
}

.certs__caption {
  display: block;
  font-size: 15px;
  letter-spacing: .18em;
  color: #5a7a6a;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.3;
  padding-bottom: 6px;
  border-bottom: 1.5px solid #BCF8D5;
  align-self: flex-start
}

.certs__h1 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 900;
  color: #1b2e24;
  margin: 0 0 12px
}

.certs__h1 em {
  font-style: italic;
  font-weight: 400;
  color: #3a6e52
}

.certs__lead {
  font-size: 18px;
  line-height: 1.6;
  color: #2d3d35;
  margin: 0;
  text-align: right
}

.certs__divider-svg {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.certs__list-section {
  background: linear-gradient(0deg, #fff 0%, #f2faf6 100%);
  padding: 52px 0 96px;
  position: relative
}

.certs__chevron-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0
}

.certs__chevron-bg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .045
}

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

.certs__list-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px
}

.certs__list-heading {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.025em;
  color: #1b2e24;
  margin: 0
}

.certs__list-note {
  font-size: 15px;
  line-height: 1.6;
  color: #4a6355;
  max-width: 320px;
  text-align: right;
  margin: 0
}

.certs__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start
}

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

.certs__item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 28px 0 #feebe314;
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  transition: box-shadow .12s ease-out, transform .1s ease-out;
  cursor: default
}

.certs__item:hover {
  box-shadow: 0 9px 52px 0 #feebe31f;
  transform: translateY(-2px)
}

.certs__item-num {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
  color: #BCF8D5;
  min-width: 52px;
  text-align: center;
  letter-spacing: -.04em;
  flex-shrink: 0
}

.certs__item-body {
  flex: 1 1 0
}

.certs__item-name {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #1b2e24;
  margin: 0 0 6px
}

.certs__item-org {
  font-size: 15px;
  line-height: 1.6;
  color: #3a6e52;
  margin: 0 0 6px;
  font-style: italic
}

.certs__item-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4a6355;
  margin: 0
}

.certs__item-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #BCF8D5;
  color: #1b2e24;
  font-size: 15px;
  font-weight: 600;
  border-radius: 36px;
  padding: 6px 12px;
  flex-shrink: 0
}

.certs__item-badge .f7-icons {
  font-size: 15px
}

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

.certs__sidebar-card {
  background: #CEE5FF;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 4px 0 #feebe30f
}

.certs__sidebar-card--warm {
  background: #FEEBE3
}

.certs__sidebar-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  color: #1b2e24;
  margin: 0 0 12px
}

.certs__sidebar-text {
  font-size: 15px;
  line-height: 1.6;
  color: #2d3d35;
  margin: 0 0 12px
}

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

.certs__sidebar-list li {
  font-size: 15px;
  line-height: 1.6;
  color: #2d3d35;
  padding-left: 18px;
  position: relative
}

.certs__sidebar-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #3a6e52;
  font-weight: 700
}

.certs__divider2 {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.certs__qual-section {
  background: #fff;
  padding: 96px 0 52px;
  position: relative
}

.certs__qual-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 52px 52px 0 0;
  border-color: #BCF8D5 transparent transparent;
  opacity: .5
}

.certs__qual-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 52px 52px;
  border-color: transparent transparent #FEEBE3;
  opacity: .5
}

.certs__qual-layout {
  display: flex;
  flex-direction: row;
  gap: 52px;
  align-items: flex-start
}

.certs__qual-text {
  flex: 1 1 0
}

.certs__qual-heading {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.025em;
  color: #1b2e24;
  margin: 0 0 12px
}

.certs__qual-caption {
  display: block;
  font-size: 15px;
  letter-spacing: .14em;
  color: #5a7a6a;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 6px;
  border-bottom: 1.5px solid #CEE5FF;
  align-self: flex-start
}

.certs__qual-p {
  font-size: 18px;
  line-height: 1.6;
  color: #2d3d35;
  margin: 0 0 12px
}

.certs__qual-p--body {
  font-size: 15px;
  line-height: 1.6;
  color: #4a6355;
  margin: 0 0 12px
}

.certs__qual-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px
}

.certs__qual-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  background: #f4fbf7;
  border-radius: 6px;
  padding: 12px;
  transition: background .13s ease-out
}

.certs__qual-step:hover {
  background: #BCF8D5
}

.certs__step-num {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  color: #CEE5FF;
  min-width: 48px;
  text-align: center;
  flex-shrink: 0
}

.certs__step-body {
  flex: 1 1 0;
  padding-top: 6px
}

.certs__step-label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #1b2e24;
  margin: 0 0 6px
}

.certs__step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4a6355;
  margin: 0
}

.certs__qual-aside {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.certs__aside-stat {
  background: conic-gradient(from 195deg at 80% 20%, #FEEBE3 0deg, #BCF8D5 90deg, #CEE5FF 180deg, #fff 270deg, #FEEBE3 360deg);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 5px 28px 0 #bcf8d514
}

.certs__stat-num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: #1b2e24;
  letter-spacing: -.04em;
  display: block
}

.certs__stat-label {
  font-size: 15px;
  line-height: 1.6;
  color: #2d3d35;
  display: block;
  margin-top: 6px
}

.certs__aside-note {
  background: #1b2e24;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 9px 52px 0 #bcf8d51f
}

.certs__aside-note-head {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  color: #BCF8D5;
  margin: 0 0 12px
}

.certs__aside-note-text {
  font-size: 15px;
  line-height: 1.6;
  color: #c8ddd4;
  margin: 0
}

.certs__aside-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #BCF8D5;
  text-decoration: none !important;
  border: 1.5px solid #BCF8D5;
  border-radius: 4px;
  padding: 6px 12px;
  position: relative;
  overflow: hidden;
  transition: color .12s ease-out
}

.certs__aside-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #BCF8D5;
  transition: height .13s ease-out;
  z-index: 0
}

.certs__aside-link:hover {
  color: #1b2e24
}

.certs__aside-link:hover::before {
  height: 100%
}

.certs__aside-link span {
  position: relative;
  z-index: 1
}

.certs__aside-link .f7-icons {
  position: relative;
  z-index: 1;
  font-size: 15px
}

@media (max-width: 992px) {
  .certs__title-row {
    flex-direction: column;
    gap: 12px
  }

  .certs__title-img-wrap {
    flex: 0 0 auto;
    width: 100%;
    height: 180px
  }

  .certs__title-img {
    width: 100%;
    height: 180px;
    min-height: unset
  }

  .certs__h1 {
    font-size: 38px
  }

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

  .certs__qual-layout {
    flex-direction: column;
    gap: 24px
  }

  .certs__qual-aside {
    flex: 0 0 auto;
    width: 100%
  }

  .certs__list-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .certs__list-note {
    text-align: left;
    max-width: 100%
  }
}

@media (max-width: 576px) {
  .certs__h1 {
    font-size: 38px
  }

  .certs__item {
    flex-direction: column;
    gap: 12px
  }

  .certs__item-num {
    font-size: 38px;
    min-width: unset
  }

  .certs__title-text {
    padding: 12px
  }

  .certs__qual-section {
    padding: 52px 0
  }
}

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

.frt .split-screen {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  position: relative
}

.frt .split-screen__left {
  flex: 1 1 52%;
  background: #FEEBE3;
  padding: 96px 52px;
  position: relative;
  overflow: hidden
}

.frt .split-screen__left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#feebe32e 1px, transparent 1px), linear-gradient(90deg, #feebe32e 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none
}

.frt .split-screen__right {
  flex: 1 1 48%;
  background: #BCF8D5;
  position: relative;
  overflow: hidden;
  min-height: 520px
}

.frt .split-screen__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(0px);
  transition: filter .12s ease-out
}

.frt .split-screen__img:hover {
  filter: blur(0px)
}

.frt .split-screen__leak {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  background: conic-gradient(from 200deg at 100% 0%, #FEEBE3 0deg, #BCF8D5 90deg, transparent 160deg);
  opacity: .55;
  pointer-events: none;
  border-radius: 0 0 0 220px
}

.frt .split-screen__tag {
  display: inline-block;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: .08em;
  color: #2a1f18;
  background: #feebe3b3;
  border: 1px solid #2a1f1826;
  border-radius: 4px;
  padding: 6px 12px;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px 0 #feebe30f
}

.frt .split-screen__h1 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 900;
  color: #1e1208;
  margin-bottom: 24px;
  max-width: 480px
}

.frt .split-screen__h1 em {
  font-style: italic;
  font-weight: 400;
  color: #b85c2a
}

.frt .split-screen__desc {
  font-size: 18px;
  line-height: 1.6;
  color: #3a2a1e;
  max-width: 420px;
  margin-bottom: 52px
}

.frt .split-screen__metric-pair {
  display: flex;
  flex-direction: row;
  gap: 52px
}

.frt .metric-item__num {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
  color: #b85c2a;
  letter-spacing: -.04em
}

.frt .metric-item__num sup {
  font-size: 18px;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0
}

.frt .metric-item__label {
  font-size: 15px;
  line-height: 1.3;
  color: #3a2a1e;
  margin-top: 6px
}

.frt .approach-band {
  background: #fff;
  border-top: 3px solid #FEEBE3;
  border-bottom: 3px solid #BCF8D5;
  padding: 0
}

.frt .approach-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 96px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start
}

.frt .approach-inner__visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 28px 0 #feebe314
}

.frt .approach-inner__visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(3px);
  transition: filter .1s ease-out
}

.frt .approach-inner__visual:hover img {
  filter: blur(0px)
}

.frt .approach-inner__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 315deg at 90% 10%, #bcf8d559 0deg, transparent 80deg);
  pointer-events: none
}

.frt .approach-txt__eyebrow {
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: .06em;
  color: #2a7a4b;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase
}

.frt .approach-txt__h2 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #1e1208;
  margin-bottom: 24px
}

.frt .approach-txt__body {
  font-size: 18px;
  line-height: 1.6;
  color: #2e2016;
  margin-bottom: 24px
}

.frt .approach-txt__body--sm {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3828
}

.frt .approach-txt__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.frt .approach-txt__list li {
  font-size: 15px;
  line-height: 1.6;
  color: #2e2016;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.frt .approach-txt__list li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #b85c2a;
  margin-top: 7px
}

.frt .longterm-wrap {
  background: #CEE5FF;
  padding: 96px 0;
  position: relative;
  overflow: hidden
}

.frt .longterm-wrap::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #bcf8d52e;
  pointer-events: none
}

.frt .longterm-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 52px
}

.frt .longterm-inner__h2 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #0d2340;
  margin-bottom: 12px;
  max-width: 640px
}

.frt .longterm-inner__lead {
  font-size: 18px;
  line-height: 1.6;
  color: #1a3a5c;
  max-width: 560px;
  margin-bottom: 52px
}

.frt .longterm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.frt .lt-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 5px 28px 0 #bcf8d514;
  box-sizing: border-box
}

.frt .lt-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #CEE5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px
}

.frt .lt-card__icon svg {
  width: 22px;
  height: 22px
}

.frt .lt-card__h4 {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  color: #0d2340;
  margin-bottom: 6px;
  letter-spacing: -.01em
}

.frt .lt-card__p {
  font-size: 15px;
  line-height: 1.6;
  color: #2a4060
}

.frt .gap-wrap {
  background: #fff;
  padding: 96px 0
}

.frt .gap-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  flex-direction: row;
  gap: 52px;
  align-items: center
}

.frt .gap-txt {
  flex: 1 1 55%
}

.frt .gap-txt__h2 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #1e1208;
  margin-bottom: 24px
}

.frt .gap-txt__body {
  font-size: 18px;
  line-height: 1.6;
  color: #2e2016;
  margin-bottom: 24px
}

.frt .gap-txt__body--sm {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3828
}

.frt .gap-visual {
  flex: 1 1 45%;
  position: relative
}

.frt .gap-visual__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 52px 0 #feebe31f
}

.frt .gap-visual__img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(3px);
  transition: filter .13s ease-out
}

.frt .gap-visual__img-wrap:hover img {
  filter: blur(0px)
}

.frt .gap-visual__badge {
  position: absolute;
  bottom: -12px;
  left: -12px;
  background: #FEEBE3;
  border-radius: 12px;
  padding: 12px 24px;
  box-shadow: 0 5px 28px 0 #feebe314
}

.frt .gap-visual__badge-num {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  color: #b85c2a;
  letter-spacing: -.03em
}

.frt .gap-visual__badge-num sup {
  font-size: 15px;
  font-weight: 700;
  vertical-align: super
}

.frt .gap-visual__badge-label {
  font-size: 15px;
  line-height: 1.3;
  color: #3a2a1e
}

.frt .env-wrap {
  background: #1e1208;
  padding: 96px 0;
  position: relative
}

.frt .env-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 340px;
  background: conic-gradient(from 135deg at 100% 50%, #bcf8d514 0deg, transparent 120deg);
  pointer-events: none
}

.frt .env-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 52px
}

.frt .env-inner__h2 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #f5ede8;
  margin-bottom: 12px;
  max-width: 580px
}

.frt .env-inner__lead {
  font-size: 18px;
  line-height: 1.6;
  color: #c4a898;
  max-width: 520px;
  margin-bottom: 52px
}

.frt .env-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.frt .env-item {
  background: #feebe30f;
  border: 1px solid #feebe31f;
  border-radius: 12px;
  padding: 24px;
  box-sizing: border-box;
  box-shadow: inset 0 1px 0 #feebe314
}

.frt .env-item__num {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
  color: #BCF8D5;
  letter-spacing: -.04em;
  margin-bottom: 6px
}

.frt .env-item__num sup {
  font-size: 18px;
  font-weight: 700;
  vertical-align: super
}

.frt .env-item__h4 {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: #f5ede8;
  margin-bottom: 6px
}

.frt .env-item__p {
  font-size: 15px;
  line-height: 1.6;
  color: #a08878
}

.frt .exp-wrap {
  background: #FEEBE3;
  padding: 96px 0;
  position: relative
}

.frt .exp-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 52px
}

.frt .exp-inner__h2 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #1e1208;
  margin-bottom: 52px;
  max-width: 560px
}

.frt .exp-cards {
  display: flex;
  flex-direction: row;
  gap: 24px
}

.frt .exp-card {
  flex: 1 1 0;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 5px 28px 0 #feebe314;
  box-sizing: border-box
}

.frt .exp-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 36px;
  background: #CEE5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 900;
  color: #0d2340
}

.frt .exp-card__name {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: #1e1208;
  margin-bottom: 6px
}

.frt .exp-card__role {
  font-size: 15px;
  line-height: 1.3;
  color: #b85c2a;
  margin-bottom: 12px
}

.frt .exp-card__quote {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2a1e
}

.frt .journey-wrap {
  background: #fff;
  padding: 96px 0;
  position: relative
}

.frt .journey-wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FEEBE3 0%, #BCF8D5 50%, #CEE5FF 100%)
}

.frt .journey-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 52px
}

.frt .journey-inner__h2 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #1e1208;
  margin-bottom: 12px;
  max-width: 600px
}

.frt .journey-inner__lead {
  font-size: 18px;
  line-height: 1.6;
  color: #3a2a1e;
  max-width: 540px;
  margin-bottom: 52px
}

.frt .journey-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start
}

.frt .journey-img-col {
  flex: 0 0 380px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 52px 0 #feebe31f
}

.frt .journey-img-col img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(3px);
  transition: filter .11s ease-out
}

.frt .journey-img-col:hover img {
  filter: blur(0px)
}

.frt .journey-phases {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.frt .phase-item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start
}

.frt .phase-item__num {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  color: #FEEBE3;
  letter-spacing: -.04em;
  min-width: 52px;
  text-align: right;
  -webkit-text-stroke: 1px #b85c2a
}

.frt .phase-item__txt h4 {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  color: #1e1208;
  margin-bottom: 6px;
  letter-spacing: -.01em
}

.frt .phase-item__txt p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3828
}

.frt .divider-band {
  height: 6px;
  background: linear-gradient(90deg, #BCF8D5 0%, #bcf8d500 100%)
}

.frt .divider-band--b {
  height: 6px;
  background: linear-gradient(90deg, #cee5ff00 0%, #CEE5FF 100%)
}

@keyframes frt-appear {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.frt {
  animation: frt-appear .14s ease-out both
}

@media (max-width: 992px) {
  .frt .split-screen {
    flex-direction: column
  }

  .frt .split-screen__right {
    min-height: 280px
  }

  .frt .split-screen__left {
    padding: 52px 24px
  }

  .frt .split-screen__h1 {
    font-size: 38px
  }

  .frt .approach-inner {
    grid-template-columns: 1fr;
    padding: 52px 24px
  }

  .frt .longterm-cards {
    grid-template-columns: 1fr
  }

  .frt .longterm-inner {
    padding: 0 24px
  }

  .frt .longterm-wrap {
    padding: 52px 0
  }

  .frt .gap-inner {
    flex-direction: column;
    padding: 0 24px
  }

  .frt .gap-wrap {
    padding: 52px 0
  }

  .frt .env-inner {
    padding: 0 24px
  }

  .frt .env-grid {
    grid-template-columns: 1fr
  }

  .frt .env-wrap {
    padding: 52px 0
  }

  .frt .exp-inner {
    padding: 0 24px
  }

  .frt .exp-cards {
    flex-direction: column
  }

  .frt .exp-wrap {
    padding: 52px 0
  }

  .frt .journey-row {
    flex-direction: column
  }

  .frt .journey-img-col {
    flex: 0 0 auto;
    width: 100%
  }

  .frt .journey-inner {
    padding: 0 24px
  }

  .frt .journey-wrap {
    padding: 52px 0
  }
}

@media (max-width: 576px) {
  .frt .split-screen__h1 {
    font-size: 38px
  }

  .frt .split-screen__metric-pair {
    gap: 24px
  }

  .frt .approach-txt__h2,
  .frt .gap-txt__h2,
  .frt .longterm-inner__h2,
  .frt .env-inner__h2,
  .frt .exp-inner__h2,
  .frt .journey-inner__h2 {
    font-size: 38px
  }

  .frt .gap-visual__badge {
    position: static;
    margin-top: 12px
  }
}

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

.ctus__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px
}

.ctus__hero {
  background: conic-gradient(from 200deg at 30% 80%, #FEEBE3 0deg, #BCF8D5 90deg, #CEE5FF 180deg, #FEEBE3 360deg);
  padding: 52px 0 96px;
  position: relative
}

.ctus__hero-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px
}

.ctus__hero-tag {
  display: inline-block;
  border: 1.5px solid #2a2a3a;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: .08em;
  margin-bottom: 24px;
  background: #ffffff8c
}

.ctus__hero-h {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #18181f;
  margin: 0 0 24px;
  max-width: 680px
}

.ctus__hero-h em {
  font-style: normal;
  color: #c94a00
}

.ctus__hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #2e2e3a;
  max-width: 520px;
  margin: 0
}

.ctus__hero-deco {
  position: absolute;
  right: 48px;
  bottom: 24px;
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
  color: #feebe300;
  -webkit-text-stroke: 2px #c94a0021;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.05em
}

.ctus__hero-wave {
  display: block;
  width: 100%;
  height: 48px;
  margin-top: -1px
}

.ctus__grid {
  background: #fff;
  padding: 96px 0 52px
}

.ctus__grid-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start
}

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

.ctus__contacts-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #c94a00;
  text-transform: uppercase;
  margin: 0 0 6px
}

.ctus__contacts-h {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #18181f;
  margin: 0 0 12px
}

.ctus__contacts-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a4a;
  margin: 0
}

.ctus__contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px
}

.ctus__contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  background: #f7f3f0;
  box-shadow: 0 1px 4px 0 #feebe30f;
  text-decoration: none;
  color: inherit;
  transition: background .1s ease-out
}

.ctus__contact-item:hover {
  background: #FEEBE3
}

.ctus__item-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1.5px solid #2a2a3a;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff
}

.ctus__item-icon i {
  font-size: 18px;
  color: #18181f
}

.ctus__item-text {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ctus__item-type {
  font-size: 15px;
  font-weight: 700;
  color: #18181f;
  line-height: 1.3
}

.ctus__item-val {
  font-size: 15px;
  line-height: 1.3;
  color: #3a3a4a
}

.ctus__avail {
  margin-top: 12px;
  padding: 12px;
  border-radius: 6px;
  background: #BCF8D5;
  box-shadow: 0 1px 4px 0 #bcf8d50f
}

.ctus__avail-title {
  font-size: 15px;
  font-weight: 700;
  color: #18181f;
  margin: 0 0 6px
}

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

.ctus__avail-list li {
  font-size: 15px;
  line-height: 1.6;
  color: #1e3a2a;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px
}

.ctus__avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 36px;
  background: #1a7a45;
  flex-shrink: 0;
  display: inline-block
}

.ctus__form-wrap {
  background: #fff;
  border: 1.5px solid #e8e0da;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 5px 28px 0 #feebe314
}

.ctus__form-title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
  color: #18181f;
  margin: 0 0 24px;
  letter-spacing: -.01em
}

.ctus__form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ctus__field {
  position: relative;
  display: flex;
  flex-direction: column
}

.ctus__field input,
.ctus__field select,
.ctus__field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid #ccc8c4;
  border-radius: 6px;
  padding: 18px 12px 6px;
  font-size: 15px;
  line-height: 1.6;
  color: #18181f;
  background: #fff;
  outline: none;
  transition: border-color .1s ease-out, box-shadow .12s ease-out;
  appearance: none;
  -webkit-appearance: none
}

.ctus__field select {
  padding: 12px;
  cursor: pointer
}

.ctus__field textarea {
  resize: vertical;
  min-height: 80px;
  padding-top: 18px
}

.ctus__field input:focus,
.ctus__field select:focus,
.ctus__field textarea:focus {
  border-color: #c94a00;
  box-shadow: inset 0 0 0 2px #c94a0014 0 1px 4px 0 #feebe30f
}

.ctus__field input::placeholder,
.ctus__field textarea::placeholder {
  color: transparent
}

.ctus__label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 15px;
  line-height: 1.3;
  color: #7a7570;
  pointer-events: none;
  transition: top .1s ease-out, font-size .1s ease-out, color .1s ease-out
}

.ctus__field input:focus~.ctus__label,
.ctus__field input:not(:placeholder-shown)~.ctus__label,
.ctus__field textarea:focus~.ctus__label,
.ctus__field textarea:not(:placeholder-shown)~.ctus__label {
  top: 4px;
  font-size: 11px;
  color: #c94a00
}

.ctus__select-label {
  font-size: 11px;
  color: #7a7570;
  margin-bottom: 4px;
  padding-left: 2px;
  display: block
}

.ctus__select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 12px;
  height: 8px
}

.ctus__select-wrap {
  position: relative;
  display: flex;
  flex-direction: column
}

.ctus__privacy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  background: #f7f3f0;
  margin-top: 6px
}

.ctus__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #c94a00;
  cursor: pointer
}

.ctus__privacy-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a4a
}

.ctus__privacy-text a {
  color: #c94a00;
  text-decoration: underline;
  text-underline-offset: 2px
}

.ctus__submit-wrap {
  margin-top: 6px
}

.ctus__submit {
  display: inline-block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #18181f;
  background: transparent;
  border: 2px solid #18181f;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .12s ease-out, border-color .1s ease-out;
  width: 100%;
  text-align: center;
  letter-spacing: .02em
}

.ctus__submit::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #18181f;
  transition: height .12s ease-out;
  z-index: 0
}

.ctus__submit:hover::before,
.ctus__submit:focus::before {
  height: 100%
}

.ctus__submit:hover,
.ctus__submit:focus {
  color: #fff;
  outline: none
}

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

.ctus__steps {
  background: #18181f;
  padding: 96px 0 52px;
  position: relative
}

.ctus__steps-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px
}

.ctus__steps-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px
}

.ctus__steps-h {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0;
  max-width: 480px
}

.ctus__steps-h em {
  font-style: normal;
  color: #BCF8D5
}

.ctus__steps-note {
  font-size: 15px;
  line-height: 1.6;
  color: #b0aaa8;
  max-width: 280px;
  text-align: right;
  margin: 0
}

.ctus__steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative
}

.ctus__steps-row::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #BCF8D5 0%, #CEE5FF 50%, #FEEBE3 100%);
  z-index: 0
}

.ctus__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1
}

.ctus__step-num {
  width: 56px;
  height: 56px;
  border-radius: 36px;
  border: 2px solid #BCF8D5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #BCF8D5;
  background: #18181f;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: background .1s ease-out, color .1s ease-out
}

.ctus__step:hover .ctus__step-num {
  background: #BCF8D5;
  color: #18181f
}

.ctus__step-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 6px
}

.ctus__step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #b0aaa8;
  margin: 0
}

.ctus__steps-wave {
  display: block;
  width: 100%;
  height: 48px;
  margin-bottom: -1px
}

@media (max-width: 992px) {
  .ctus__grid-inner {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .ctus__hero-h {
    font-size: 38px
  }

  .ctus__hero-deco {
    display: none
  }

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

  .ctus__steps-row::before {
    display: none
  }

  .ctus__steps-top {
    flex-direction: column;
    align-items: flex-start
  }

  .ctus__steps-note {
    text-align: left
  }
}

@media (max-width: 576px) {
  .ctus__hero {
    padding: 52px 0
  }

  .ctus__hero-h {
    font-size: 38px
  }

  .ctus__grid {
    padding: 52px 0 24px
  }

  .ctus__steps {
    padding: 52px 0 24px
  }

  .ctus__steps-h {
    font-size: 38px
  }

  .ctus__steps-row {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .ctus__form-wrap {
    padding: 24px 12px
  }
}

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

.itvw .itvw__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px
}

.itvw .pg-lead {
  padding: 52px 24px 96px;
  max-width: 1024px;
  margin: 0 auto;
  position: relative
}

.itvw .pg-lead__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  border-radius: 12px;
  z-index: 0
}

.itvw .pg-lead__dots {
  position: absolute;
  top: 24px;
  right: 52px;
  display: grid;
  grid-template-columns: repeat(5, 8px);
  gap: 6px;
  pointer-events: none;
  z-index: 0
}

.itvw .pg-lead__dot {
  width: 8px;
  height: 8px;
  border-radius: 36px;
  background: #FEEBE3;
  opacity: .7
}

.itvw .pg-lead__dot:nth-child(3n) {
  background: #BCF8D5
}

.itvw .pg-lead__dot:nth-child(5n) {
  background: #CEE5FF
}

.itvw .pg-lead__img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  z-index: 0
}

.itvw .pg-lead__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .18
}

.itvw .pg-lead__img-overlay {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 120deg at 80% 40%, #FEEBE3 0%, #CEE5FF 40%, #BCF8D5 70%, #FEEBE3 100%);
  mix-blend-mode: multiply;
  opacity: .55
}

.itvw .pg-lead__body {
  position: relative;
  z-index: 1;
  max-width: 580px
}

.itvw .pg-lead__label {
  display: inline-block;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: .08em;
  color: #2a2a2a;
  background: #BCF8D5;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px 0 #feebe30f
}

.itvw .pg-lead__h1 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 900;
  color: #181818;
  margin: 0 0 24px
}

.itvw .pg-lead__h1 em {
  font-style: italic;
  font-weight: 400;
  color: #3a3a3a
}

.itvw .pg-lead__thesis {
  font-size: 18px;
  line-height: 1.6;
  color: #2e2e2e;
  margin: 0 0 12px
}

.itvw .pg-lead__thesis--sm {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0
}

.itvw .pg-lead__dbl-border {
  width: 52px;
  height: 12px;
  margin: 24px 0;
  border-top: 2px solid #BCF8D5;
  border-bottom: 2px solid #CEE5FF
}

.itvw .itvw-qa {
  padding: 96px 0 52px;
  position: relative
}

.itvw .itvw-qa__offset {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  margin-left: 52px
}

.itvw .itvw-qa__head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 52px
}

.itvw .itvw-qa__head-line {
  flex: 1;
  height: 2px;
  background: #FEEBE3;
  border-radius: 4px
}

.itvw .itvw-qa__h2 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #181818;
  margin: 0;
  white-space: nowrap
}

.itvw .itvw-qa__speaker {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 52px;
  padding: 24px;
  background: #FEEBE3;
  border-radius: 12px;
  box-shadow: 0 5px 28px 0 #feebe314
}

.itvw .itvw-qa__speaker-icon {
  width: 52px;
  height: 52px;
  border-radius: 36px;
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 2px 8px 0 #feebe366
}

.itvw .itvw-qa__speaker-icon i {
  font-size: 28px;
  color: #2a2a2a
}

.itvw .itvw-qa__speaker-info {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.itvw .itvw-qa__speaker-name {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #181818;
  margin: 0
}

.itvw .itvw-qa__speaker-role {
  font-size: 15px;
  line-height: 1.3;
  color: #3a3a3a;
  margin: 0
}

.itvw .itvw-qa__pairs {
  display: flex;
  flex-direction: column;
  gap: 52px
}

.itvw .itvw-qa__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  opacity: 0;
  animation: qa-reveal .12s ease-out forwards
}

.itvw .itvw-qa__pair:nth-child(1) {
  animation-delay: .08s
}

.itvw .itvw-qa__pair:nth-child(2) {
  animation-delay: .16s
}

.itvw .itvw-qa__pair:nth-child(3) {
  animation-delay: .24s
}

.itvw .itvw-qa__pair:nth-child(4) {
  animation-delay: .32s
}

.itvw .itvw-qa__pair:nth-child(5) {
  animation-delay: .4s
}

@keyframes qa-reveal {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

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

.itvw .itvw-qa__q {
  background: #CEE5FF;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  box-shadow: 0 1px 4px 0 #bcf8d50f
}

.itvw .itvw-qa__q-mark {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  color: #a0c4e8;
  display: block;
  margin-bottom: 6px
}

.itvw .itvw-qa__q-text {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  color: #181818;
  margin: 0
}

.itvw .itvw-qa__a {
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.itvw .itvw-qa__a-text {
  font-size: 15px;
  line-height: 1.9;
  color: #2e2e2e;
  margin: 0
}

.itvw .itvw-qa__a-text--lg {
  font-size: 18px;
  line-height: 1.6;
  color: #181818;
  margin: 0
}

.itvw .itvw-qa__divider {
  width: 100%;
  height: 2px;
  background: #BCF8D5;
  border-radius: 4px;
  margin: 0
}

.itvw .itvw-qa__pair--alt .itvw-qa__q {
  background: #BCF8D5
}

.itvw .itvw-qa__pair--alt .itvw-qa__q-mark {
  color: #7ed4a8
}

.itvw .itvw-qa__pair--rev {
  direction: ltr
}

.itvw .itvw-qa__pair--rev .itvw-qa__q {
  order: 2;
  background: #FEEBE3
}

.itvw .itvw-qa__pair--rev .itvw-qa__q-mark {
  color: #f0bfaa
}

.itvw .itvw-qa__pair--rev .itvw-qa__a {
  order: 1
}

.itvw .itvw-qa__closing {
  margin-top: 52px;
  padding: 24px;
  border-radius: 12px;
  background: #181818;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  box-shadow: 0 9px 52px 0 #bcf8d51f
}

.itvw .itvw-qa__closing-icon {
  flex-shrink: 0
}

.itvw .itvw-qa__closing-icon i {
  font-size: 38px;
  color: #BCF8D5
}

.itvw .itvw-qa__closing-text {
  font-size: 18px;
  line-height: 1.6;
  color: #f0f0f0;
  margin: 0
}

.itvw .itvw-qa__closing-text strong {
  color: #BCF8D5
}

.itvw .itvw-qa__dbl-border {
  width: 96px;
  height: 12px;
  margin: 24px 0 0;
  border-top: 2px solid #CEE5FF;
  border-bottom: 2px solid #FEEBE3
}

@media (max-width: 992px) {
  .itvw .itvw-qa__offset {
    margin-left: 24px
  }

  .itvw .pg-lead__img-wrap {
    width: 220px;
    opacity: .7
  }

  .itvw .pg-lead__h1 {
    font-size: 38px
  }

  .itvw .itvw-qa__pair {
    grid-template-columns: 1fr
  }

  .itvw .itvw-qa__pair--rev .itvw-qa__q {
    order: 0
  }

  .itvw .itvw-qa__pair--rev .itvw-qa__a {
    order: 0
  }

  .itvw .itvw-qa__h2 {
    font-size: 38px;
    white-space: normal
  }
}

@media (max-width: 576px) {
  .itvw .pg-lead {
    padding: 24px 12px 52px
  }

  .itvw .pg-lead__img-wrap {
    display: none
  }

  .itvw .pg-lead__h1 {
    font-size: 38px
  }

  .itvw .itvw-qa__offset {
    margin-left: 0;
    padding: 0 12px
  }

  .itvw .itvw-qa {
    padding: 52px 0 24px
  }

  .itvw .itvw-qa__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .itvw .itvw-qa__head-line {
    width: 52px;
    height: 2px;
    flex: none
  }

  .itvw .itvw-qa__h2 {
    font-size: 38px
  }

  .itvw .itvw-qa__closing {
    flex-direction: column;
    align-items: flex-start
  }

  .itvw .itvw-qa__speaker {
    flex-direction: column
  }
}

.succ-pg {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
  background: #fff
}

.succ-pg .succ-card {
  max-width: 1024px;
  width: 100%;
  background: #FEEBE3;
  border-radius: 12px;
  padding: 52px;
  box-shadow: 0 9px 52px 0 #feebe31f;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center
}

.succ-pg .succ-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 36px;
  background: #BCF8D5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 8px 0 #bcf8d580 0 5px 28px 0 #bcf8d514;
  flex-shrink: 0
}

.succ-pg .succ-card__icon svg {
  display: block
}

.succ-pg .succ-card__title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #1b1b1b;
  margin: 0
}

.succ-pg .succ-card__body {
  font-size: 18px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0;
  max-width: 520px
}

.succ-pg .succ-card__divider {
  width: 48px;
  height: 3px;
  border-radius: 4px;
  background: #CEE5FF
}

.succ-pg .succ-card__note {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0
}

.succ-pg .succ-card__note a {
  color: #1b1b1b;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .1s ease-out
}

.succ-pg .succ-card__note a:hover {
  color: #555
}

.succ-pg .succ-card__btn-wrap {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center
}

.succ-pg .succ-card__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 6px;
  border: 2px solid #1b1b1b;
  background: transparent;
  color: #1b1b1b;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition: color .12s ease-out;
  z-index: 0
}

.succ-pg .succ-card__btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #1b1b1b;
  transition: height .1s ease-out;
  z-index: -1
}

.succ-pg .succ-card__btn:hover {
  color: #fff
}

.succ-pg .succ-card__btn:hover::after {
  height: 100%
}

.succ-pg .succ-card__btn:focus-visible {
  outline: 3px solid #CEE5FF;
  outline-offset: 3px
}

.succ-pg .succ-card__btn--sec {
  border-color: #3a3a3a;
  color: #3a3a3a
}

.succ-pg .succ-card__btn--sec::after {
  background: #3a3a3a
}

.succ-pg .succ-card__btn--sec:hover {
  color: #fff
}

@media (max-width: 576px) {
  .succ-pg {
    padding: 52px 12px
  }

  .succ-pg .succ-card {
    padding: 24px;
    gap: 24px
  }

  .succ-pg .succ-card__title {
    font-size: 38px
  }

  .succ-pg .succ-card__btn-wrap {
    flex-direction: column;
    width: 100%
  }

  .succ-pg .succ-card__btn {
    width: 100%
  }
}