html {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: 'Cabin', sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: #0F405C;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: .015em
}

::selection {
  background: #ff806b2e
}

:focus {
  outline: none;
  background-color: #ff806b14
}

.mainHeader {
  background: linear-gradient(135deg, #F2F3F4 0%, #fff 100%);
  border-bottom: 1px solid #0f405c14;
  box-shadow: 0 5px 14px -2px #0f405c1c
}

.hdrInner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 2px 2fr;
  gap: 40px;
  align-items: center
}

.brandZone {
  display: flex;
  align-items: center;
  gap: 20px
}

.logoContainer {
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1px solid #0f405c1f;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 2px 4px -2px #0f405c0d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.logoContainer img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.brandText {
  font-size: 30px;
  font-weight: 700;
  color: #0F405C;
  letter-spacing: .01em;
  line-height: 1.1
}

.hdrDivider {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, transparent 0%, #FF806B 50%, transparent 100%)
}

.navZone {
  display: flex;
  align-items: center;
  justify-content: flex-end
}

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

.primaryNav a {
  font-size: 18px;
  font-weight: 400;
  color: #0F405C;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 8px;
  transition: background-color .18s ease-out, color .22s ease-out;
  white-space: nowrap
}

.primaryNav a:hover {
  background-color: #ff806b1f;
  color: #FF806B
}

.primaryNav a:focus {
  background-color: #ff806b29
}

@media (max-width: 900px) {
  .hdrInner {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .hdrDivider {
    display: none
  }

  .navZone {
    justify-content: center
  }

  .primaryNav {
    justify-content: center
  }
}

@media (max-width: 600px) {
  .hdrInner {
    padding: 20px
  }

  .brandZone {
    justify-content: center
  }

  .brandText {
    font-size: 22px
  }

  .primaryNav {
    flex-direction: column;
    gap: 4px;
    width: 100%
  }

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

.siteFooter {
  background: #0F405C;
  border-top: 3px solid #FF806B;
  position: relative;
  overflow: hidden
}

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

.siteFooter::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 80px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #ff806b14 0%, transparent 70%);
  border-radius: 48px;
  pointer-events: none
}

.ftrInner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  position: relative
}

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

.ftrLogoWrap {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #ffffff0d;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ff806b26;
  box-shadow: 0 2px 4px -2px #ff806b0d inset 0 1px 2px #ffffff14;
  align-self: flex-start
}

.ftrLogoContainer {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 4px -2px #0f405c0d
}

.ftrLogoContainer img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.ftrBrandName {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em
}

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

.ftrInfoItem {
  font-size: 15px;
  color: #ffffffbf;
  line-height: 1.55;
  display: flex;
  align-items: baseline;
  gap: 8px
}

.ftrInfoItem::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #FF806B;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 8px
}

.ftrInfoItem a {
  color: #ffffffd9;
  text-decoration: none;
  transition: color .2s ease-out
}

.ftrInfoItem a:hover {
  color: #FF806B
}

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

.ftrNavGroup {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.ftrNavTitle {
  font-size: 18px;
  font-weight: 700;
  color: #FF806B;
  letter-spacing: .02em;
  margin-bottom: 4px;
  position: relative;
  padding-bottom: 8px
}

.ftrNavTitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #FF806B;
  border-radius: 8px
}

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

.ftrNavList li {
  position: relative;
  padding-left: 20px
}

.ftrNavList li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: #ff806b66;
  transition: width .25s ease-out, background-color .2s ease-out
}

.ftrNavList li:hover::before {
  width: 12px;
  background: #FF806B
}

.ftrNavList a {
  font-size: 15px;
  color: #ffffffd9;
  text-decoration: none;
  transition: color .22s ease-out, padding-left .25s ease-out;
  display: inline-block
}

.ftrNavList a:hover {
  color: #fff;
  padding-left: 4px
}

.ftrBottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px;
  border-top: 1px solid #ff806b26;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px
}

.ftrCopyright {
  font-size: 15px;
  color: #fff9;
  display: flex;
  align-items: center;
  gap: 8px
}

.ftrCopyright::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #ff806b4d
}

.ftrLegalLinks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.ftrLegalLinks a {
  font-size: 15px;
  color: #ffffffb3;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color .2s ease-out, background-color .18s ease-out
}

.ftrLegalLinks a:hover {
  color: #FF806B;
  background-color: #ff806b14
}

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

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

  .ftrBottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 40px
  }

  .ftrLegalLinks {
    justify-content: center
  }
}

@media (max-width: 600px) {
  .ftrInner {
    padding: 40px 20px
  }

  .ftrBottom {
    padding: 20px
  }
}

.cookieConsentPopup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 480px;
  background: #fff;
  border: 1px solid #0f405c1f;
  border-radius: 8px;
  box-shadow: 0 12px 48px -2px #0f405c1c;
  padding: 40px;
  z-index: 1000;
  display: none;
  transform: translateX(-520px);
  transition: transform .26s ease-out
}

.cookieConsentPopup.in {
  display: block;
  transform: translateX(0)
}

.cookieConsentPopup.out {
  transform: translateX(-520px)
}

.popupTitle {
  font-size: 22px;
  font-weight: 700;
  color: #0F405C;
  margin-bottom: 20px;
  line-height: 1.1
}

.popupMessage {
  font-size: 15px;
  color: #0F405C;
  line-height: 1.55;
  margin-bottom: 20px
}

.popupSettingsSection {
  display: none;
  margin-bottom: 20px;
  padding: 20px;
  background: #F2F3F4;
  border-radius: 8px
}

.popupSettingsSection.visible {
  display: block
}

.settingsGroup {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.settingRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px
}

.settingLabel {
  font-size: 15px;
  color: #0F405C;
  font-weight: 700
}

.settingDescription {
  font-size: 15px;
  color: #0f405cbf;
  margin-top: 4px
}

.toggleSwitch {
  position: relative;
  width: 48px;
  height: 24px;
  background: #0f405c33;
  border-radius: 48px;
  cursor: pointer;
  transition: background-color .2s ease-out;
  flex-shrink: 0
}

.toggleSwitch.active {
  background: #FF806B
}

.toggleSwitch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 48px;
  transition: transform .2s ease-out;
  box-shadow: 0 2px 4px -2px #0f405c0d
}

.toggleSwitch.active::after {
  transform: translateX(24px)
}

.popupActions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.popupBtn {
  flex: 1;
  min-width: 120px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid #0F405C;
  border-radius: 8px;
  background: transparent;
  color: #0F405C;
  cursor: pointer;
  transition: background-color .2s ease-out, color .22s ease-out, border-color .2s ease-out;
  font-family: 'Cabin', sans-serif
}

.popupBtn:hover {
  background-color: #0F405C;
  color: #fff
}

.popupBtn.secondary {
  border-color: #0f405c4d;
  color: #0f405cbf
}

.popupBtn.secondary:hover {
  border-color: #0F405C;
  background-color: #0F405C;
  color: #fff
}

@media (max-width: 600px) {
  .cookieConsentPopup {
    left: 20px;
    right: 20px;
    max-width: none;
    padding: 20px
  }

  .popupActions {
    flex-direction: column
  }

  .popupBtn {
    width: 100%
  }
}

.consentBadge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: #0F405C;
  border: 2px solid #FF806B;
  border-radius: 48px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 5px 14px -2px #0f405c1c;
  transition: transform .2s ease-out, box-shadow .22s ease-out
}

.consentBadge.visible {
  display: flex
}

.consentBadge:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 48px -2px #0f405c1c
}

.consentBadge svg {
  width: 24px;
  height: 24px;
  fill: #FF806B
}

.doc-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 40px;
  background: #fff
}

.doc-section h1 {
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: .01em;
  color: #0F405C;
  margin: 0 0 40px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.doc-section h2 {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: .01em;
  color: #0F405C;
  margin: 80px 0 40px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.doc-section h3 {
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: .01em;
  color: #0F405C;
  margin: 40px 0 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.doc-section h4 {
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: .01em;
  color: #0F405C;
  margin: 40px 0 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.doc-section h5 {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .01em;
  color: #0F405C;
  margin: 20px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.doc-section h6 {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .02em;
  color: #0F405C;
  margin: 20px 0;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.doc-section p {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .01em;
  color: #0F405C;
  margin: 0 0 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.doc-section ul {
  margin: 0 0 20px;
  padding: 0 0 0 40px;
  list-style-type: disc
}

.doc-section ol {
  margin: 0 0 20px;
  padding: 0 0 40px;
  list-style-type: decimal
}

.doc-section li {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .01em;
  color: #0F405C;
  margin: 0 0 8px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.doc-section ul ul {
  margin: 8px 0;
  padding: 0 0 0 40px;
  list-style-type: circle
}

.doc-section ol ol {
  margin: 8px 0;
  padding: 0 0 0 40px;
  list-style-type: lower-alpha
}

.doc-section a {
  color: #FF806B;
  text-decoration: underline;
  transition: color .2s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.doc-section a:hover {
  color: #0F405C
}

.doc-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 40px;
  background: #fff;
  box-shadow: 0 2px 4px -2px #0f405c0d 0 5px 14px -2px #0f405c1c;
  border-radius: 8px;
  overflow: hidden
}

.doc-section thead {
  background: #F2F3F4
}

.doc-section th {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .02em;
  color: #0F405C;
  text-align: left;
  padding: 20px;
  font-weight: 600;
  border-bottom: 2px solid #FF806B;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.doc-section td {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .01em;
  color: #0F405C;
  padding: 20px;
  border-bottom: 1px solid #F2F3F4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

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

.doc-section tbody tr:hover {
  background: #f2f3f480;
  transition: background .18s ease-out
}

.doc-section div {
  margin: 0 0 20px
}

@media (max-width: 768px) {
  .doc-section {
    padding: 40px 20px
  }

  .doc-section h1 {
    font-size: 42px;
    margin: 0 0 40px
  }

  .doc-section h2 {
    font-size: 30px;
    margin: 40px 0 20px
  }

  .doc-section h3 {
    font-size: 22px;
    margin: 40px 0 20px
  }

  .doc-section h4 {
    font-size: 18px;
    margin: 20px 0
  }

  .doc-section table {
    font-size: 15px
  }

  .doc-section th,
  .doc-section td {
    padding: 8px;
    font-size: 15px
  }
}

.sponsorshipPageMain {
  background: #FFF;
  color: #0F405C;
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip
}

.sponsorshipPageMain .titleStrip {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 80px;
  background: linear-gradient(90deg, #F2F3F4 0%, #F2F3F4 60%, #FFF 60%, #FFF 100%);
  position: relative
}

.sponsorshipPageMain .titleStrip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: #FF806B
}

.sponsorshipPageMain .titleStrip::after {
  content: '';
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #ff806b26 0%, transparent 70%);
  border-radius: 48px;
  pointer-events: none
}

.sponsorshipPageMain .titleContent {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 80px
}

.sponsorshipPageMain .titleTextWrap {
  flex: 1
}

.sponsorshipPageMain .titleHeading {
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: .01em;
  margin: 0 0 20px;
  font-weight: 700;
  color: #0F405C
}

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

.sponsorshipPageMain .titlePoints li {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .015em;
  padding-left: 40px;
  position: relative
}

.sponsorshipPageMain .titlePoints li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 2px;
  background: #FF806B
}

.sponsorshipPageMain .titleImageWrap {
  width: 420px;
  height: 280px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 14px -2px #0f405c1c
}

.sponsorshipPageMain .titleImageWrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, #0000004d 100%);
  pointer-events: none
}

.sponsorshipPageMain .titleImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.15) saturate(1.1)
}

.sponsorshipPageMain .titlePatternDots {
  position: absolute;
  right: 40px;
  bottom: 20px;
  display: grid;
  grid-template-columns: repeat(4, 8px);
  gap: 8px;
  opacity: .3
}

.sponsorshipPageMain .titlePatternDots span {
  width: 8px;
  height: 8px;
  background: #FF806B;
  border-radius: 48px
}

.sponsorshipPageMain .detailsBlockWide {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  padding: 80px;
  background: #FFF;
  position: relative
}

.sponsorshipPageMain .detailsBlockWide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 4px;
  background: #F2F3F4;
  border-radius: 48px
}

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

.sponsorshipPageMain .detailsHeading {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: .015em;
  margin: 0;
  color: #0F405C;
  font-weight: 700
}

.sponsorshipPageMain .detailsParagraph {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .015em;
  margin: 0;
  color: #0F405C
}

.sponsorshipPageMain .sideColumn {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.sponsorshipPageMain .sideLabel {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #FF806B;
  margin: 0;
  font-weight: 600
}

.sponsorshipPageMain .sideText {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .015em;
  margin: 0;
  color: #0F405C
}

.sponsorshipPageMain .certificateBlock {
  background: #F2F3F4;
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #FF806B;
  position: relative;
  margin-top: 20px
}

.sponsorshipPageMain .certificateBlock::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid #0f405c1a;
  border-radius: 8px;
  pointer-events: none
}

.sponsorshipPageMain .certificateTitle {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: .02em;
  margin: 0 0 8px;
  color: #0F405C;
  font-weight: 700;
  text-align: center
}

.sponsorshipPageMain .certificateSubtext {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .015em;
  margin: 0;
  color: #0F405C;
  text-align: center
}

.sponsorshipPageMain .interactiveFormatsSection {
  padding: 80px;
  background: radial-gradient(ellipse 800px 600px at 50% 50%, #ff806b14 0%, #FFF 60%);
  position: relative
}

.sponsorshipPageMain .formatsHeading {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: .015em;
  margin: 0 0 40px;
  color: #0F405C;
  font-weight: 700;
  text-align: center
}

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

.sponsorshipPageMain .formatCard {
  background: #FFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 4px -2px #0f405c0d;
  transition: box-shadow .22s ease-out, transform .18s ease-out;
  position: relative;
  border-left: 4px solid transparent
}

.sponsorshipPageMain .formatCard:hover {
  box-shadow: 0 12px 48px -2px #0f405c1c;
  transform: translateY(-4px);
  border-left-color: #FF806B
}

.sponsorshipPageMain .formatCard::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 48px;
  background: #F2F3F4;
  transition: background .25s ease-out
}

.sponsorshipPageMain .formatCard:hover::after {
  background: #ff806b26
}

.sponsorshipPageMain .formatTitle {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: .015em;
  margin: 0 0 20px;
  color: #0F405C;
  font-weight: 700;
  text-transform: uppercase
}

.sponsorshipPageMain .formatDescription {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .015em;
  margin: 0 0 20px;
  color: #0F405C
}

.sponsorshipPageMain .formatMetrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.sponsorshipPageMain .metricItem {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.sponsorshipPageMain .metricValue {
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: .01em;
  color: #FF806B;
  font-weight: 700;
  margin: 0
}

.sponsorshipPageMain .metricLabel {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .02em;
  color: #0F405C;
  margin: 0
}

.sponsorshipPageMain .stepsSection {
  padding: 80px;
  background: #F2F3F4;
  position: relative
}

.sponsorshipPageMain .stepsSection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse 400px 300px at 90% 20%, #ff806b0f, transparent 70%);
  pointer-events: none
}

.sponsorshipPageMain .stepsHeading {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: .015em;
  margin: 0 0 80px;
  color: #0F405C;
  font-weight: 700
}

.sponsorshipPageMain .stepsContainer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  padding-left: 80px
}

.sponsorshipPageMain .stepsContainer::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, #FF806B 0%, #FF806B 33%, #0F405C 33%, #0F405C 66%, #FF806B 66%, #FF806B 100%)
}

.sponsorshipPageMain .stepItem {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative
}

.sponsorshipPageMain .stepNumber {
  position: absolute;
  left: -80px;
  top: 0;
  width: 58px;
  height: 58px;
  border-radius: 48px;
  background: #FFF;
  border: 4px solid #FF806B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: .01em;
  color: #0F405C;
  font-weight: 700;
  box-shadow: 0 5px 14px -2px #ff806b1c;
  transition: transform .28s ease-out, box-shadow .35s ease-out
}

.sponsorshipPageMain .stepItem:hover .stepNumber {
  transform: scale(1.1);
  box-shadow: 0 12px 48px -2px #ff806b1c
}

.sponsorshipPageMain .stepItem:nth-child(2) .stepNumber {
  border-color: #0F405C
}

.sponsorshipPageMain .stepContent {
  flex: 1;
  background: #FFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 4px -2px #0f405c0d;
  transition: box-shadow .3s ease-out
}

.sponsorshipPageMain .stepItem:hover .stepContent {
  box-shadow: 0 5px 14px -2px #0f405c1c
}

.sponsorshipPageMain .stepTitle {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: .015em;
  margin: 0 0 20px;
  color: #0F405C;
  font-weight: 700
}

.sponsorshipPageMain .stepText {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .015em;
  margin: 0;
  color: #0F405C
}

.sponsorshipPageMain .dividerAccent {
  text-align: center;
  padding: 40px 0
}

.sponsorshipPageMain .dividerLine {
  display: inline-block;
  width: 240px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #FF806B 20%, #0F405C 50%, #FF806B 80%, transparent 100%);
  border-radius: 48px
}

@media (max-width: 1024px) {
  .sponsorshipPageMain .titleStrip {
    padding: 20px 40px;
    gap: 20px
  }

  .sponsorshipPageMain .titleContent {
    flex-direction: column;
    gap: 40px
  }

  .sponsorshipPageMain .titleImageWrap {
    width: 100%;
    height: 320px
  }

  .sponsorshipPageMain .detailsBlockWide {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px
  }

  .sponsorshipPageMain .interactiveFormatsSection {
    padding: 40px
  }

  .sponsorshipPageMain .formatsGrid {
    grid-template-columns: 1fr
  }

  .sponsorshipPageMain .stepsSection {
    padding: 40px
  }

  .sponsorshipPageMain .stepsContainer {
    padding-left: 60px
  }

  .sponsorshipPageMain .stepNumber {
    left: -60px;
    width: 48px;
    height: 48px;
    font-size: 18px
  }

  .sponsorshipPageMain .stepsContainer::before {
    left: 20px
  }
}

@media (max-width: 768px) {
  .sponsorshipPageMain .titleStrip {
    padding: 20px
  }

  .sponsorshipPageMain .titleStrip::after {
    right: 20px
  }

  .sponsorshipPageMain .titleHeading {
    font-size: 42px
  }

  .sponsorshipPageMain .detailsBlockWide {
    padding: 20px
  }

  .sponsorshipPageMain .detailsHeading,
  .sponsorshipPageMain .formatsHeading,
  .sponsorshipPageMain .stepsHeading {
    font-size: 30px
  }

  .sponsorshipPageMain .interactiveFormatsSection {
    padding: 20px
  }

  .sponsorshipPageMain .stepsSection {
    padding: 20px
  }

  .sponsorshipPageMain .stepsHeading {
    margin-bottom: 40px
  }
}

.homeFinancialGoals {
  background: #fff;
  color: #0F405C;
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.homeFinancialGoals ::selection {
  background: #ff806b26
}

.homeFinancialGoals .heroWrap {
  position: relative;
  padding: 40px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #F2F3F4 0%, #fff 100%)
}

.homeFinancialGoals .blobDecor {
  position: absolute;
  border-radius: 48px;
  filter: blur(80px);
  opacity: .4;
  pointer-events: none;
  z-index: 0
}

.homeFinancialGoals .blobOne {
  width: 420px;
  height: 420px;
  background: #FF806B;
  top: -120px;
  right: 10%
}

.homeFinancialGoals .blobTwo {
  width: 360px;
  height: 360px;
  background: #0F405C;
  bottom: -80px;
  right: 25%
}

.homeFinancialGoals .heroInner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto
}

.homeFinancialGoals .heroTextBox {
  padding: 20px 0
}

.homeFinancialGoals .heroTitle {
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: .01em;
  margin: 0 0 20px;
  color: #0F405C
}

.homeFinancialGoals .heroSubtext {
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: .015em;
  color: #0F405C;
  margin: 0 0 40px;
  opacity: .85
}

.homeFinancialGoals .heroImageContainer {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 48px -2px #0f405c1c;
  animation: borderGlowBuild 1.8s ease-out forwards
}

@keyframes borderGlowBuild {
  from {
    box-shadow: 0 0 0 0 #0f405c00
  }

  to {
    box-shadow: 0 12px 48px -2px #0f405c1c 0 0 0 2px #ff806b4d
  }
}

.homeFinancialGoals .heroImageContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.25) contrast(1.1) saturate(0.8);
  opacity: .9
}

.homeFinancialGoals .ctaButtonPrimary {
  display: inline-block;
  padding: 20px 40px;
  background: #0F405C;
  color: #fff;
  font-size: 18px;
  letter-spacing: .02em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background .28s ease-out, transform .22s ease-out, box-shadow .35s ease-out;
  box-shadow: 0 5px 14px -2px #0f405c1c
}

.homeFinancialGoals .ctaButtonPrimary:hover {
  background: #1a5978;
  transform: translateY(-2px);
  box-shadow: 0 12px 48px -2px #0f405c1c
}

.homeFinancialGoals .processFlow {
  padding: 80px 20px;
  background: #fff;
  position: relative
}

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

.homeFinancialGoals .processContainer {
  max-width: 1200px;
  margin: 0 auto
}

.homeFinancialGoals .processHeading {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: .015em;
  margin: 0 0 80px;
  text-align: center;
  color: #0F405C
}

.homeFinancialGoals .stepsList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  position: relative
}

.homeFinancialGoals .stepItem {
  position: relative;
  padding: 40px 20px 40px 80px;
  background: #F2F3F4;
  border-radius: 8px;
  box-shadow: 0 2px 4px -2px #0f405c0d;
  transition: transform .32s ease-out, box-shadow .38s ease-out;
  animation: stepFadeIn .45s ease-out backwards
}

.homeFinancialGoals .stepItem:nth-child(1) {
  animation-delay: .1s
}

.homeFinancialGoals .stepItem:nth-child(2) {
  animation-delay: .2s
}

.homeFinancialGoals .stepItem:nth-child(3) {
  animation-delay: .3s
}

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

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

.homeFinancialGoals .stepItem:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px -2px #0f405c1c
}

.homeFinancialGoals .stepNumber {
  position: absolute;
  left: 20px;
  top: 40px;
  width: 48px;
  height: 48px;
  background: #0F405C;
  color: #fff;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .01em
}

.homeFinancialGoals .stepTitle {
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: .015em;
  margin: 0 0 8px;
  color: #0F405C;
  text-transform: uppercase
}

.homeFinancialGoals .stepDesc {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .02em;
  margin: 0;
  color: #0F405C;
  opacity: .8
}

.homeFinancialGoals .statsPanel {
  padding: 80px 20px;
  background: #0F405C;
  position: relative;
  overflow: hidden
}

.homeFinancialGoals .statsPanel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/product_images/20251220-image.jpg);
  background-size: cover;
  background-position: center;
  opacity: .08;
  filter: grayscale(100%);
  pointer-events: none
}

.homeFinancialGoals .statsInner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.homeFinancialGoals .statsIntro {
  margin: 0 0 40px;
  text-align: center
}

.homeFinancialGoals .statsIntroTitle {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: .015em;
  margin: 0 0 20px;
  color: #fff
}

.homeFinancialGoals .statsIntroText {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .02em;
  margin: 0;
  color: #fff;
  opacity: .85;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto
}

.homeFinancialGoals .metricsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto
}

.homeFinancialGoals .metricBox {
  padding: 40px;
  background: #ffffff14;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #ffffff1f;
  transition: background .35s ease-out, transform .25s ease-out
}

.homeFinancialGoals .metricBox:hover {
  background: #ffffff24;
  transform: scale(1.03)
}

.homeFinancialGoals .metricValue {
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: .01em;
  margin: 0 0 8px;
  color: #FF806B;
  font-weight: 700
}

.homeFinancialGoals .metricLabel {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .02em;
  margin: 0;
  color: #fff;
  opacity: .9
}

.homeFinancialGoals .contentDualFlow {
  padding: 80px 20px;
  background: #F2F3F4;
  position: relative
}

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

.homeFinancialGoals .dualFlowContainer {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start
}

.homeFinancialGoals .mainContent {
  position: relative
}

.homeFinancialGoals .accentBorder {
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FF806B 0%, #FF806B 33%, #0F405C 66%, #0F405C 100%);
  border-radius: 8px
}

.homeFinancialGoals .mainContentTitle {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: .015em;
  margin: 0 0 20px;
  color: #0F405C
}

.homeFinancialGoals .mainContentText {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .02em;
  margin: 0 0 20px;
  color: #0F405C
}

.homeFinancialGoals .floatingImageWrap {
  position: relative;
  margin: 40px 0 0;
  width: 420px;
  float: right;
  margin-left: 40px;
  margin-bottom: 20px
}

.homeFinancialGoals .floatingImage {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 14px -2px #0f405c1c
}

.homeFinancialGoals .floatingImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75
}

.homeFinancialGoals .sidebarContent {
  position: sticky;
  top: 40px;
  padding: 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 14px -2px #0f405c1c
}

.homeFinancialGoals .sidebarTitle {
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: .015em;
  margin: 0 0 20px;
  color: #0F405C
}

.homeFinancialGoals .sidebarImageStack {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.homeFinancialGoals .sidebarImageItem {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  opacity: .8;
  transition: opacity .3s ease-out, transform .27s ease-out
}

.homeFinancialGoals .sidebarImageItem:hover {
  opacity: 1;
  transform: scale(1.02)
}

.homeFinancialGoals .sidebarImageItem img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

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

  .homeFinancialGoals .heroImageContainer {
    height: 420px
  }

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

  .homeFinancialGoals .floatingImageWrap {
    float: none;
    width: 100%;
    margin-left: 0
  }

  .homeFinancialGoals .sidebarContent {
    position: static
  }
}

@media (max-width: 768px) {
  .homeFinancialGoals .heroTitle {
    font-size: 42px
  }

  .homeFinancialGoals .heroSubtext {
    font-size: 18px
  }

  .homeFinancialGoals .processHeading,
  .homeFinancialGoals .statsIntroTitle,
  .homeFinancialGoals .mainContentTitle {
    font-size: 30px
  }

  .homeFinancialGoals .metricsGrid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .homeFinancialGoals .metricValue {
    font-size: 42px
  }

  .homeFinancialGoals .stepsList {
    grid-template-columns: 1fr
  }
}

.aboutUsPage {
  background: #fff;
  color: #0F405C;
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip
}

.aboutUsPage .heroSection {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 40px;
  background: linear-gradient(90deg, #F2F3F4 0%, #F2F3F4 33%, #fff 33%, #fff 66%, #F2F3F4 66%, #F2F3F4 100%);
  overflow: hidden
}

.aboutUsPage .heroSection::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  width: 180px;
  height: 180px;
  border-radius: 48px;
  background: #ff806b14;
  transform: translate(-50%, -50%) rotate(15deg);
  z-index: 1
}

.aboutUsPage .heroSection::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 240px;
  height: 240px;
  border-radius: 48px;
  background: #0f405c0f;
  transform: translate(50%, 50%) rotate(-20deg);
  z-index: 1
}

.aboutUsPage .heroImgLeft {
  width: 280px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 48px -2px #0f405c1c;
  filter: brightness(0.85)
}

.aboutUsPage .heroImgRight {
  width: 280px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 48px -2px #0f405c1c;
  filter: brightness(0.85)
}

.aboutUsPage .heroTextContent {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2
}

.aboutUsPage .heroMainHeading {
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: .015em;
  margin: 0 0 8px;
  font-weight: 700
}

.aboutUsPage .heroMainHeading .gradientWord {
  background: linear-gradient(135deg, #FF806B 0%, #FF806B 50%, #0F405C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.aboutUsPage .storyContainer {
  padding: 80px 40px;
  background: #fff;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative
}

.aboutUsPage .storyContainer::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(to bottom, #0F405C 0px, #0F405C 12px, transparent 12px, transparent 20px, #0F405C 20px, #0F405C 44px, transparent 44px, transparent 52px);
  transform: translateX(-50%)
}

.aboutUsPage .mainStoryBlock {
  padding: 0 40px 0 0
}

.aboutUsPage .storyHeading {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: .012em;
  margin: 0 0 40px;
  font-weight: 700;
  color: #0F405C
}

.aboutUsPage .storyParagraph {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .015em;
  margin: 0 0 20px;
  color: #0F405C
}

.aboutUsPage .storyParagraph:last-child {
  margin-bottom: 0
}

.aboutUsPage .supportingColumn {
  padding: 0 0 0 40px
}

.aboutUsPage .supportingHeading {
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: .012em;
  margin: 0 0 20px;
  font-weight: 600;
  color: #FF806B
}

.aboutUsPage .supportingText {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .018em;
  margin: 0;
  color: #0F405C
}

.aboutUsPage .teamShowcase {
  padding: 80px 40px;
  background: #F2F3F4;
  position: relative
}

.aboutUsPage .teamIntroBlock {
  max-width: 680px;
  margin: 0 0 40px
}

.aboutUsPage .teamMainHeading {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: .012em;
  margin: 0 0 20px;
  font-weight: 700;
  color: #0F405C
}

.aboutUsPage .teamIntroText {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .015em;
  margin: 0;
  color: #0F405C
}

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

.aboutUsPage .memberCard {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 5px 14px -2px #ff806b1c;
  transition: transform .28s ease-out, box-shadow .32s ease-out;
  position: relative
}

.aboutUsPage .memberCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px -2px #ff806b1c
}

.aboutUsPage .memberCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #FF806B;
  border-radius: 8px 0 0 8px;
  opacity: 0;
  transition: opacity .24s ease-out
}

.aboutUsPage .memberCard:hover::before {
  opacity: 1
}

.aboutUsPage .memberPhoto {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 0 20px
}

.aboutUsPage .memberName {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: .012em;
  margin: 0 0 8px;
  font-weight: 700;
  color: #0F405C
}

.aboutUsPage .memberRole {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .018em;
  margin: 0 0 20px;
  color: #FF806B;
  font-weight: 600
}

.aboutUsPage .memberBio {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .018em;
  margin: 0;
  color: #0F405C
}

.aboutUsPage .metricsPanel {
  padding: 80px 40px;
  background: #fff;
  position: relative
}

.aboutUsPage .metricsWrapper {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center
}

.aboutUsPage .metricsContent {
  position: relative
}

.aboutUsPage .metricsHeading {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: .012em;
  margin: 0 0 40px;
  font-weight: 700;
  color: #0F405C
}

.aboutUsPage .metricsDescription {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .015em;
  margin: 0 0 20px;
  color: #0F405C
}

.aboutUsPage .metricsImage {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 48px -2px #0f405c1c;
  position: relative
}

.aboutUsPage .metricsImage::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 64px;
  height: 64px;
  background: #FF806B;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 5px 14px -2px #ff806b1c
}

.aboutUsPage .metricsList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.aboutUsPage .metricItem {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: #F2F3F4;
  border-radius: 8px;
  transition: background .22s ease-out
}

.aboutUsPage .metricItem:hover {
  background: #ff806b14
}

.aboutUsPage .metricLabel {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .018em;
  margin: 0;
  color: #0F405C;
  font-weight: 600
}

.aboutUsPage .metricBar {
  position: relative;
  width: 120px;
  height: 8px;
  background: #0f405c1a;
  border-radius: 48px;
  overflow: hidden
}

.aboutUsPage .metricBarFill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #FF806B 0%, #0F405C 100%);
  border-radius: 48px;
  transition: width .42s ease-out
}

.aboutUsPage .metricItem:nth-child(1) .metricBarFill {
  width: 92%
}

.aboutUsPage .metricItem:nth-child(2) .metricBarFill {
  width: 87%
}

.aboutUsPage .metricItem:nth-child(3) .metricBarFill {
  width: 94%
}

.aboutUsPage .metricItem:nth-child(4) .metricBarFill {
  width: 89%
}

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

  .aboutUsPage .heroImgLeft,
  .aboutUsPage .heroImgRight {
    width: 100%;
    max-width: 400px
  }

  .aboutUsPage .heroMainHeading {
    font-size: 42px
  }

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

  .aboutUsPage .storyContainer::before {
    display: none
  }

  .aboutUsPage .mainStoryBlock,
  .aboutUsPage .supportingColumn {
    padding: 0
  }

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

@media (max-width: 768px) {
  .aboutUsPage .heroMainHeading {
    font-size: 30px
  }

  .aboutUsPage .storyHeading,
  .aboutUsPage .teamMainHeading,
  .aboutUsPage .metricsHeading {
    font-size: 30px
  }

  .aboutUsPage .teamGrid {
    grid-template-columns: 1fr
  }

  .aboutUsPage .metricsImage {
    height: 320px
  }
}

.aboutUsPage ::selection {
  background: #ff806b26;
  color: inherit
}

.aboutUsPage ::-webkit-scrollbar {
  width: 8px;
  height: 8px
}

.aboutUsPage ::-webkit-scrollbar-track {
  background: #F2F3F4
}

.aboutUsPage ::-webkit-scrollbar-thumb {
  background: #FF806B;
  border-radius: 48px
}

.aboutUsPage ::-webkit-scrollbar-thumb:hover {
  background: #0F405C
}

.contactPageMain {
  background: #FFF;
  color: #0F405C;
  max-width: 1440px;
  margin: 0 auto
}

.contactPageMain .heroManifesto {
  background: linear-gradient(135deg, #FF806B 0%, #FF806B 50%, #0F405C 50%, #0F405C 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden
}

.contactPageMain .heroManifesto::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 80px;
  width: 180px;
  height: 180px;
  background: #f2f3f426;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(15deg)
}

.contactPageMain .heroManifesto::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 60px;
  width: 120px;
  height: 120px;
  background: #f2f3f41f;
  border-radius: 48px
}

.contactPageMain .manifestoContent {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.contactPageMain .manifestoHeading {
  font-size: 72px;
  line-height: 1.1;
  color: #FFF;
  letter-spacing: .01em;
  margin: 0 0 40px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.contactPageMain .manifestoText {
  font-size: 22px;
  line-height: 1.55;
  color: #F2F3F4;
  letter-spacing: .015em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.contactPageMain .manifestoText::selection {
  background: #ff806b26
}

.contactPageMain .dividerWave {
  width: 100%;
  height: 60px;
  background: #FFF
}

.contactPageMain .dividerWave svg {
  display: block;
  width: 100%;
  height: 100%
}

.contactPageMain .formSection {
  background: #F2F3F4;
  padding: 80px 40px;
  position: relative
}

.contactPageMain .formContainer {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start
}

.contactPageMain .formBlock {
  background: #FFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 14px -2px #0f405c1c;
  position: relative
}

.contactPageMain .formBlock::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF806B 0%, #FF806B 60%, transparent 100%);
  border-radius: 0 0 8px 8px
}

.contactPageMain .formTitle {
  font-size: 42px;
  line-height: 1.1;
  color: #0F405C;
  letter-spacing: .01em;
  margin: 0 0 8px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.contactPageMain .formSubtitle {
  font-size: 18px;
  line-height: 1.55;
  color: #0F405C;
  letter-spacing: .015em;
  margin: 0 0 40px;
  opacity: .7
}

.contactPageMain .formFields {
  display: flex;
  flex-direction: column;
  gap: 20px
}

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

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

.contactPageMain .fieldLabel {
  font-size: 15px;
  line-height: 1.55;
  color: #0F405C;
  letter-spacing: .015em;
  font-weight: 600
}

.contactPageMain .fieldInput {
  padding: 20px;
  border: 2px solid #F2F3F4;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.55;
  color: #0F405C;
  letter-spacing: .015em;
  background: #FFF;
  transition: border-color .22s ease-out, box-shadow .22s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.contactPageMain .fieldInput:focus {
  outline: none;
  border-color: #FF806B;
  box-shadow: 0 2px 4px -2px #ff806b0d 0 5px 14px -2px #ff806b1c
}

.contactPageMain .fieldInput::placeholder {
  color: #0F405C;
  opacity: .4
}

.contactPageMain .radioGroup {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0 0
}

.contactPageMain .radioLabel {
  font-size: 15px;
  line-height: 1.55;
  color: #0F405C;
  letter-spacing: .015em;
  font-weight: 600;
  margin: 0 0 8px
}

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

.contactPageMain .radioOption {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer
}

.contactPageMain .radioOption input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #FF806B
}

.contactPageMain .radioOption span {
  font-size: 18px;
  line-height: 1.55;
  color: #0F405C;
  letter-spacing: .015em
}

.contactPageMain .privacyCheckbox {
  display: flex;
  align-items: start;
  gap: 8px;
  margin: 20px 0 0
}

.contactPageMain .privacyCheckbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 4px 0 0;
  cursor: pointer;
  accent-color: #FF806B;
  flex-shrink: 0
}

.contactPageMain .privacyText {
  font-size: 15px;
  line-height: 1.55;
  color: #0F405C;
  letter-spacing: .015em
}

.contactPageMain .privacyText a {
  color: #FF806B;
  text-decoration: underline;
  transition: opacity .18s ease-out
}

.contactPageMain .privacyText a:hover {
  opacity: .7
}

.contactPageMain .submitBtn {
  padding: 20px 40px;
  background: #0F405C;
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .015em;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease-out, box-shadow .25s ease-out, transform .18s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 20px 0 0;
  position: relative;
  overflow: hidden
}

.contactPageMain .submitBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #FF806B;
  transition: left .35s ease-out;
  z-index: 0
}

.contactPageMain .submitBtn:hover::before {
  left: 0
}

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

.contactPageMain .submitBtn:hover {
  box-shadow: 0 5px 14px -2px #0f405c1c 0 12px 48px -2px #0f405c1c;
  transform: translateY(-2px)
}

.contactPageMain .submitBtn:active {
  transform: translateY(0)
}

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

.contactPageMain .infoCard {
  background: #FFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 4px -2px #0f405c0d;
  transition: box-shadow .28s ease-out, transform .28s ease-out
}

.contactPageMain .infoCard:hover {
  box-shadow: 0 5px 14px -2px #0f405c1c 0 12px 48px -2px #0f405c1c;
  transform: translateY(-4px)
}

.contactPageMain .infoCardTitle {
  font-size: 22px;
  line-height: 1.1;
  color: #0F405C;
  letter-spacing: .01em;
  margin: 0 0 20px;
  font-weight: 600;
  text-transform: uppercase
}

.contactPageMain .infoItem {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 20px
}

.contactPageMain .infoItem:last-child {
  margin: 0
}

.contactPageMain .infoItemLabel {
  font-size: 15px;
  line-height: 1.55;
  color: #0F405C;
  letter-spacing: .015em;
  opacity: .6
}

.contactPageMain .infoItemValue {
  font-size: 18px;
  line-height: 1.55;
  color: #0F405C;
  letter-spacing: .015em;
  font-weight: 600
}

.contactPageMain .infoItemValue a {
  color: #0F405C;
  text-decoration: none;
  transition: color .2s ease-out
}

.contactPageMain .infoItemValue a:hover {
  color: #FF806B
}

.contactPageMain .visualMetric {
  background: linear-gradient(135deg, #0F405C 0%, #0F405C 50%, #FF806B 50%, #FF806B 100%);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.contactPageMain .visualMetric::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: #f2f3f41a;
  border-radius: 48px
}

.contactPageMain .metricNumber {
  font-size: 58px;
  line-height: 1.1;
  color: #FFF;
  letter-spacing: .01em;
  margin: 0 0 8px;
  font-weight: 700;
  position: relative;
  z-index: 1
}

.contactPageMain .metricLabel {
  font-size: 18px;
  line-height: 1.55;
  color: #F2F3F4;
  letter-spacing: .015em;
  position: relative;
  z-index: 1
}

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

  .contactPageMain .manifestoHeading {
    font-size: 58px
  }
}

@media (max-width: 768px) {
  .contactPageMain .heroManifesto {
    padding: 40px 20px
  }

  .contactPageMain .manifestoHeading {
    font-size: 42px
  }

  .contactPageMain .manifestoText {
    font-size: 18px
  }

  .contactPageMain .formSection {
    padding: 40px 20px
  }

  .contactPageMain .formBlock {
    padding: 20px
  }

  .contactPageMain .fieldRow {
    grid-template-columns: 1fr
  }

  .contactPageMain .formTitle {
    font-size: 30px
  }
}

.successConfirmation {
  background: #F2F3F4;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px
}

.successConfirmation .confirmWrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto
}

.successConfirmation .mainConfirmBlock {
  background: #fff;
  border-radius: 48px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 12px 48px -2px #0f405c1c;
  position: relative;
  overflow: hidden
}

.successConfirmation .mainConfirmBlock::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, #f2f3f44d 40px, #f2f3f44d 80px);
  pointer-events: none;
  z-index: 0
}

.successConfirmation .contentInner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto
}

.successConfirmation .checkmarkVisual {
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  position: relative;
  animation: checkmarkAppear .45s ease-out
}

@keyframes checkmarkAppear {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0
  }

  60% {
    transform: scale(1.15) rotate(5deg);
    opacity: 1
  }

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

.successConfirmation .checkmarkCircle {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  background: linear-gradient(135deg, #FF806B 0%, #FF806B 50%, #0F405C 50%, #0F405C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotate(0deg);
  animation: circleRotate 2.5s ease-in-out infinite
}

@keyframes circleRotate {

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

  50% {
    transform: rotate(180deg)
  }
}

.successConfirmation .checkmarkIcon {
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 2
}

.successConfirmation .checkmarkIcon::before,
.successConfirmation .checkmarkIcon::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 8px
}

.successConfirmation .checkmarkIcon::before {
  width: 8px;
  height: 28px;
  bottom: 16px;
  left: 18px;
  transform: rotate(-45deg);
  animation: checkLine1 .35s ease-out .25s both
}

@keyframes checkLine1 {
  0% {
    height: 0
  }

  100% {
    height: 28px
  }
}

.successConfirmation .checkmarkIcon::after {
  width: 8px;
  height: 44px;
  bottom: 8px;
  right: 12px;
  transform: rotate(45deg);
  animation: checkLine2 .4s ease-out .4s both
}

@keyframes checkLine2 {
  0% {
    height: 0
  }

  100% {
    height: 44px
  }
}

.successConfirmation .mainHeading {
  font-size: 58px;
  line-height: 1.1;
  color: #0F405C;
  margin: 0 0 20px;
  letter-spacing: .01em;
  font-weight: 700
}

.successConfirmation .confirmMessage {
  font-size: 22px;
  line-height: 1.55;
  color: #0F405C;
  margin: 0 0 40px;
  letter-spacing: .02em;
  opacity: .85
}

.successConfirmation .detailsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin: 40px 0 0
}

.successConfirmation .detailCard {
  background: #F2F3F4;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  transition: transform .25s ease-out, box-shadow .3s ease-out
}

.successConfirmation .detailCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 14px -2px #ff806b1c
}

.successConfirmation .detailLabel {
  font-size: 15px;
  line-height: 1.55;
  color: #0F405C;
  margin: 0 0 8px;
  letter-spacing: .02em;
  opacity: .65;
  text-transform: uppercase;
  font-weight: 600
}

.successConfirmation .detailValue {
  font-size: 18px;
  line-height: 1.55;
  color: #0F405C;
  margin: 0;
  letter-spacing: .01em;
  font-weight: 500
}

.successConfirmation .actionRow {
  margin: 80px 0 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap
}

.successConfirmation .btnPrimary {
  background: #0F405C;
  color: #fff;
  padding: 20px 40px;
  border-radius: 48px;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .02em;
  text-decoration: none;
  display: inline-block;
  transition: background .28s ease-out, transform .2s ease-out;
  font-weight: 600;
  border: none;
  cursor: pointer
}

.successConfirmation .btnPrimary:hover {
  background: #0a2d42;
  transform: translateY(-2px)
}

.successConfirmation .btnSecondary {
  background: #1a5573;
  color: #fff;
  padding: 20px 40px;
  border-radius: 48px;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .02em;
  text-decoration: none;
  display: inline-block;
  transition: background .32s ease-out, transform .22s ease-out;
  font-weight: 600;
  border: none;
  cursor: pointer
}

.successConfirmation .btnSecondary:hover {
  background: #0F405C;
  transform: translateY(-2px)
}

.successConfirmation .timelineSection {
  background: #fff;
  border-radius: 8px;
  padding: 80px 40px;
  margin: 40px 0 0;
  position: relative
}

.successConfirmation .timelineSection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: repeating-linear-gradient(0deg, transparent, transparent 20px, #0f405c05 20px, #0f405c05 40px);
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.successConfirmation .timelineHeading {
  font-size: 42px;
  line-height: 1.1;
  color: #0F405C;
  margin: 0 0 40px;
  letter-spacing: .01em;
  text-align: center;
  font-weight: 700
}

.successConfirmation .stepsList {
  max-width: 880px;
  margin: 0 auto;
  position: relative
}

.successConfirmation .stepsList::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, #FF806B 0%, #FF806B 33%, #0F405C 66%, #0F405C 100%)
}

.successConfirmation .stepItem {
  display: flex;
  gap: 40px;
  margin: 0 0 40px;
  position: relative;
  align-items: flex-start
}

.successConfirmation .stepItem:last-child {
  margin-bottom: 0
}

.successConfirmation .stepNumber {
  width: 60px;
  height: 60px;
  background: #0F405C;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 14px -2px #0f405c1c;
  transition: transform .35s ease-out, background .4s ease-out
}

.successConfirmation .stepItem:nth-child(2) .stepNumber {
  background: #1a5573
}

.successConfirmation .stepItem:nth-child(3) .stepNumber {
  background: #FF806B
}

.successConfirmation .stepItem:hover .stepNumber {
  transform: scale(1.1) rotate(5deg)
}

.successConfirmation .stepContent {
  flex: 1;
  padding: 8px 0 0
}

.successConfirmation .stepTitle {
  font-size: 22px;
  line-height: 1.55;
  color: #0F405C;
  margin: 0 0 8px;
  letter-spacing: .01em;
  font-weight: 700
}

.successConfirmation .stepDescription {
  font-size: 18px;
  line-height: 1.55;
  color: #0F405C;
  margin: 0;
  letter-spacing: .02em;
  opacity: .8
}

@media (max-width: 768px) {
  .successConfirmation .mainConfirmBlock {
    padding: 40px 20px;
    border-radius: 8px
  }

  .successConfirmation .mainHeading {
    font-size: 42px
  }

  .successConfirmation .confirmMessage {
    font-size: 18px
  }

  .successConfirmation .detailsGrid {
    grid-template-columns: 1fr
  }

  .successConfirmation .actionRow {
    flex-direction: column;
    gap: 20px
  }

  .successConfirmation .btnPrimary,
  .successConfirmation .btnSecondary {
    width: 100%;
    text-align: center
  }

  .successConfirmation .timelineSection {
    padding: 40px 20px
  }

  .successConfirmation .timelineHeading {
    font-size: 30px
  }

  .successConfirmation .stepsList::before {
    left: 20px
  }

  .successConfirmation .stepItem {
    gap: 20px
  }

  .successConfirmation .stepNumber {
    width: 48px;
    height: 48px;
    font-size: 18px
  }

  .successConfirmation .stepTitle {
    font-size: 18px
  }

  .successConfirmation .stepDescription {
    font-size: 15px
  }
}