@import "https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;1,400;0,700;1,700&display=swap";

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

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1d1d1d;
  background-color: #FFFFFD
}

.topband {
  position: relative;
  background: linear-gradient(135deg, #0294D4 0%, #0277a8 100%);
  border-bottom: 1px solid #0294d44d;
  box-shadow: -1px 3px 2px 0 #0294d414
}

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

.brandholder {
  flex-shrink: 0;
  background-color: #FFFFFD;
  padding: 8px 16px;
  border-radius: 4px;
  box-shadow: -1px 3px 2px 0 #dd2a7d14
}

.brandmark {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain
}

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

.linkitem {
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFD;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color .24s cubic-bezier(0.4, 0, 0.2, 1), color .24s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative
}

.linkitem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color .26s cubic-bezier(0.0, 0, 0.2, 1);
  pointer-events: none
}

.linkitem:hover {
  background-color: #fffffd26
}

.linkitem:hover::before {
  border-color: #FFFFFD
}

.linkitem:focus {
  outline: none;
  background-color: #fffffd33
}

.linkitem:focus::after {
  content: 'focus';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #FFFFFD;
  background-color: #DD2A7D;
  padding: 0 8px;
  border-radius: 4px;
  white-space: nowrap
}

.regionpicker {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFD;
  background-color: #fffffd1a;
  border: 1px solid #FFFFFD;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color .22s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: .05em
}

.regionpicker:hover {
  background-color: #fffffd33;
  border-color: #DD2A7D
}

.regionpicker:focus {
  outline: none;
  box-shadow: 0 0 0 3px #dd2a7d66
}

.regionpicker:focus::after {
  content: 'geselecteerd';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #FFFFFD;
  background-color: #DD2A7D;
  padding: 0 8px;
  border-radius: 4px;
  white-space: nowrap
}

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

  .linksrow {
    width: 100%;
    justify-content: flex-start
  }
}

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

  .linkitem {
    font-size: 14px;
    padding: 8px 16px
  }

  .brandholder {
    padding: 8px 16px
  }

  .brandmark {
    width: 55px;
    height: 55px
  }
}

@media (max-width: 640px) {
  .linksrow {
    flex-direction: column;
    align-items: stretch;
    gap: 8px
  }

  .linkitem {
    text-align: center
  }

  .regionpicker {
    width: 100%;
    text-align: center
  }
}

.baseplate {
  position: relative;
  background-color: #1d1d1d;
  border-top: 2px solid #0294D4
}

.basedeck {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px
}

.basegrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start
}

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

.footerlogo {
  background-color: #FFFFFD;
  padding: 8px 16px;
  border-radius: 4px;
  display: inline-block;
  box-shadow: -1px 6px 25px 0 #dd2a7d1a
}

.footerbrand {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain
}

.companyname {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFD;
  line-height: 1.1;
  margin: 0
}

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

.navlabel {
  font-size: 14px;
  font-weight: 700;
  color: #0294D4;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0
}

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

.navanchor {
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFD;
  text-decoration: none;
  padding: 8px 0;
  transition: color .24s cubic-bezier(0.4, 0, 0.2, 1), padding-left .24s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block
}

.navanchor::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 1px;
  background-color: #DD2A7D;
  transition: width .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.navanchor:hover {
  color: #DD2A7D;
  padding-left: 8px
}

.navanchor:hover::before {
  width: 100%
}

.navanchor:focus {
  outline: none;
  color: #DD2A7D
}

.navanchor:focus::after {
  content: 'actief';
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 14px;
  color: #FFFFFD;
  background-color: #DD2A7D;
  padding: 0 8px;
  border-radius: 4px;
  white-space: nowrap
}

.legalbar {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #fffffd33;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px
}

.copyrighttext {
  font-size: 14px;
  color: #fffffdb3;
  margin: 0
}

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

.contactline {
  font-size: 14px;
  color: #fffffdcc;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px
}

.contactline i {
  color: #0294D4;
  font-size: 16px
}

.contactanchor {
  color: #fffffdcc;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.contactanchor:hover {
  color: #DD2A7D
}

.contactanchor:focus {
  outline: none;
  color: #DD2A7D;
  text-decoration: underline
}

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

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

@media (max-width: 768px) {
  .basedeck {
    padding: 24px 16px
  }

  .basegrid {
    gap: 24px
  }

  .legalbar {
    margin-top: 24px;
    padding-top: 16px
  }
}

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

  .navanchor {
    font-size: 14px
  }

  .copyrighttext {
    font-size: 14px
  }

  .contactline {
    font-size: 14px
  }
}

.consentpod {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 380px;
  background: linear-gradient(135deg, #FFFFFD 0%, #f5f5f3 100%);
  border: 2px solid #0294D4;
  border-radius: 10px;
  box-shadow: -1px 8px 48px 0 #0294d41f;
  padding: 24px;
  z-index: 2000;
  display: none
}

.consentvisible {
  display: block
}

.consenttext {
  font-size: 14px;
  line-height: 1.4;
  color: #1d1d1d;
  margin: 0 0 16px
}

.consenttext strong {
  font-weight: 700;
  color: #0294D4
}

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

.consentbtn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'PT Sans', sans-serif;
  text-align: center;
  border: 2px solid #0294D4;
  border-radius: 4px;
  background-color: transparent;
  color: #0294D4;
  cursor: pointer;
  transition: border-color .24s cubic-bezier(0.4, 0, 0.2, 1), color .24s cubic-bezier(0.4, 0, 0.2, 1), background-color .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.consentbtn:hover {
  border-color: #DD2A7D;
  color: #DD2A7D
}

.consentbtn:focus {
  outline: none;
  box-shadow: 0 0 0 3px #0294d44d
}

.consentbtn:focus::after {
  content: 'keuze';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #FFFFFD;
  background-color: #DD2A7D;
  padding: 0 8px;
  border-radius: 4px;
  white-space: nowrap
}

.consentlink {
  font-size: 14px;
  color: #0294D4;
  text-align: center;
  text-decoration: none;
  padding: 8px 0;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.consentlink:hover {
  color: #DD2A7D;
  text-decoration: underline
}

.consentlink:focus {
  outline: none;
  color: #DD2A7D;
  text-decoration: underline
}

.categorygrid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0
}

.categoryrow {
  display: flex;
  align-items: center;
  gap: 8px
}

.categorycheckbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #0294D4
}

.categorylabel {
  font-size: 14px;
  color: #1d1d1d;
  cursor: pointer;
  flex: 1
}

.categoryrow.disabled .categorycheckbox {
  cursor: not-allowed
}

.categoryrow.disabled .categorylabel {
  color: #999;
  cursor: not-allowed
}

.optoutrow {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #0294d433;
  display: flex;
  align-items: center;
  gap: 8px
}

.optoutcheckbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #DD2A7D
}

.optoutlabel {
  font-size: 14px;
  color: #1d1d1d;
  cursor: pointer;
  flex: 1;
  font-weight: 700
}

.policyfooter {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #0294d433;
  font-size: 14px;
  color: #666;
  text-align: center
}

.policylink {
  color: #0294D4;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.policylink:hover {
  color: #DD2A7D;
  text-decoration: underline
}

@media (max-width: 640px) {
  .consentpod {
    width: calc(100% - 48px);
    right: 24px;
    left: 24px
  }
}

.doc-info {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px
}

.doc-info p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #2c2c2c
}

.doc-info p:last-child {
  margin-bottom: 0
}

.doc-info strong,
.doc-info b {
  font-weight: 600;
  color: #1a1a1a
}

.doc-info em,
.doc-info i {
  font-style: italic
}

.doc-info h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 48px;
  color: #0294D4
}

.doc-info h2 {
  font-size: 24px;
  line-height: 1.4;
  margin-top: 48px;
  margin-bottom: 24px;
  color: #0294D4
}

.doc-info h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 24px;
  margin-bottom: 16px;
  color: #2c2c2c
}

.doc-info ul,
.doc-info ol {
  margin-bottom: 24px;
  padding-left: 24px
}

.doc-info li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #2c2c2c
}

.doc-info table {
  width: 100%;
  margin-bottom: 48px;
  border-collapse: collapse;
  box-shadow: -1px 3px 2px 0 #0294d414
}

.doc-info thead {
  background-color: #f5f5f5
}

.doc-info th {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  text-align: left;
  padding: 16px;
  border-bottom: 2px solid #0294D4;
  color: #2c2c2c
}

.doc-info td {
  font-size: 16px;
  line-height: 1.7;
  padding: 16px;
  border-bottom: 1px solid #e8e8e8;
  color: #2c2c2c
}

.doc-info tbody tr:last-child td {
  border-bottom: none
}

.doc-info tbody tr:hover {
  background-color: #fafbfc
}

.doc-info hr {
  height: 1px;
  border: none;
  background-color: #e8e8e8;
  margin: 48px 0
}

@media (max-width: 768px) {
  .doc-info {
    padding: 24px 16px
  }

  .doc-info h1 {
    font-size: 24px;
    margin-bottom: 24px
  }

  .doc-info h2 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 16px
  }

  .doc-info table {
    font-size: 14px
  }

  .doc-info th,
  .doc-info td {
    padding: 8px;
    font-size: 14px
  }
}

.learningprogram {
  background: #FFFFFD;
  color: #1a1a1a;
  overflow-x: clip
}

.learningprogram .programopen {
  position: relative;
  padding: 96px 24px 48px;
  background: linear-gradient(135deg, #0294D4 0%, #0294d4d9 100%);
  overflow: hidden
}

.learningprogram .programopen::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 24px;
  width: 180px;
  height: 180px;
  border: 2px solid #fffffd26;
  border-radius: 4px;
  pointer-events: none
}

.learningprogram .programopen::after {
  content: '';
  position: absolute;
  top: 56px;
  left: 32px;
  width: 164px;
  height: 164px;
  border: 2px solid #fffffd1a;
  border-radius: 4px;
  pointer-events: none
}

.learningprogram .programopeninner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 48px
}

.learningprogram .programopentext {
  flex: 1;
  padding-bottom: 96px
}

.learningprogram .programopenheading {
  font-size: 70px;
  line-height: 1.1;
  color: #FFFFFD;
  margin: 0 0 24px;
  font-weight: 700
}

.learningprogram .programopenvisual {
  width: 280px;
  height: 420px;
  flex-shrink: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden
}

.learningprogram .programopenvisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.learningprogram .programopenvisual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #0294d466 0%, transparent 70%);
  z-index: 1;
  pointer-events: none
}

.learningprogram .programopenshapes {
  position: absolute;
  bottom: 96px;
  right: 340px;
  width: 120px;
  height: 120px;
  pointer-events: none
}

.learningprogram .programopenshapes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: #fffffd14;
  border-radius: 38px;
  transform: rotate(15deg)
}

.learningprogram .programopenshapes::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border: 3px solid #fffffd1f;
  border-radius: 22px;
  transform: rotate(-12deg)
}

.learningprogram .splitdiagonal {
  position: relative;
  padding: 96px 24px;
  background: #FFFFFD
}

.learningprogram .splitdiagonalinner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative
}

.learningprogram .splitdiagonalinner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(135deg, #0294D4 0%, #DD2A7D 100%);
  transform: translateX(-1px) skewX(-3deg);
  opacity: .2
}

.learningprogram .splitzoneleft {
  padding-right: 24px
}

.learningprogram .splitzoneright {
  padding-left: 24px
}

.learningprogram .splitheading {
  font-size: 52px;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0 0 24px;
  font-weight: 700
}

.learningprogram .splitheading .gradientword {
  background: linear-gradient(135deg, #0294d4e6 0%, #0294d480 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.learningprogram .splitpara {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 16px
}

.learningprogram .splitpara:last-child {
  margin-bottom: 0
}

.learningprogram .splitlist {
  list-style: none;
  padding: 0;
  margin: 48px 0 0
}

.learningprogram .splitlistitem {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: #333
}

.learningprogram .splitlistitem:last-child {
  margin-bottom: 0
}

.learningprogram .splitnumber {
  width: 36px;
  height: 36px;
  border-radius: 38px;
  background: linear-gradient(135deg, #0294d426 0%, #0294d40d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #0294D4;
  flex-shrink: 0
}

.learningprogram .complexblock {
  position: relative;
  padding: 96px 24px;
  background: #f5f5f5;
  overflow: hidden
}

.learningprogram .complexblock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/landing_images/draft-DSC9534.jpg);
  background-size: cover;
  background-position: center;
  opacity: .08;
  pointer-events: none
}

.learningprogram .complexblock::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0294d426 0%, #dd2a7d14 100%);
  pointer-events: none
}

.learningprogram .complexinner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.learningprogram .complexgrid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start
}

.learningprogram .complexmain {
  background: #FFFFFD;
  padding: 48px;
  border-radius: 10px;
  box-shadow: -1px 6px 25px 0 #0294d41a;
  position: relative
}

.learningprogram .complexmain::before {
  content: '01';
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 120px;
  line-height: 1;
  font-weight: 700;
  color: #0294d40d;
  pointer-events: none;
  z-index: 0
}

.learningprogram .complexmainheading {
  font-size: 52px;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0 0 24px;
  font-weight: 700;
  position: relative;
  z-index: 1
}

.learningprogram .complexmainpara {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 16px;
  position: relative;
  z-index: 1
}

.learningprogram .complexmainpara:last-child {
  margin-bottom: 0
}

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

.learningprogram .complexcard {
  background: #FFFFFD;
  padding: 24px;
  border-radius: 10px;
  box-shadow: -1px 3px 2px 0 #0294d414;
  position: relative;
  border: 2px solid transparent;
  transition: border-color .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.learningprogram .complexcard:hover {
  border-color: #0294D4;
  box-shadow: -1px 8px 48px 0 #0294d41f
}

.learningprogram .complexcardlabel {
  font-size: 14px;
  line-height: 1.4;
  color: #0294D4;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 0 0 8px
}

.learningprogram .complexcardvalue {
  font-size: 52px;
  line-height: 1.1;
  color: #1a1a1a;
  font-weight: 700;
  margin: 0
}

.learningprogram .complexcardtext {
  font-size: 14px;
  line-height: 1.4;
  color: #666;
  margin: 8px 0 0
}

.learningprogram .complexcorner {
  position: absolute;
  top: -8px;
  right: 24px;
  background: #DD2A7D;
  color: #FFFFFD;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 0 0 10px 10px;
  box-shadow: -1px 3px 2px 0 #dd2a7d14
}

.learningprogram .quoteblock {
  position: relative;
  padding: 96px 24px;
  background: #FFFFFD
}

.learningprogram .quoteblock::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse at center bottom, #0294d408 0%, transparent 70%);
  pointer-events: none
}

.learningprogram .quoteblockinner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative
}

.learningprogram .quotecurve {
  position: absolute;
  top: -96px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 120px;
  overflow: hidden;
  pointer-events: none
}

.learningprogram .quotecurve svg {
  width: 100%;
  height: 100%;
  display: block
}

.learningprogram .quotegrid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 48px;
  align-items: center
}

.learningprogram .quotedivider {
  height: 280px;
  background: linear-gradient(180deg, transparent 0%, #0294d433 50%, transparent 100%)
}

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

.learningprogram .quoteheading {
  font-size: 24px;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0 0 16px;
  font-weight: 700
}

.learningprogram .quotepara {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 16px
}

.learningprogram .quotepara:last-child {
  margin-bottom: 0
}

.learningprogram .quotetextlink {
  color: #0294D4;
  text-decoration: none;
  position: relative;
  display: inline;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.learningprogram .quotetextlink::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity .22s cubic-bezier(0.4, 0, 0.2, 1), right .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.learningprogram .quotetextlink:hover {
  color: #DD2A7D
}

.learningprogram .quotetextlink:hover::after {
  opacity: 1;
  right: -24px
}

.learningprogram .quotelarge {
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
  padding: 48px;
  border-radius: 22px;
  border-left: 6px solid #0294D4;
  position: relative;
  box-shadow: -1px 6px 25px 0 #0294d41a inset 2px 2px 8px 0 #fffffd80
}

.learningprogram .quotetext {
  font-size: 24px;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0 0 24px;
  font-style: italic
}

.learningprogram .quoteauthor {
  display: flex;
  align-items: center;
  gap: 16px
}

.learningprogram .quoteauthorimage {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: -1px 3px 2px 0 #0294d414
}

.learningprogram .quoteauthorimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

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

.learningprogram .quoteauthorname {
  font-size: 18px;
  line-height: 1.4;
  color: #1a1a1a;
  font-weight: 700;
  margin: 0
}

.learningprogram .quoteauthorrole {
  font-size: 14px;
  line-height: 1.4;
  color: #666;
  margin: 0
}

.learningprogram .testimonialblock {
  position: relative;
  padding: 96px 24px;
  background: linear-gradient(135deg, #0294D4 0%, #0277a8 100%);
  overflow: hidden
}

.learningprogram .testimonialblockinner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.learningprogram .testimonialheading {
  font-size: 52px;
  line-height: 1.1;
  color: #FFFFFD;
  margin: 0 0 48px;
  font-weight: 700;
  text-align: center
}

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

.learningprogram .testimonialcard {
  background: #fffffdf2;
  padding: 24px;
  border-radius: 10px;
  box-shadow: -1px 6px 25px 0 #0294d41a;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  animation: zoomcycle 8s cubic-bezier(0.4, 0, 0.2, 1) infinite
}

@keyframes zoomcycle {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.02)
  }
}

.learningprogram .testimonialcard:nth-child(2) {
  animation-delay: 2.6s
}

.learningprogram .testimonialcard:nth-child(3) {
  animation-delay: 5.2s
}

.learningprogram .testimonialcardheader {
  display: flex;
  align-items: center;
  gap: 16px
}

.learningprogram .testimonialcardimage {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: -1px 3px 2px 0 #0294d414
}

.learningprogram .testimonialcardimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

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

.learningprogram .testimonialcardname {
  font-size: 18px;
  line-height: 1.4;
  color: #1a1a1a;
  font-weight: 700;
  margin: 0
}

.learningprogram .testimonialcardrole {
  font-size: 14px;
  line-height: 1.4;
  color: #666;
  margin: 0
}

.learningprogram .testimonialcardtext {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0
}

@media (max-width: 1024px) {
  .learningprogram .programopeninner {
    flex-direction: column;
    align-items: center
  }

  .learningprogram .programopentext {
    padding-bottom: 48px;
    text-align: center
  }

  .learningprogram .programopenheading {
    font-size: 52px
  }

  .learningprogram .programopenvisual {
    width: 100%;
    max-width: 400px;
    height: 500px
  }

  .learningprogram .programopenshapes {
    display: none
  }

  .learningprogram .splitdiagonalinner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .learningprogram .splitdiagonalinner::before {
    display: none
  }

  .learningprogram .splitzoneleft,
  .learningprogram .splitzoneright {
    padding: 0
  }

  .learningprogram .splitheading {
    font-size: 24px
  }

  .learningprogram .complexgrid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .learningprogram .complexmain {
    padding: 24px
  }

  .learningprogram .complexmain::before {
    font-size: 80px
  }

  .learningprogram .complexmainheading {
    font-size: 24px
  }

  .learningprogram .complexmainpara {
    font-size: 16px
  }

  .learningprogram .complexcardvalue {
    font-size: 24px
  }

  .learningprogram .quotegrid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .learningprogram .quotedivider {
    display: none
  }

  .learningprogram .quotelarge {
    padding: 24px
  }

  .learningprogram .quotetext {
    font-size: 18px
  }

  .learningprogram .testimonialheading {
    font-size: 24px
  }

  .learningprogram .testimonialgrid {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

@media (max-width: 768px) {
  .learningprogram .programopen {
    padding: 48px 16px 24px
  }

  .learningprogram .programopenheading {
    font-size: 24px
  }

  .learningprogram .splitdiagonal {
    padding: 48px 16px
  }

  .learningprogram .complexblock {
    padding: 48px 16px
  }

  .learningprogram .quoteblock {
    padding: 48px 16px
  }

  .learningprogram .testimonialblock {
    padding: 48px 16px
  }
}

@media (max-width: 640px) {
  .learningprogram .programopenvisual {
    height: 400px
  }

  .learningprogram .quoteauthorimage,
  .learningprogram .testimonialcardimage {
    width: 60px;
    height: 60px
  }
}

.statistics {
  background: #FFFFFD;
  color: #1a1a1a;
  overflow-x: clip
}

.statistics .titlesegment {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  position: relative
}

.statistics .titlesegment::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: #0294D4;
  clip-path: path('M 0 0 Q 285 2 570 0 T 1140 0 L 1140 2 Q 855 0 570 2 T 0 2 Z')
}

.statistics .imageshape {
  width: 280px;
  height: 360px;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
  overflow: hidden;
  box-shadow: -1px 6px 25px 0 #0294d41a
}

.statistics .imageshape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.statistics .imageshape:hover img {
  transform: scale(1.08)
}

.statistics .textzone {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.statistics .leadheading {
  font-size: 52px;
  line-height: 1.1;
  color: #1a1a1a;
  font-weight: 700;
  margin: 0
}

.statistics .leadheading .gradientword {
  background: linear-gradient(127deg, #0294d4e6 0%, #0294d480 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.statistics .leaddescription {
  font-size: 18px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0
}

.statistics .leadlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #0294D4;
  text-decoration: none;
  font-weight: 600;
  transition: gap .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.statistics .leadlink::after {
  content: '→';
  font-size: 18px;
  transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.statistics .leadlink:hover {
  gap: 16px
}

.statistics .leadlink:hover::after {
  transform: translateX(4px)
}

.statistics .datasegment {
  background: linear-gradient(135deg, #0294d408 0%, #dd2a7d08 100%);
  padding: 96px 24px;
  position: relative;
  overflow: hidden
}

.statistics .datasegment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, #0294D4 0px, #0294D4 12px, transparent 12px, transparent 24px, #DD2A7D 24px, #DD2A7D 36px, transparent 36px, transparent 48px)
}

.statistics .datasegment::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 25%, #0294d414 0%, transparent 40%), radial-gradient(circle at 85% 75%, #dd2a7d14 0%, transparent 40%);
  pointer-events: none;
  animation: colormigration 12s ease-in-out infinite
}

@keyframes colormigration {

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

  50% {
    opacity: .7;
    transform: translate(24px, -16px)
  }
}

.statistics .datacontainer {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1
}

.statistics .primarycolumn {
  display: flex;
  flex-direction: column;
  gap: 48px
}

.statistics .secondarycolumn {
  background: #0294d40f;
  padding: 48px 24px;
  border-radius: 22px;
  box-shadow: -1px 3px 2px 0 #0294d414;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: fit-content
}

.statistics .dataheading {
  font-size: 24px;
  line-height: 1.4;
  color: #1a1a1a;
  font-weight: 700;
  margin: 0 0 24px;
  position: relative
}

.statistics .dataheading::before {
  content: '01';
  position: absolute;
  top: -8px;
  left: -8px;
  font-size: 70px;
  line-height: 1.1;
  color: #0294d414;
  font-weight: 700;
  z-index: -1
}

.statistics .databody {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0 0 24px
}

.statistics .metricgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.statistics .metricbox {
  background: #FFFFFD;
  padding: 24px;
  border-radius: 10px;
  border: 2px solid #0294D4;
  transition: border-color .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.statistics .metricbox:hover {
  border-color: #DD2A7D;
  box-shadow: -1px 6px 25px 0 #dd2a7d1a
}

.statistics .metricvalue {
  font-size: 52px;
  line-height: 1.1;
  color: #0294D4;
  font-weight: 700;
  margin: 0 0 8px
}

.statistics .metriclabel {
  font-size: 14px;
  line-height: 1.4;
  color: #4a4a4a;
  margin: 0;
  letter-spacing: .02em
}

.statistics .pullquote {
  background: #dd2a7d0a;
  padding: 24px;
  border-left: 4px solid #DD2A7D;
  border-radius: 0 10px 10px 0;
  margin: 24px 0
}

.statistics .pullquotetext {
  font-size: 18px;
  line-height: 1.7;
  color: #1a1a1a;
  font-style: italic;
  margin: 0;
  font-weight: 600
}

.statistics .curvedconnector {
  position: relative;
  margin: 24px 0
}

.statistics .curvedconnector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0294D4;
  clip-path: path('M 0 0 Q 150 -8 300 0 T 600 0')
}

.statistics .sideheading {
  font-size: 18px;
  line-height: 1.4;
  color: #0294D4;
  font-weight: 700;
  margin: 0 0 16px
}

.statistics .detailcard {
  background: #FFFFFD;
  border: 2px solid #0294d433;
  border-radius: 10px;
  padding: 16px;
  box-shadow: -1px 3px 2px 0 #0294d414
}

.statistics .cardstatus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #0294D4;
  font-weight: 600;
  margin: 0 0 16px
}

.statistics .cardstatus::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #0294D4;
  border-radius: 38px;
  animation: statuspulse 2s ease-in-out infinite
}

@keyframes statuspulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.statistics .cardrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #0294d41a
}

.statistics .cardrow:last-child {
  border-bottom: none
}

.statistics .cardlabel {
  font-size: 14px;
  color: #4a4a4a;
  margin: 0
}

.statistics .cardvalue {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
  margin: 0
}

.statistics .insightsegment {
  padding: 96px 24px;
  background: #FFFFFD;
  position: relative
}

.statistics .insightcontainer {
  max-width: 1140px;
  margin: 0 auto
}

.statistics .insightheading {
  font-size: 24px;
  line-height: 1.4;
  color: #1a1a1a;
  font-weight: 700;
  margin: 0 0 48px;
  text-align: center;
  position: relative
}

.statistics .insightheading::before {
  content: '02';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 70px;
  line-height: 1.1;
  color: #dd2a7d14;
  font-weight: 700;
  z-index: -1
}

.statistics .insightgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px
}

.statistics .insightitem {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.statistics .itemnumber {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #0294D4;
  color: #FFFFFD;
  border-radius: 38px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: -1px 3px 2px 0 #0294d414 inset 0 2px 8px 0 #ffffff4d
}

.statistics .itemheading {
  font-size: 18px;
  line-height: 1.4;
  color: #1a1a1a;
  font-weight: 700;
  margin: 0
}

.statistics .itembody {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0
}

.statistics .profilesection {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 48px 0 0;
  padding: 24px;
  background: linear-gradient(127deg, #0294d40a 0%, #dd2a7d0a 100%);
  border-radius: 22px
}

.statistics .profileimage {
  width: 96px;
  height: 134px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: -1px 6px 25px 0 #0294d41a;
  flex-shrink: 0
}

.statistics .profileimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top
}

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

.statistics .profilename {
  font-size: 18px;
  line-height: 1.4;
  color: #1a1a1a;
  font-weight: 700;
  margin: 0
}

.statistics .profilerole {
  font-size: 14px;
  line-height: 1.4;
  color: #0294D4;
  margin: 0;
  font-weight: 600
}

.statistics .profilequote {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
  font-style: italic
}

@media (max-width: 1024px) {
  .statistics .titlesegment {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 16px
  }

  .statistics .imageshape {
    width: 100%;
    height: 280px
  }

  .statistics .leadheading {
    font-size: 24px
  }

  .statistics .datacontainer {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .statistics .metricgrid {
    grid-template-columns: 1fr
  }

  .statistics .insightgrid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .statistics .profilesection {
    flex-direction: column;
    text-align: center
  }

  .statistics .datasegment {
    padding: 48px 16px
  }

  .statistics .insightsegment {
    padding: 48px 16px
  }
}

@media (max-width: 768px) {
  .statistics .leadheading {
    font-size: 24px
  }

  .statistics .metricvalue {
    font-size: 24px
  }

  .statistics .dataheading::before,
  .statistics .insightheading::before {
    font-size: 52px
  }
}

.first {
  background: #FFFFFD;
  color: #1a1a1a;
  overflow-x: clip
}

.first * {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

.first img {
  display: block;
  max-width: 100%;
  height: auto
}

.first button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit
}

.titlezone {
  position: relative;
  padding: 96px 16px;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden
}

.titlezone::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  width: 120px;
  height: 120px;
  background: #0294D4;
  opacity: .08;
  border-radius: 22px;
  transform: rotate(15deg);
  z-index: 0
}

.titlezone::after {
  content: '';
  position: absolute;
  bottom: 48px;
  right: 15%;
  width: 90px;
  height: 90px;
  background: #DD2A7D;
  opacity: .06;
  border-radius: 50%;
  z-index: 0
}

.titleimage {
  position: relative;
  max-width: 640px;
  margin: 0 auto 48px;
  z-index: 1;
  opacity: 0;
  animation: imagefadein .8s cubic-bezier(0.4, 0, 0.2, 1) .2s forwards
}

@keyframes imagefadein {
  to {
    opacity: 1
  }
}

.titleimage img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: -1px 6px 25px 0 #0294d41a
}

.titleholder {
  position: relative;
  z-index: 1
}

.titleholder h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700
}

.titleholder h1 .gradient {
  background: linear-gradient(135deg, #0294D4 0%, #0294d499 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.titleholder p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 16px;
  color: #333
}

.titleholder p:last-child {
  margin-bottom: 0
}

.proofzone {
  padding: 96px 16px;
  background: linear-gradient(180deg, #FFFFFD 0%, #0294d408 100%);
  position: relative
}

.proofzone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: url('data:image/svg+xml,<svg width="100%" height="1" xmlns="http://www.w3.org/2000/svg"><path d="M0,0.5 Q10,0 20,0.5 T40,0.5 T60,0.5 T80,0.5 T100,0.5" stroke="%230294D4" fill="none" stroke-width="1" opacity="0.3"/></svg>') repeat-x
}

.proofcontent {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start
}

.prooftext {
  max-width: 540px
}

.prooftext h2 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 24px;
  font-weight: 600;
  color: #0294D4
}

.prooftext p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #333
}

.prooftext p:last-child {
  margin-bottom: 0
}

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

.proofcard {
  background: #FFFFFD;
  border: 1px solid #0294d426;
  border-radius: 10px;
  padding: 24px;
  position: relative;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.proofcard:hover {
  transform: translateY(-4px);
  box-shadow: -1px 8px 48px 0 #0294d41f
}

.proofcard::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: #0294d41a;
  border-radius: 50%;
  transition: opacity .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.proofcard:hover::before {
  opacity: 0
}

.proofcard::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: #dd2a7d26;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.proofcard:hover::after {
  opacity: 1
}

.proofcard h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a1a1a
}

.proofcard p {
  font-size: 14px;
  line-height: 1.7;
  color: #555
}

.valuezone {
  padding: 96px 16px;
  background: #FFFFFD;
  position: relative
}

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

.valueheader {
  text-align: center;
  margin-bottom: 48px
}

.valueheader h2 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 16px;
  font-weight: 600;
  color: #1a1a1a
}

.valueheader p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  color: #333
}

.valuelist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
  counter-reset: valuecounter
}

.valueitem {
  position: relative;
  padding-left: 56px;
  counter-increment: valuecounter
}

.valueitem::before {
  content: counter(valuecounter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0294d426 0%, #0294d40d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #0294D4
}

.valueitem h4 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a1a1a
}

.valueitem p {
  font-size: 14px;
  line-height: 1.7;
  color: #555
}

.teamzone {
  padding: 96px 16px;
  background: linear-gradient(180deg, #dd2a7d0a 0%, #FFFFFD 100%);
  position: relative
}

.teamcontent {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center
}

.teamtext {
  position: relative
}

.teamtext::before {
  content: '01';
  position: absolute;
  top: -24px;
  left: -16px;
  font-size: 70px;
  font-weight: 700;
  color: #dd2a7d14;
  line-height: 1;
  z-index: 0
}

.teamtext h2 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 24px;
  font-weight: 600;
  color: #1a1a1a;
  position: relative;
  z-index: 1
}

.teamtext p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #333;
  position: relative;
  z-index: 1
}

.teamtext p:last-child {
  margin-bottom: 0
}

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

.teamimage {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 3px 2px 0 #dd2a7d14
}

.teamimage img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7);
  transition: filter .26s cubic-bezier(0.4, 0, 0.2, 1), transform .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.teamimage:hover img {
  filter: saturate(1);
  transform: scale(1.05)
}

.teamimage:nth-child(2) {
  margin-top: 48px
}

.testimonyzone {
  padding: 96px 16px;
  background: #FFFFFD;
  position: relative
}

.testimonyzone::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: url('data:image/svg+xml,<svg width="100%" height="1" xmlns="http://www.w3.org/2000/svg"><path d="M0,0.5 Q10,1 20,0.5 T40,0.5 T60,0.5 T80,0.5 T100,0.5" stroke="%23DD2A7D" fill="none" stroke-width="1" opacity="0.2"/></svg>') repeat-x
}

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

.testimonyheader {
  margin-bottom: 48px
}

.testimonyheader h2 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center
}

.testimonyrows {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px
}

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

.testimonyrow:nth-child(2) {
  grid-template-columns: 2fr 1fr
}

.testimonyrow:nth-child(2) .testimonyprofile {
  order: 2
}

.testimonyrow:nth-child(2) .testimonytext {
  order: 1
}

.testimonyprofile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

.testimonyavatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #0294d433
}

.testimonyavatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top
}

.testimonyname {
  text-align: center
}

.testimonyname h5 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px
}

.testimonyname .label {
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
  padding: 4px 16px;
  background: #dd2a7d1a;
  color: #DD2A7D;
  border-radius: 38px
}

.testimonytext {
  background: linear-gradient(135deg, #0294d40a 0%, #dd2a7d05 100%);
  padding: 24px;
  border-radius: 10px;
  border-right: 4px solid #0294D4;
  position: relative
}

.testimonytext::before {
  content: '02';
  position: absolute;
  top: -16px;
  right: 16px;
  font-size: 52px;
  font-weight: 700;
  color: #0294d40f;
  line-height: 1
}

.testimonytext h6 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 16px;
  font-weight: 600;
  color: #1a1a1a
}

.testimonytext p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px
}

.testimonytext p:last-child {
  margin-bottom: 0
}

.testimonyrow:nth-child(2) .testimonytext {
  border-right: none;
  border-left: 4px solid #DD2A7D
}

.testimonyrow:nth-child(2) .testimonytext::before {
  content: '03';
  left: 16px;
  right: auto;
  color: #dd2a7d0f
}

@media (max-width: 1024px) {
  .titlezone {
    padding: 48px 16px
  }

  .titleholder h1 {
    font-size: 24px
  }

  .titleholder p {
    font-size: 16px
  }

  .proofzone,
  .valuezone,
  .teamzone,
  .testimonyzone {
    padding: 48px 16px
  }

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

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

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

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

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

  .teamimage:nth-child(2) {
    margin-top: 0
  }

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

  .testimonyrow:nth-child(2) {
    grid-template-columns: 1fr
  }

  .testimonyrow:nth-child(2) .testimonyprofile {
    order: 1
  }

  .testimonyrow:nth-child(2) .testimonytext {
    order: 2
  }
}

@media (max-width: 640px) {
  .titlezone {
    padding: 24px 16px
  }

  .titleimage {
    margin-bottom: 24px
  }

  .titleholder h1 {
    font-size: 18px;
    margin-bottom: 16px
  }

  .titleholder p {
    font-size: 14px
  }

  .proofzone,
  .valuezone,
  .teamzone,
  .testimonyzone {
    padding: 24px 16px
  }

  .prooftext h2,
  .valueheader h2,
  .teamtext h2,
  .testimonyheader h2 {
    font-size: 18px
  }

  .proofcard {
    padding: 16px
  }

  .valueitem {
    padding-left: 48px
  }

  .valueitem::before {
    width: 36px;
    height: 36px;
    font-size: 16px
  }

  .teamimage img {
    height: 200px
  }

  .testimonyavatar {
    width: 100px;
    height: 100px
  }
}

.aboutus {
  background: #FFFFFD;
  color: #1a1a1a;
  overflow-x: clip
}

.aboutus * {
  box-sizing: border-box
}

.aboutus .topbanner {
  display: flex;
  align-items: stretch;
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 96px;
  padding-bottom: 48px;
  gap: 0
}

.aboutus .topbanner .imageside {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px
}

.aboutus .topbanner .imageside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%)
}

.aboutus .topbanner .textside {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 48px 24px;
  position: relative
}

.aboutus .topbanner .maintitle {
  font-size: 70px;
  line-height: 1.1;
  margin: 0 0 48px;
  font-weight: 700;
  color: #0294D4
}

.aboutus .topbanner .primarylink {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  color: #0294D4;
  text-decoration: none;
  font-weight: 600;
  transition: color .24s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative
}

.aboutus .topbanner .primarylink .arrowicon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.aboutus .topbanner .primarylink .arrowicon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
  transition: opacity .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.aboutus .topbanner .primarylink .arrowicon::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: opacity .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.aboutus .topbanner .primarylink:hover {
  color: #DD2A7D
}

.aboutus .topbanner .primarylink:hover .arrowicon {
  transform: translateX(8px)
}

.aboutus .decorativestrokes {
  position: absolute;
  top: 24px;
  right: 48px;
  width: 48px;
  height: 48px;
  pointer-events: none
}

.aboutus .decorativestrokes .stroke {
  position: absolute;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #0294d44d 0%, #dd2a7d4d 100%);
  transform-origin: left center
}

.aboutus .decorativestrokes .stroke:nth-child(1) {
  top: 0;
  left: 0;
  transform: rotate(-15deg)
}

.aboutus .decorativestrokes .stroke:nth-child(2) {
  top: 16px;
  left: 8px;
  transform: rotate(-15deg)
}

.aboutus .decorativestrokes .stroke:nth-child(3) {
  top: 32px;
  left: 16px;
  transform: rotate(-15deg)
}

.aboutus .storyarea {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 48px;
  position: relative;
  background: radial-gradient(ellipse 800px 600px at 50% 50%, #0294d414, transparent)
}

.aboutus .storyarea::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(to right, transparent, transparent 8px, #0294D4 8px, #0294D4 12px, transparent 12px, transparent 16px, #DD2A7D 16px, #DD2A7D 20px);
  opacity: .3
}

.aboutus .storyarea .scanlines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1
}

.aboutus .storyarea .scanlines::before,
.aboutus .storyarea .scanlines::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #0294d433, transparent);
  animation: scandrift 8s linear infinite
}

.aboutus .storyarea .scanlines::before {
  top: 20%;
  animation-delay: 0s
}

.aboutus .storyarea .scanlines::after {
  top: 60%;
  animation-delay: 4s
}

@keyframes scandrift {
  0% {
    transform: translateY(0);
    opacity: 0
  }

  10% {
    opacity: 1
  }

  90% {
    opacity: 1
  }

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

.aboutus .storyarea .contentgrid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 2
}

.aboutus .storyarea .maincontent {
  display: flex;
  flex-direction: column;
  gap: 48px
}

.aboutus .storyarea .textblock {
  position: relative
}

.aboutus .storyarea .textblock .numberbehind {
  position: absolute;
  top: -24px;
  left: -16px;
  font-size: 120px;
  font-weight: 700;
  color: #0294d414;
  line-height: 1;
  z-index: -1;
  pointer-events: none
}

.aboutus .storyarea .blockheading {
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 16px;
  font-weight: 700;
  color: #0294D4
}

.aboutus .storyarea .blocktext {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
  color: #2a2a2a
}

.aboutus .storyarea .blocktext:last-child {
  margin-bottom: 0
}

.aboutus .storyarea .sidecolumn {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.aboutus .storyarea .chartcard {
  background: #FFFFFD;
  border-radius: 22px;
  padding: 24px;
  box-shadow: -1px 6px 25px 0 #0294d41a;
  border: 1px solid #0294d426;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.aboutus .storyarea .chartcard:hover {
  transform: translateY(-4px);
  box-shadow: -1px 8px 48px 0 #0294d41f
}

.aboutus .storyarea .charttitle {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 24px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center
}

.aboutus .storyarea .donutchart {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  position: relative
}

.aboutus .storyarea .donutchart svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg)
}

.aboutus .storyarea .donutchart .chartcircle {
  fill: none;
  stroke-width: 24;
  transition: stroke-dashoffset .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.aboutus .storyarea .donutchart .chartbackground {
  stroke: #0294d41a
}

.aboutus .storyarea .donutchart .chartprogress {
  stroke: #0294D4;
  stroke-dasharray: 377;
  stroke-dashoffset: 94.25;
  stroke-linecap: round
}

.aboutus .storyarea .chartlabel {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: #4a4a4a;
  margin: 0
}

.aboutus .storyarea .profilecard {
  background: #FFFFFD;
  border-radius: 22px;
  padding: 24px;
  box-shadow: -1px 6px 25px 0 #dd2a7d1a;
  border: 1px solid #dd2a7d26;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.aboutus .storyarea .profilecard:hover {
  transform: translateY(-4px);
  box-shadow: -1px 8px 48px 0 #dd2a7d1f
}

.aboutus .storyarea .profileimage {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  position: relative
}

.aboutus .storyarea .profileimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.aboutus .storyarea .profilecard:hover .profileimage img {
  transform: scale(1.05)
}

.aboutus .storyarea .profilename {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  font-weight: 700;
  color: #DD2A7D
}

.aboutus .storyarea .profilerole {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  color: #5a5a5a
}

.aboutus .valuegrid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 48px;
  position: relative
}

.aboutus .valuegrid .sectionheading {
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 48px;
  font-weight: 700;
  text-align: center
}

.aboutus .valuegrid .sectionheading .gradientword {
  background: linear-gradient(135deg, #0294d4ff 0%, #0294d4b3 50%, #0294d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.aboutus .valuegrid .cardcontainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.aboutus .valuegrid .valuecard {
  background: #FFFFFD;
  border-radius: 22px;
  padding: 24px;
  border: 2px solid #0294d433;
  position: relative;
  overflow: hidden;
  transition: border-color .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.aboutus .valuegrid .valuecard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0294d408 0%, transparent 100%);
  opacity: 0;
  transition: opacity .26s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none
}

.aboutus .valuegrid .valuecard:hover {
  border-color: #0294D4
}

.aboutus .valuegrid .valuecard:hover::before {
  opacity: 1
}

.aboutus .valuegrid .cardnumber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 38px;
  background: linear-gradient(135deg, #0294d426 0%, #dd2a7d26 100%);
  font-size: 18px;
  font-weight: 700;
  color: #0294D4;
  margin: 0 0 16px
}

.aboutus .valuegrid .cardtitle {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 16px;
  font-weight: 700;
  color: #1a1a1a
}

.aboutus .valuegrid .carddescription {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #3a3a3a
}

.aboutus .valuegrid .largecard {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  background: linear-gradient(135deg, #0294d40d 0%, #dd2a7d0d 100%);
  border: 2px solid #dd2a7d33;
  position: relative
}

.aboutus .valuegrid .largecard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #dd2a7d14 0%, transparent 100%);
  opacity: 0;
  transition: opacity .26s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none
}

.aboutus .valuegrid .largecard:hover {
  border-color: #DD2A7D
}

.aboutus .valuegrid .largecard:hover::before {
  opacity: 1
}

.aboutus .valuegrid .largecard .cardnumber {
  background: linear-gradient(135deg, #dd2a7d26 0%, #0294d426 100%);
  color: #DD2A7D;
  width: 64px;
  height: 64px;
  font-size: 24px
}

.aboutus .valuegrid .largecard .cardtitle {
  font-size: 24px;
  margin-bottom: 24px
}

.aboutus .valuegrid .largecard .carddescription {
  font-size: 16px
}

.aboutus .valuegrid .largecard .cardimage {
  width: 100%;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 24px;
  position: relative
}

.aboutus .valuegrid .largecard .cardimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.aboutus .valuegrid .largecard:hover .cardimage img {
  transform: scale(1.08)
}

.aboutus .interactivedemo {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 48px 96px
}

.aboutus .interactivedemo .democontainer {
  background: #f5f5f5;
  border-radius: 22px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid #0294d41a
}

.aboutus .interactivedemo .demotitle {
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 24px;
  font-weight: 700;
  color: #0294D4;
  text-align: center
}

.aboutus .interactivedemo .revealwrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden
}

.aboutus .interactivedemo .hiddencontent {
  background: #FFFFFD;
  padding: 24px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.aboutus .interactivedemo .contentitem {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.aboutus .interactivedemo .itemicon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: linear-gradient(135deg, #0294d426 0%, #dd2a7d26 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0294D4;
  font-weight: 700;
  font-size: 16px
}

.aboutus .interactivedemo .itemtext {
  flex: 1
}

.aboutus .interactivedemo .itemtitle {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 8px;
  font-weight: 600;
  color: #1a1a1a
}

.aboutus .interactivedemo .itemdescription {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #4a4a4a
}

.aboutus .interactivedemo .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0294d4eb 0%, #dd2a7deb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .26s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2
}

.aboutus .interactivedemo .revealwrapper:hover .overlay {
  opacity: 0;
  pointer-events: none
}

.aboutus .interactivedemo .overlaytext {
  font-size: 18px;
  line-height: 1.4;
  color: #FFFFFD;
  font-weight: 600;
  text-align: center;
  padding: 16px 24px;
  border: 2px solid #fffffd80;
  border-radius: 10px;
  background: #fffffd1a;
  box-shadow: inset 0 2px 8px 0 #fffffd33
}

@media (max-width: 1024px) {
  .aboutus .topbanner {
    flex-direction: column;
    padding-top: 48px
  }

  .aboutus .topbanner .textside {
    padding: 48px 24px 24px
  }

  .aboutus .topbanner .maintitle {
    font-size: 52px
  }

  .aboutus .storyarea {
    padding: 48px 24px
  }

  .aboutus .storyarea .contentgrid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .aboutus .valuegrid {
    padding: 48px 24px
  }

  .aboutus .valuegrid .sectionheading {
    font-size: 42px
  }

  .aboutus .valuegrid .cardcontainer {
    grid-template-columns: 1fr
  }

  .aboutus .valuegrid .largecard {
    grid-column: span 1;
    grid-row: span 1;
    padding: 24px
  }

  .aboutus .interactivedemo {
    padding: 24px 24px 48px
  }

  .aboutus .interactivedemo .democontainer {
    padding: 24px
  }

  .aboutus .interactivedemo .hiddencontent {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .aboutus .topbanner .maintitle {
    font-size: 42px;
    margin-bottom: 24px
  }

  .aboutus .topbanner .textside {
    padding: 24px
  }

  .aboutus .valuegrid .sectionheading {
    font-size: 32px;
    margin-bottom: 24px
  }

  .aboutus .storyarea .blockheading {
    font-size: 18px
  }

  .aboutus .interactivedemo .demotitle {
    font-size: 18px
  }
}

@media (max-width: 640px) {
  .aboutus .topbanner {
    padding-top: 24px;
    padding-bottom: 24px
  }

  .aboutus .topbanner .maintitle {
    font-size: 32px
  }

  .aboutus .topbanner .primarylink {
    font-size: 16px
  }

  .aboutus .storyarea {
    padding: 24px 16px
  }

  .aboutus .storyarea .maincontent {
    gap: 24px
  }

  .aboutus .valuegrid {
    padding: 24px 16px
  }

  .aboutus .valuegrid .sectionheading {
    font-size: 24px
  }

  .aboutus .interactivedemo {
    padding: 16px 16px 24px
  }

  .aboutus .interactivedemo .democontainer {
    padding: 16px
  }
}

.aboutus button:focus-visible,
.aboutus a:focus-visible,
.aboutus input:focus-visible {
  outline: 2px solid #0294D4 !important;
  outline-offset: 2px !important
}

.contactus {
  background: #FFFFFD;
  color: #1a1a2e;
  overflow-x: clip
}

.contactus .topband {
  background: linear-gradient(127deg, #0294D4 0%, #0294D4 48%, #DD2A7D 100%);
  padding: 48px 16px;
  position: relative;
  overflow: hidden
}

.contactus .topband::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, #fffffd26 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none
}

.contactus .topbandinner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1
}

.contactus .imageshape {
  flex-shrink: 0;
  width: 280px;
  height: 180px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%)
}

.contactus .imageshape::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0294d4b3 0%, transparent 60%);
  pointer-events: none
}

.contactus .imageshape .shapepattern {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0294D4 0%, #0294D4 30%, #DD2A7D 70%, #DD2A7D 100%);
  opacity: .9
}

.contactus .textzone {
  flex: 1;
  color: #FFFFFD
}

.contactus .textzone h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -.02em
}

.contactus .textzone .brief {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  opacity: .95
}

.contactus .methodssection {
  background: #FFFFFD;
  padding: 96px 16px;
  position: relative
}

.contactus .methodsinner {
  max-width: 1140px;
  margin: 0 auto
}

.contactus .methodsintro {
  margin-bottom: 48px
}

.contactus .methodsintro h2 {
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 700;
  color: #1a1a2e;
  position: relative
}

.contactus .methodsintro h2::before {
  content: '01';
  position: absolute;
  font-size: 140px;
  line-height: 1;
  color: #0294d414;
  font-weight: 700;
  top: -40px;
  left: -8px;
  z-index: 0;
  pointer-events: none
}

.contactus .methodsintro h2 span {
  position: relative;
  z-index: 1
}

.contactus .methodsintro .description {
  font-size: 18px;
  line-height: 1.7;
  color: #3d3d4e;
  margin: 0
}

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

.contactus .methodcard {
  background: #FFFFFD;
  border: 2px solid #0294d426;
  border-radius: 10px;
  padding: 24px;
  position: relative;
  transition: border-color .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.contactus .methodcard:hover {
  border-color: #0294D4;
  box-shadow: -1px 6px 25px 0 #0294d41a
}

.contactus .methodcard .iconwrap {
  width: 56px;
  height: 56px;
  border-radius: 38px;
  background: linear-gradient(127deg, #0294d41a 0%, #dd2a7d1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.contactus .methodcard:hover .iconwrap {
  transform: scale(1.08)
}

.contactus .methodcard .iconwrap svg {
  width: 28px;
  height: 28px;
  fill: #0294D4
}

.contactus .methodcard h3 {
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 8px;
  font-weight: 600;
  color: #1a1a2e
}

.contactus .methodcard .detail {
  font-size: 16px;
  line-height: 1.4;
  color: #3d3d4e;
  margin: 0 0 16px
}

.contactus .methodcard .linkaction {
  font-size: 16px;
  font-weight: 600;
  color: #0294D4;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.contactus .methodcard .linkaction:hover {
  gap: 12px
}

.contactus .methodcard .linkaction::after {
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230294D4'%3E%3Cpath d='M16.172 11l-5.364-5.364 1.414-1.414L20 12l-7.778 7.778-1.414-1.414L16.172 13H4v-2z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.contactus .methodcard .linkaction:hover::after {
  transform: translateX(4px)
}

.contactus .dividerband {
  height: 8px;
  background: linear-gradient(90deg, #0294D4 0%, #DD2A7D 100%);
  margin: 0
}

.contactus .formsection {
  background: linear-gradient(180deg, #FFFFFD 0%, #0294d408 100%);
  padding: 96px 16px;
  position: relative
}

.contactus .formsection::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #dd2a7d0f 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0
}

.contactus .forminner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1
}

.contactus .formintro {
  position: sticky;
  top: 96px
}

.contactus .formintro h2 {
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 700;
  color: #1a1a2e
}

.contactus .formintro .gradient {
  background: linear-gradient(127deg, #0294D4 0%, #DD2A7D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.contactus .formintro .narrative {
  font-size: 18px;
  line-height: 1.7;
  color: #3d3d4e;
  margin: 0 0 24px
}

.contactus .pathwrap {
  position: relative;
  padding-left: 32px;
  margin-top: 48px
}

.contactus .pathwrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(to bottom, #0294D4 0px, #0294D4 8px, transparent 8px, transparent 16px)
}

.contactus .pathitem {
  position: relative;
  margin-bottom: 24px
}

.contactus .pathitem::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 38px;
  background: #DD2A7D;
  border: 2px solid #FFFFFD;
  box-shadow: -1px 3px 2px 0 #dd2a7d14
}

.contactus .pathitem .pathlabel {
  font-size: 14px;
  font-weight: 600;
  color: #0294D4;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 4px
}

.contactus .pathitem .pathtext {
  font-size: 16px;
  line-height: 1.4;
  color: #3d3d4e;
  margin: 0
}

.contactus .formcontainer {
  background: #FFFFFD;
  border-radius: 10px;
  padding: 48px;
  box-shadow: -1px 8px 48px 0 #0294d41f;
  border: 1px solid #0294d41a;
  position: relative
}

.contactus .formcontainer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0294D4 0%, #DD2A7D 100%);
  border-radius: 10px 10px 0 0
}

.contactus .formcontainer form {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.contactus .categoryselect {
  margin-bottom: 8px
}

.contactus .categoryselect label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
  letter-spacing: .02em
}

.contactus .categoryselect select {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  color: #1a1a2e;
  background: #FFFFFD;
  border: 2px solid #0294d433;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230294D4'%3E%3Cpath d='M12 15l-5-5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px;
  padding-right: 48px
}

.contactus .categoryselect select:focus {
  outline: none;
  border-color: #0294D4;
  box-shadow: 0 0 0 3px #0294d41a
}

.contactus .categoryselect select:hover {
  border-color: #0294D4
}

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

.contactus .inputfield label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: .02em
}

.contactus .inputfield input {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  color: #1a1a2e;
  background: #FFFFFD;
  border: 2px solid #0294d433;
  border-radius: 4px;
  transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.contactus .inputfield input::placeholder {
  color: #3d3d4e80
}

.contactus .inputfield input:focus {
  outline: none;
  border-color: #0294D4;
  box-shadow: 0 0 0 3px #0294d41a
}

.contactus .inputfield input:hover {
  border-color: #0294D4
}

.contactus .consentbox {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 16px;
  background: #0294d408;
  border-radius: 4px;
  border: 1px solid #0294d41a
}

.contactus .consentbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #0294D4;
  flex-shrink: 0
}

.contactus .consentbox label {
  font-size: 14px;
  line-height: 1.4;
  color: #3d3d4e;
  cursor: pointer;
  flex: 1
}

.contactus .consentbox label a {
  color: #0294D4;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.contactus .consentbox label a:hover {
  color: #DD2A7D
}

.contactus .submitwrap {
  margin-top: 8px
}

.contactus .submitwrap button {
  width: 100%;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFD;
  background: linear-gradient(127deg, #0294D4 0%, #DD2A7D 100%);
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color .24s cubic-bezier(0.4, 0, 0.2, 1), transform .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.contactus .submitwrap button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(127deg, #DD2A7D 0%, #0294D4 100%);
  opacity: 0;
  transition: opacity .24s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0
}

.contactus .submitwrap button:hover::before {
  opacity: 1
}

.contactus .submitwrap button span {
  position: relative;
  z-index: 1
}

.contactus .submitwrap button:hover {
  border-color: #0294D4;
  transform: translateY(-2px);
  box-shadow: -1px 8px 48px 0 #0294d41f
}

.contactus .submitwrap button:active {
  transform: translateY(0)
}

@media (max-width: 1024px) {
  .contactus .topbandinner {
    flex-direction: column;
    text-align: center;
    gap: 24px
  }

  .contactus .imageshape {
    width: 240px;
    height: 160px
  }

  .contactus .textzone h1 {
    font-size: 52px
  }

  .contactus .methodsgrid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .contactus .forminner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .contactus .formintro {
    position: static
  }

  .contactus .methodsintro h2 {
    font-size: 52px
  }

  .contactus .formintro h2 {
    font-size: 52px
  }
}

@media (max-width: 768px) {
  .contactus .topband {
    padding: 48px 16px
  }

  .contactus .textzone h1 {
    font-size: 52px
  }

  .contactus .textzone .brief {
    font-size: 16px
  }

  .contactus .methodssection {
    padding: 48px 16px
  }

  .contactus .methodsintro h2 {
    font-size: 52px
  }

  .contactus .methodsintro h2::before {
    font-size: 100px;
    top: -30px
  }

  .contactus .formsection {
    padding: 48px 16px
  }

  .contactus .formintro h2 {
    font-size: 52px
  }

  .contactus .formcontainer {
    padding: 24px
  }

  .contactus .pathwrap {
    margin-top: 24px
  }
}

@media (max-width: 640px) {
  .contactus .topband {
    padding: 24px 16px
  }

  .contactus .imageshape {
    width: 200px;
    height: 140px
  }

  .contactus .textzone h1 {
    font-size: 52px;
    margin-bottom: 8px
  }

  .contactus .textzone .brief {
    font-size: 16px
  }

  .contactus .methodssection {
    padding: 48px 16px
  }

  .contactus .methodsintro {
    margin-bottom: 24px
  }

  .contactus .methodsintro h2 {
    font-size: 52px;
    margin-bottom: 16px
  }

  .contactus .methodsintro h2::before {
    font-size: 80px;
    top: -20px
  }

  .contactus .methodsintro .description {
    font-size: 16px
  }

  .contactus .methodcard {
    padding: 24px
  }

  .contactus .methodcard h3 {
    font-size: 18px
  }

  .contactus .methodcard .detail {
    font-size: 14px
  }

  .contactus .formsection {
    padding: 48px 16px
  }

  .contactus .formintro h2 {
    font-size: 52px;
    margin-bottom: 16px
  }

  .contactus .formintro .narrative {
    font-size: 16px;
    margin-bottom: 16px
  }

  .contactus .pathwrap {
    padding-left: 24px;
    margin-top: 24px
  }

  .contactus .pathitem {
    margin-bottom: 16px
  }

  .contactus .pathitem::before {
    left: -30px
  }

  .contactus .formcontainer {
    padding: 24px
  }

  .contactus .categoryselect label,
  .contactus .inputfield label {
    font-size: 14px
  }

  .contactus .categoryselect select,
  .contactus .inputfield input {
    padding: 14px;
    font-size: 16px
  }

  .contactus .submitwrap button {
    padding: 16px 24px;
    font-size: 16px
  }
}

.successpage {
  background: linear-gradient(165deg, #FFFFFD 0%, #0294d40a 100%);
  min-height: 100vh;
  padding: 96px 16px
}

.successpage .successcontainer {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px
}

.successpage .iconwrapper {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #0294d41f 0%, #dd2a7d14 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: -1px 6px 25px 0 #0294d41a
}

.successpage .iconwrapper::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 3px solid #0294D4;
  border-radius: 50%;
  opacity: .3
}

.successpage .iconwrapper svg {
  width: 70px;
  height: 70px;
  stroke: #0294D4;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.successpage .messagebox {
  text-align: center;
  max-width: 640px
}

.successpage .messagebox h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #1a1a1a
}

.successpage .messagebox h1 span {
  background: linear-gradient(165deg, #0294D4 0%, #DD2A7D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.successpage .messagebox p {
  font-size: 18px;
  line-height: 1.7;
  color: #2d2d2d;
  margin: 0 0 16px
}

.successpage .messagebox p:last-of-type {
  margin-bottom: 0
}

.successpage .detailsblock {
  background: #FFFFFD;
  border: 2px solid #0294d433;
  border-radius: 22px;
  padding: 48px;
  width: 100%;
  max-width: 640px;
  box-shadow: -1px 3px 2px 0 #0294d414
}

.successpage .detailsblock h2 {
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 24px;
  color: #1a1a1a
}

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

.successpage .infolist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #2d2d2d
}

.successpage .infolist li::before {
  content: '';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0294d426 0%, #dd2a7d1a 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: inset 0 2px 6px #0294d433
}

.successpage .actiongroup {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 640px
}

.successpage .primarybutton {
  background: #0294D4;
  color: #FFFFFD;
  border: 2px solid #0294D4;
  border-radius: 10px;
  padding: 16px 48px;
  font-size: 18px;
  cursor: pointer;
  transition: border-color .24s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  text-align: center
}

.successpage .primarybutton:hover {
  border-color: #DD2A7D
}

.successpage .secondarybutton {
  background: transparent;
  color: #0294D4;
  border: 2px solid #0294D4;
  border-radius: 10px;
  padding: 16px 48px;
  font-size: 18px;
  cursor: pointer;
  transition: border-color .22s cubic-bezier(0.0, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  text-align: center
}

.successpage .secondarybutton:hover {
  border-color: #DD2A7D;
  color: #DD2A7D
}

.successpage .footnote {
  font-size: 14px;
  line-height: 1.7;
  color: #5a5a5a;
  text-align: center;
  max-width: 640px
}

@media (max-width: 768px) {
  .successpage {
    padding: 48px 16px
  }

  .successpage .successcontainer {
    gap: 24px
  }

  .successpage .iconwrapper {
    width: 100px;
    height: 100px
  }

  .successpage .iconwrapper svg {
    width: 50px;
    height: 50px
  }

  .successpage .messagebox h1 {
    font-size: 38px;
    margin-bottom: 16px
  }

  .successpage .messagebox p {
    font-size: 16px
  }

  .successpage .detailsblock {
    padding: 24px
  }

  .successpage .detailsblock h2 {
    font-size: 20px;
    margin-bottom: 16px
  }

  .successpage .primarybutton,
  .successpage .secondarybutton {
    padding: 16px 24px;
    font-size: 16px
  }
}