html {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Lora', serif;
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  background: #FCFEFF
}

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

header {
  position: relative;
  background: linear-gradient(135deg, #FCFEFF 0%, #03ffcf14 100%);
  padding: 64px 32px;
  border-bottom: 1px solid #1f1e291f;
  box-shadow: 0 2px 3px 1px #1f1e2912
}

.brand-zone {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 64px;
  flex-wrap: wrap
}

.logo-holder {
  background: #1F1E29;
  padding: 16px 32px;
  border-radius: 15px;
  box-shadow: 0 4px 28px 1px #1f1e291a;
  border: 2px solid #03FFCF;
  flex-shrink: 0
}

.logo-holder img {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain
}

.brand-statement {
  flex: 1;
  min-width: 280px;
  padding: 16px 0
}

.brand-statement p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #1F1E29;
  font-weight: 400;
  max-width: 520px
}

.primary-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: auto
}

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

.nav-row a {
  position: relative;
  color: #1F1E29;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 9px;
  background: #03ffcf0d;
  border: 1px solid transparent;
  transition: background .24s cubic-bezier(0.4, 0, 0.2, 1), border-color .24s cubic-bezier(0.4, 0, 0.2, 1), color .24s cubic-bezier(0.4, 0, 0.2, 1), transform .22s cubic-bezier(0.0, 0, 0.2, 1);
  display: inline-block;
  min-height: 44px;
  display: flex;
  align-items: center;
  letter-spacing: .02em
}

.nav-row a:hover {
  background: #03ffcf26;
  border-color: #03FFCF;
  color: #1F1E29;
  transform: translateY(-2px);
  box-shadow: 0 4px 28px 1px #03ffcf1a
}

.nav-row a:focus {
  outline: 2px solid #03FFCF;
  outline-offset: 2px;
  transform: scale(1.02)
}

.nav-item-with-sub {
  position: relative;
  display: inline-block
}

.nav-item-with-sub>a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.nav-item-with-sub:hover>a::after {
  transform: rotate(180deg)
}

.sub-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #FCFEFF;
  border: 1px solid #1f1e291f;
  border-radius: 9px;
  box-shadow: 0 8px 36px 1px #1f1e2921;
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .26s cubic-bezier(0.4, 0, 0.2, 1), visibility .26s cubic-bezier(0.4, 0, 0.2, 1), transform .26s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  pointer-events: none
}

.nav-item-with-sub:hover .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto
}

.sub-dropdown a {
  display: block;
  padding: 8px 16px;
  color: #1F1E29;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border-radius: 0;
  background: transparent;
  border: none;
  transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1), padding-left .24s cubic-bezier(0.0, 0, 0.2, 1);
  min-height: auto
}

.sub-dropdown a:hover {
  background: #03ffcf1f;
  color: #1F1E29;
  padding-left: 24px;
  transform: none;
  box-shadow: none
}

footer {
  background: linear-gradient(180deg, #1f1e2905 0%, #1f1e2914 100%);
  border-top: 2px solid #03FFCF;
  position: relative;
  overflow: hidden
}

.footer-upper {
  background: linear-gradient(90deg, #1F1E29 0%, #1f1e29eb 100%);
  padding: 64px 32px;
  position: relative
}

.footer-upper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #03FFCF 0%, #03ffcf4d 100%)
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.footer-logo-box {
  background: #fcfeff14;
  padding: 16px 24px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #03ffcf4d;
  box-shadow: 0 4px 28px 1px #03ffcf1a;
  max-width: fit-content
}

.footer-logo-box img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain
}

.footer-year {
  font-size: 14px;
  color: #03FFCF;
  font-weight: 700;
  letter-spacing: .05em
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #fcfeffd9;
  font-size: 14px;
  line-height: 1.55
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: #03FFCF
}

.contact-item a {
  color: #03FFCF;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1), text-decoration .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-item a:hover {
  color: #FCFEFF;
  text-decoration: underline
}

.contact-item a:focus {
  outline: 2px solid #03FFCF;
  outline-offset: 2px;
  transform: scale(1.02)
}

.footer-nav-group h3 {
  font-size: 14px;
  font-weight: 700;
  color: #03FFCF;
  margin: 0 0 16px;
  letter-spacing: .08em;
  text-transform: uppercase
}

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

.footer-links a {
  color: #fcfeffd9;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 0;
  transition: color .24s cubic-bezier(0.4, 0, 0.2, 1), padding-left .26s cubic-bezier(0.0, 0, 0.2, 1);
  display: inline-block
}

.footer-links a:hover {
  color: #03FFCF;
  padding-left: 8px
}

.footer-links a:focus {
  outline: 2px solid #03FFCF;
  outline-offset: 2px;
  transform: scale(1.02)
}

.footer-lower {
  background: #1f1e290a;
  padding: 32px;
  border-top: 1px solid #1f1e291f
}

.footer-legal {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap
}

.copyright {
  font-size: 14px;
  color: #1f1e29b3;
  margin: 0
}

.legal-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap
}

.legal-links a {
  color: #1F1E29;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .24s cubic-bezier(0.4, 0, 0.2, 1), color .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.legal-links a:hover {
  border-bottom-color: #03FFCF;
  color: #1F1E29
}

.legal-links a:focus {
  outline: 2px solid #03FFCF;
  outline-offset: 2px;
  transform: scale(1.02)
}

.consent-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1F1E29 0%, #1f1e29f5 100%);
  border-bottom: 3px solid #03FFCF;
  padding: 16px 32px;
  box-shadow: 0 8px 36px 1px #1f1e2921;
  z-index: 4000;
  transform: translateY(-100%);
  transition: transform .38s cubic-bezier(0.0, 0, 0.2, 1)
}

.consent-bar.show-bar {
  transform: translateY(0)
}

.consent-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap
}

.consent-text {
  flex: 1;
  min-width: 280px
}

.consent-text h2 {
  font-size: 14px;
  font-weight: 700;
  color: #03FFCF;
  margin: 0 0 8px;
  letter-spacing: .05em
}

.consent-text p {
  font-size: 14px;
  line-height: 1.55;
  color: #fcfeffe6;
  margin: 0
}

.consent-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap
}

.btn-accept {
  background: #03FFCF;
  color: #1F1E29;
  border: 2px solid #03FFCF;
  padding: 8px 32px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Lora', serif;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background .26s cubic-bezier(0.4, 0, 0.2, 1), color .26s cubic-bezier(0.4, 0, 0.2, 1), transform .22s cubic-bezier(0.0, 0, 0.2, 1), box-shadow .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.btn-accept:hover {
  background: #FCFEFF;
  color: #1F1E29;
  transform: translateY(-2px);
  box-shadow: 0 4px 28px 1px #03ffcf1a
}

.btn-accept:focus {
  outline: 2px solid #FCFEFF;
  outline-offset: 2px;
  transform: scale(1.02)
}

.btn-accept::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 42px;
  background: #fcfeff66;
  transform: translate(-50%, -50%);
  transition: width .28s cubic-bezier(0.0, 0, 0.2, 1), height .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.btn-accept:active::before {
  width: 300px;
  height: 300px
}

.link-decline {
  color: #fcfeffd9;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 16px;
  border-bottom: 1px solid transparent;
  transition: color .24s cubic-bezier(0.4, 0, 0.2, 1), border-color .24s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  display: inline-flex;
  align-items: center
}

.link-decline:hover {
  color: #03FFCF;
  border-bottom-color: #03FFCF
}

.link-decline:focus {
  outline: 2px solid #03FFCF;
  outline-offset: 2px;
  transform: scale(1.02)
}

@media (max-width: 1024px) {
  .brand-zone {
    flex-direction: column;
    gap: 32px
  }

  .primary-nav {
    margin-left: 0;
    width: 100%
  }

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

  .footer-legal {
    flex-direction: column;
    align-items: flex-start
  }

  .consent-inner {
    flex-direction: column;
    align-items: flex-start
  }

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

@media (max-width: 640px) {
  header {
    padding: 32px 16px
  }

  .brand-zone {
    gap: 16px
  }

  .logo-holder {
    padding: 8px 16px
  }

  .logo-holder img {
    width: 64px;
    height: 64px
  }

  .nav-row {
    flex-direction: column;
    gap: 8px;
    align-items: stretch
  }

  .nav-row a {
    width: 100%;
    justify-content: center
  }

  .sub-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid #1f1e291f;
    border-radius: 0;
    margin-top: 8px;
    padding: 8px 16px;
    background: #03ffcf0d;
    pointer-events: auto
  }

  .nav-item-with-sub>a::after {
    display: none
  }

  .footer-upper {
    padding: 32px 16px
  }

  .footer-lower {
    padding: 16px
  }

  .legal-links {
    flex-direction: column;
    gap: 8px
  }

  .consent-bar {
    padding: 16px
  }

  .consent-actions {
    flex-direction: column;
    gap: 8px
  }

  .btn-accept,
  .link-decline {
    width: 100%;
    justify-content: center
  }
}

@media (max-width: 360px) {
  header {
    padding: 16px 8px
  }

  .footer-upper {
    padding: 16px 8px
  }

  .footer-lower {
    padding: 8px
  }

  .consent-bar {
    padding: 8px
  }
}

.policy-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 16px;
  background: #FCFEFF
}

@media (min-width: 640px) {
  .policy-wrapper {
    padding: 64px 32px
  }
}

@media (min-width: 1024px) {
  .policy-wrapper {
    padding: 64px
  }
}

.policy-wrapper h1 {
  font-size: 66px;
  line-height: 1.1;
  color: #1F1E29;
  margin: 0 0 64px
}

.policy-wrapper h2 {
  font-size: 50px;
  line-height: 1.1;
  color: #1F1E29;
  margin: 64px 0 32px
}

.policy-wrapper h3 {
  font-size: 36px;
  line-height: 1.3;
  color: #1F1E29;
  margin: 32px 0 16px
}

.policy-wrapper h4 {
  font-size: 14px;
  line-height: 1.3;
  color: #1F1E29;
  margin: 32px 0 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em
}

.policy-wrapper h5 {
  font-size: 14px;
  line-height: 1.3;
  color: #1F1E29;
  margin: 16px 0 8px;
  font-weight: 600
}

.policy-wrapper h6 {
  font-size: 14px;
  line-height: 1.3;
  color: #1F1E29;
  margin: 16px 0 8px;
  font-weight: 500
}

.policy-wrapper p {
  font-size: 14px;
  line-height: 1.75;
  color: #1F1E29;
  margin: 0 0 16px
}

.policy-wrapper ul {
  font-size: 14px;
  line-height: 1.75;
  color: #1F1E29;
  margin: 0 0 16px;
  padding: 0 0 0 32px
}

.policy-wrapper ol {
  font-size: 14px;
  line-height: 1.75;
  color: #1F1E29;
  margin: 0 0 16px;
  padding: 0 0 0 32px
}

.policy-wrapper li {
  margin: 0 0 8px
}

.policy-wrapper ul li {
  list-style-type: disc
}

.policy-wrapper ol li {
  list-style-type: decimal
}

.policy-wrapper strong {
  font-weight: 600;
  color: #1F1E29
}

.policy-wrapper b {
  font-weight: 600;
  color: #1F1E29
}

.policy-wrapper em {
  font-style: italic
}

.policy-wrapper i {
  font-style: italic
}

@media (max-width: 639px) {
  .policy-wrapper h1 {
    font-size: 50px;
    margin: 0 0 32px
  }

  .policy-wrapper h2 {
    font-size: 36px;
    margin: 32px 0 16px
  }

  .policy-wrapper h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 32px 0 16px
  }
}

.case-study-dtl {
  background: #FCFEFF;
  color: #1F1E29;
  max-width: 100%;
  overflow-x: clip
}

.case-study-dtl .breadcrumb-nav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center
}

.case-study-dtl .breadcrumb-nav a {
  color: #1F1E29;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.55;
  opacity: .7;
  transition: opacity .24s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative
}

.case-study-dtl .breadcrumb-nav a:hover {
  opacity: 1
}

.case-study-dtl .breadcrumb-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #03FFCF;
  transition: width .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.case-study-dtl .breadcrumb-nav a:hover::after {
  width: 100%
}

.case-study-dtl .breadcrumb-nav .separator {
  width: 4px;
  height: 4px;
  background: #1F1E29;
  opacity: .3;
  border-radius: 50%
}

.case-study-dtl .breadcrumb-nav .current {
  color: #1F1E29;
  font-size: 14px;
  line-height: 1.55;
  opacity: 1
}

.case-study-dtl .article-header {
  background: linear-gradient(127deg, #FCFEFF 0%, #f4fffe 100%);
  padding: 64px 16px 96px;
  position: relative
}

.case-study-dtl .article-header::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: 1256px;
  height: calc(100% - 64px);
  border: 1px dashed #1f1e2926;
  border-radius: 4px;
  pointer-events: none
}

.case-study-dtl .article-header .hdr-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.case-study-dtl .article-header .label-top {
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #03FFCF;
  margin-bottom: 16px;
  display: inline-block
}

.case-study-dtl .article-header h1 {
  font-size: 66px;
  line-height: 1.1;
  font-weight: 700;
  color: #1F1E29;
  margin: 0 0 32px;
  max-width: 960px
}

.case-study-dtl .article-header .meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px
}

.case-study-dtl .article-header .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  opacity: .8
}

.case-study-dtl .article-header .meta-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #03FFCF;
  stroke-width: 2
}

.case-study-dtl .article-header .intro-text {
  font-size: 14px;
  line-height: 1.75;
  color: #1F1E29;
  max-width: 720px;
  margin: 0
}

.case-study-dtl .featured-img-section {
  background: #FCFEFF;
  padding: 0 16px 64px;
  position: relative
}

.case-study-dtl .featured-img-section .img-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 36px 1px #1f1e2921
}

.case-study-dtl .featured-img-section .img-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(127deg, #03ffcf26 0%, #1f1e2914 100%);
  z-index: 1;
  transition: opacity .28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none
}

.case-study-dtl .featured-img-section .img-wrapper:hover::before {
  opacity: 0
}

.case-study-dtl .featured-img-section img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover
}

.case-study-dtl .content-body {
  background: linear-gradient(180deg, #FCFEFF 0%, #fff 50%, #FCFEFF 100%);
  padding: 64px 16px;
  position: relative
}

.case-study-dtl .content-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(90deg, #1f1e2905 1px, transparent 1px), linear-gradient(0deg, #1f1e2905 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: .4
}

.case-study-dtl .content-body .body-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  position: relative;
  z-index: 1
}

.case-study-dtl .content-body .primary-content {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  padding: 64px;
  border-radius: 26px;
  box-shadow: 0 4px 28px 1px #1f1e291a;
  border-right: 4px solid #03FFCF
}

.case-study-dtl .content-body .primary-content p {
  font-size: 14px;
  line-height: 1.75;
  color: #1F1E29;
  margin: 0 0 32px
}

.case-study-dtl .content-body .primary-content p:last-child {
  margin-bottom: 0
}

.case-study-dtl .content-body .primary-content h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  color: #1F1E29;
  margin: 64px 0 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #03FFCF
}

.case-study-dtl .content-body .primary-content h2:first-child {
  margin-top: 0
}

.case-study-dtl .content-body .primary-content h4 {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  color: #1F1E29;
  margin: 32px 0 16px;
  text-transform: uppercase;
  letter-spacing: .05em
}

.case-study-dtl .content-body .primary-content ul,
.case-study-dtl .content-body .primary-content ol {
  margin: 0 0 32px;
  padding-left: 32px
}

.case-study-dtl .content-body .primary-content li {
  font-size: 14px;
  line-height: 1.75;
  color: #1F1E29;
  margin-bottom: 8px
}

.case-study-dtl .content-body .primary-content abbr {
  text-decoration: none;
  border-bottom: 1px dotted #03FFCF;
  cursor: help
}

.case-study-dtl .content-body .primary-content time {
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  opacity: .7;
  font-style: italic
}

.case-study-dtl .insights-grid {
  background: #1F1E29;
  padding: 96px 16px;
  position: relative;
  overflow: hidden
}

.case-study-dtl .insights-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, #03ffcf14 0%, transparent 50%), radial-gradient(circle at 80% 70%, #03ffcf0d 0%, transparent 50%);
  pointer-events: none
}

.case-study-dtl .insights-grid .insights-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.case-study-dtl .insights-grid h2 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 700;
  color: #FCFEFF;
  margin: 0 0 64px;
  text-align: center
}

.case-study-dtl .insights-grid .feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px
}

.case-study-dtl .insights-grid .feature-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: flex-start;
  background: #fcfeff0d;
  padding: 32px;
  border-radius: 9px;
  transition: all .26s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #03ffcf1a
}

.case-study-dtl .insights-grid .feature-row:hover {
  background: #fcfeff14;
  border-color: #03ffcf4d;
  box-shadow: 0 4px 28px 1px #03ffcf1a
}

.case-study-dtl .insights-grid .feature-row:nth-child(even) {
  grid-template-columns: 1fr 80px
}

.case-study-dtl .insights-grid .feature-row:nth-child(even) .feature-icon {
  order: 2
}

.case-study-dtl .insights-grid .feature-row:nth-child(even) .feature-content {
  order: 1
}

.case-study-dtl .insights-grid .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #03FFCF 0%, #01c9a8 100%);
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 3px 1px #03ffcf12
}

.case-study-dtl .insights-grid .feature-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #1F1E29;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.case-study-dtl .insights-grid .feature-content h3 {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #03FFCF;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.case-study-dtl .insights-grid .feature-content p {
  font-size: 14px;
  line-height: 1.75;
  color: #FCFEFF;
  margin: 0;
  opacity: .9
}

.case-study-dtl .cta-section {
  background: linear-gradient(127deg, #FCFEFF 0%, #e8fffe 100%);
  padding: 96px 16px;
  position: relative
}

.case-study-dtl .cta-section .cta-container {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
  position: relative
}

.case-study-dtl .cta-section h2 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 700;
  color: #1F1E29;
  margin: 0 0 32px
}

.case-study-dtl .cta-section .cta-description {
  font-size: 14px;
  line-height: 1.75;
  color: #1F1E29;
  max-width: 640px;
  margin: 0 auto 64px
}

.case-study-dtl .cta-section .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center
}

.case-study-dtl .cta-section .btn-primary {
  padding: 16px 64px;
  background: transparent;
  color: #1F1E29;
  border: 2px solid #1F1E29;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .24s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.case-study-dtl .cta-section .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #03FFCF;
  transform: translate(-50%, -50%);
  transition: width .26s cubic-bezier(0.4, 0, 0.2, 1), height .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.case-study-dtl .cta-section .btn-primary:hover::before {
  width: 300%;
  height: 300%
}

.case-study-dtl .cta-section .btn-primary span {
  position: relative;
  z-index: 1
}

.case-study-dtl .cta-section .btn-primary:hover {
  border-color: #03FFCF;
  color: #1F1E29
}

.case-study-dtl .cta-section .btn-secondary {
  padding: 16px 64px;
  background: transparent;
  color: #1F1E29;
  border: 2px solid #1f1e294d;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .22s cubic-bezier(0.0, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.case-study-dtl .cta-section .btn-secondary:hover {
  border-color: #1F1E29;
  background: #1F1E29;
  color: #FCFEFF
}

@media (max-width: 1024px) {
  .case-study-dtl .article-header h1 {
    font-size: 50px
  }

  .case-study-dtl .content-body .primary-content {
    padding: 32px
  }

  .case-study-dtl .insights-grid h2,
  .case-study-dtl .cta-section h2 {
    font-size: 36px
  }
}

@media (max-width: 640px) {
  .case-study-dtl .article-header {
    padding: 32px 16px 64px
  }

  .case-study-dtl .article-header h1 {
    font-size: 36px
  }

  .case-study-dtl .article-header .meta-info {
    gap: 16px
  }

  .case-study-dtl .content-body .primary-content {
    padding: 16px
  }

  .case-study-dtl .insights-grid .feature-row,
  .case-study-dtl .insights-grid .feature-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .case-study-dtl .insights-grid .feature-row:nth-child(even) .feature-icon,
  .case-study-dtl .insights-grid .feature-row:nth-child(even) .feature-content {
    order: initial
  }

  .case-study-dtl .cta-section .btn-group {
    flex-direction: column
  }

  .case-study-dtl .cta-section .btn-primary,
  .case-study-dtl .cta-section .btn-secondary {
    width: 100%
  }

  .case-study-dtl .featured-img-section {
    display: none
  }
}

@media (max-width: 360px) {
  .case-study-dtl .article-header h1 {
    font-size: 36px
  }

  .case-study-dtl .breadcrumb-nav {
    padding: 16px
  }
}

.case-stud {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
  background: #FCFEFF
}

.case-stud .hero-split {
  position: relative;
  min-height: 420px;
  padding: 64px 32px;
  overflow: hidden;
  background: linear-gradient(127deg, #1F1E29 0%, #1F1E29 48%, #03FFCF 48%, #03FFCF 100%)
}

.case-stud .hero-split::before {
  content: '';
  position: absolute;
  top: 32px;
  right: 64px;
  width: 140px;
  height: 140px;
  background: #FCFEFF;
  opacity: .08;
  border-radius: 50%;
  z-index: 1
}

.case-stud .hero-split::after {
  content: '';
  position: absolute;
  bottom: 64px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #03FFCF;
  opacity: .12;
  border-radius: 50%;
  z-index: 1
}

.case-stud .hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px
}

.case-stud .eyebrow-label {
  display: inline-block;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #03FFCF;
  margin: 0 0 16px
}

.case-stud .hero-title {
  font-size: 66px;
  line-height: 1.1;
  color: #FCFEFF;
  margin: 0
}

.case-stud .hero-img-wrap {
  position: absolute;
  top: 50%;
  right: 64px;
  transform: translateY(-50%);
  width: 360px;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  opacity: 0;
  animation: fadeInImage .9s cubic-bezier(0.4, 0, 0.2, 1) .3s forwards;
  box-shadow: 0 8px 36px 1px #1f1e2921
}

@keyframes fadeInImage {
  to {
    opacity: 1
  }
}

.case-stud .hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.case-stud .post-grid {
  padding: 64px 32px;
  background: #FCFEFF
}

.case-stud .grid-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px
}

.case-stud .grid-intro h2 {
  font-size: 50px;
  line-height: 1.1;
  color: #1F1E29;
  margin: 0 0 16px;
  position: relative;
  display: inline-block
}

.case-stud .grid-intro h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: #03FFCF;
  animation: drawUnderline 1.2s cubic-bezier(0.4, 0, 0.2, 1) .5s forwards
}

@keyframes drawUnderline {
  to {
    width: 100%
  }
}

.case-stud .grid-intro p {
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  margin: 0;
  opacity: .78
}

.case-stud .post-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

.case-stud .post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FCFEFF;
  border: 1px solid #1f1e291f;
  border-radius: 15px;
  overflow: hidden;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1);
  animation: waveAppear .6s cubic-bezier(0.4, 0, 0.2, 1) backwards
}

.case-stud .post-card:nth-child(1) {
  animation-delay: .1s
}

.case-stud .post-card:nth-child(2) {
  animation-delay: .2s
}

.case-stud .post-card:nth-child(3) {
  animation-delay: .3s
}

.case-stud .post-card:nth-child(4) {
  animation-delay: .4s
}

@keyframes waveAppear {
  from {
    opacity: 0;
    transform: translateY(32px)
  }

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

.case-stud .post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px 1px #1f1e2921
}

.case-stud .post-card-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden
}

.case-stud .post-card-img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #03ffcf59;
  z-index: 1;
  transition: opacity .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.case-stud .post-card:hover .post-card-img-wrap::before {
  opacity: 0
}

.case-stud .post-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.case-stud .post-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1
}

.case-stud .post-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px
}

.case-stud .post-card-date {
  font-size: 14px;
  line-height: 1.3;
  color: #1F1E29;
  opacity: .6
}

.case-stud .post-card-views {
  font-size: 14px;
  line-height: 1.3;
  color: #1F1E29;
  opacity: .6;
  display: flex;
  align-items: center;
  gap: 8px
}

.case-stud .post-card-views::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: currentColor;
  opacity: .5;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E") center/contain no-repeat
}

.case-stud .post-card-title {
  font-size: 36px;
  line-height: 1.1;
  color: #1F1E29;
  margin: 0 0 16px
}

.case-stud .post-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  opacity: .78;
  margin: 0 0 32px;
  flex-grow: 1
}

.case-stud .post-card-link {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  font-size: 14px;
  line-height: 1.3;
  color: #1F1E29;
  background: transparent;
  border: 2px solid #1F1E29;
  border-radius: 9px;
  text-decoration: none;
  transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  position: relative;
  overflow: hidden
}

.case-stud .post-card-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #03FFCF;
  transform: translate(-50%, -50%);
  transition: width .28s cubic-bezier(0.0, 0, 0.2, 1), height .28s cubic-bezier(0.0, 0, 0.2, 1);
  z-index: -1
}

.case-stud .post-card-link:hover::before {
  width: 300px;
  height: 300px
}

.case-stud .post-card-link:hover {
  color: #1F1E29
}

.case-stud .comparison-split {
  padding: 64px 32px;
  background: linear-gradient(180deg, #FCFEFF 0%, #03ffcf0a 100%);
  position: relative
}

.case-stud .comparison-split::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, transparent 0%, transparent 48%, #1f1e2905 48%, #1f1e2905 52%, transparent 52%, transparent 100%), linear-gradient(45deg, transparent 0%, transparent 48%, #1f1e2905 48%, #1f1e2905 52%, transparent 52%, transparent 100%);
  background-size: 32px 32px;
  opacity: .3;
  pointer-events: none
}

.case-stud .comparison-split h2 {
  font-size: 50px;
  line-height: 1.1;
  color: #1F1E29;
  margin: 0 0 64px;
  text-align: center;
  position: relative
}

.case-stud .comparison-split h2::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #03FFCF
}

.case-stud .comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto
}

.case-stud .comparison-card {
  background: #FCFEFF;
  border: 2px solid #1f1e291a;
  border-radius: 15px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  animation: pulseScale 3s cubic-bezier(0.4, 0, 0.2, 1) infinite
}

.case-stud .comparison-card:nth-child(1) {
  animation-delay: 0s
}

.case-stud .comparison-card:nth-child(2) {
  animation-delay: 1.5s
}

@keyframes pulseScale {

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

  50% {
    transform: scale(1.02)
  }
}

.case-stud .comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #03FFCF 0%, #1F1E29 100%)
}

.case-stud .comparison-card h3 {
  font-size: 36px;
  line-height: 1.1;
  color: #1F1E29;
  margin: 0 0 32px
}

.case-stud .comparison-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.case-stud .comparison-list li {
  font-size: 14px;
  line-height: 1.75;
  color: #1F1E29;
  padding: 16px 0;
  border-bottom: 1px solid #1f1e2914;
  position: relative;
  padding-left: 32px
}

.case-stud .comparison-list li:last-child {
  border-bottom: none !important
}

.case-stud .comparison-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: #03FFCF;
  border-radius: 50%;
  opacity: .7
}

.case-stud .metrics-complex {
  padding: 64px 32px;
  background: #1F1E29;
  position: relative;
  overflow: hidden
}

.case-stud .metrics-complex::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: #03ffcf14;
  border-radius: 50%
}

.case-stud .metrics-complex::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: #03ffcf0d;
  border-radius: 50%
}

.case-stud .metrics-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 2
}

.case-stud .metrics-main {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.case-stud .metrics-main h2 {
  font-size: 50px;
  line-height: 1.1;
  color: #FCFEFF;
  margin: 0 0 16px
}

.case-stud .metrics-main h3 {
  font-size: 36px;
  line-height: 1.3;
  color: #03FFCF;
  margin: 0 0 16px
}

.case-stud .metrics-main p {
  font-size: 14px;
  line-height: 1.55;
  color: #FCFEFF;
  opacity: .85;
  margin: 0 0 32px
}

.case-stud .metrics-main button {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  font-size: 14px;
  line-height: 1.3;
  color: #FCFEFF;
  background: transparent;
  border: 2px solid #03FFCF;
  border-radius: 9px;
  cursor: pointer;
  transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  position: relative;
  overflow: hidden
}

.case-stud .metrics-main button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #03FFCF;
  transform: translate(-50%, -50%);
  transition: width .26s cubic-bezier(0.0, 0, 0.2, 1), height .26s cubic-bezier(0.0, 0, 0.2, 1);
  z-index: -1
}

.case-stud .metrics-main button:hover::before {
  width: 300px;
  height: 300px
}

.case-stud .metrics-main button:hover {
  color: #1F1E29
}

.case-stud .metrics-stat {
  background: #fcfeff0d;
  border: 1px solid #03ffcf33;
  border-radius: 15px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center
}

.case-stud .metrics-stat-number {
  font-size: 66px;
  line-height: 1.1;
  color: #03FFCF;
  margin: 0 0 8px
}

.case-stud .metrics-stat-label {
  font-size: 14px;
  line-height: 1.3;
  color: #FCFEFF;
  opacity: .75;
  margin: 0
}

.case-stud .wave-divider {
  width: 100%;
  height: 80px;
  background: #FCFEFF;
  position: relative
}

.case-stud .wave-divider svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.case-stud .process-flow {
  padding: 64px 32px;
  background: #FCFEFF
}

.case-stud .process-flow h2 {
  font-size: 50px;
  line-height: 1.1;
  color: #1F1E29;
  margin: 0 0 16px;
  text-align: center
}

.case-stud .process-flow-intro {
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  opacity: .78;
  margin: 0 0 64px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto
}

.case-stud .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto
}

.case-stud .process-step {
  position: relative;
  padding: 32px;
  background: linear-gradient(135deg, #03ffcf0f 0%, #1f1e290a 100%);
  border-radius: 15px;
  border: 1px solid #1f1e291a;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.case-stud .process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 36px 1px #1f1e2921
}

.case-stud .process-step-number {
  font-size: 66px;
  line-height: 1.1;
  color: #03FFCF;
  opacity: .4;
  margin: 0 0 16px
}

.case-stud .process-step h3 {
  font-size: 36px;
  line-height: 1.1;
  color: #1F1E29;
  margin: 0 0 16px
}

.case-stud .process-step p {
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  opacity: .78;
  margin: 0
}

.case-stud .faq-section {
  padding: 64px 32px;
  background: linear-gradient(180deg, #03ffcf08 0%, #FCFEFF 100%)
}

.case-stud .faq-section h2 {
  font-size: 50px;
  line-height: 1.1;
  color: #1F1E29;
  margin: 0 0 64px;
  text-align: center
}

.case-stud .faq-items {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.case-stud .faq-item {
  background: #FCFEFF;
  border: 1px solid #1f1e291a;
  border-radius: 15px;
  overflow: hidden
}

.case-stud .faq-question {
  width: 100%;
  padding: 32px;
  font-size: 36px;
  line-height: 1.1;
  color: #1F1E29;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative
}

.case-stud .faq-question:hover {
  background: #03ffcf0d
}

.case-stud .faq-question::after {
  content: '';
  width: 24px;
  height: 24px;
  background: #03FFCF;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 16px
}

.case-stud .faq-answer {
  padding: 0 32px 32px;
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  opacity: .78
}

@media (max-width: 1280px) {
  .case-stud .hero-img-wrap {
    width: 300px;
    height: 240px;
    right: 32px
  }

  .case-stud .metrics-wrapper {
    grid-template-columns: 1fr
  }

  .case-stud .process-steps {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 1024px) {
  .case-stud .hero-split {
    min-height: 360px;
    padding: 64px 32px
  }

  .case-stud .hero-title {
    font-size: 50px
  }

  .case-stud .hero-img-wrap {
    display: none
  }

  .case-stud .post-cards {
    grid-template-columns: 1fr
  }

  .case-stud .comparison-cards {
    grid-template-columns: 1fr
  }

  .case-stud .process-steps {
    grid-template-columns: 1fr
  }
}

@media (max-width: 640px) {
  .case-stud .hero-split {
    padding: 32px 16px;
    min-height: 280px
  }

  .case-stud .hero-title {
    font-size: 36px
  }

  .case-stud .post-grid {
    padding: 32px 16px
  }

  .case-stud .grid-intro h2 {
    font-size: 36px
  }

  .case-stud .post-card-title {
    font-size: 36px
  }

  .case-stud .comparison-split {
    padding: 32px 16px
  }

  .case-stud .comparison-split h2 {
    font-size: 36px;
    margin-bottom: 32px
  }

  .case-stud .comparison-card h3 {
    font-size: 36px
  }

  .case-stud .metrics-complex {
    padding: 32px 16px
  }

  .case-stud .metrics-main h2 {
    font-size: 36px
  }

  .case-stud .metrics-main h3 {
    font-size: 36px
  }

  .case-stud .metrics-stat-number {
    font-size: 50px
  }

  .case-stud .process-flow {
    padding: 32px 16px
  }

  .case-stud .process-flow h2 {
    font-size: 36px
  }

  .case-stud .process-step h3 {
    font-size: 36px
  }

  .case-stud .faq-section {
    padding: 32px 16px
  }

  .case-stud .faq-section h2 {
    font-size: 36px
  }

  .case-stud .faq-question {
    font-size: 36px;
    padding: 16px
  }

  .case-stud .faq-answer {
    padding: 0 16px 16px
  }
}

@media (max-width: 360px) {
  .case-stud .hero-title {
    font-size: 36px
  }

  .case-stud .post-card-body {
    padding: 16px
  }

  .case-stud .comparison-card {
    padding: 16px
  }

  .case-stud .process-step {
    padding: 16px
  }
}

.budget-portal {
  background: #FCFEFF;
  color: #1F1E29;
  overflow-x: clip
}

.budget-portal .opening-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 86vh;
  position: relative
}

.budget-portal .opening-split::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 64px;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(circle, #1F1E29 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: .08;
  pointer-events: none
}

.budget-portal .left-zone {
  background: linear-gradient(127deg, #03FFCF 0%, #1F1E29 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  position: relative;
  animation: bg-pulse 6.8s cubic-bezier(0.4, 0, 0.2, 1) infinite
}

@keyframes bg-pulse {

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

  50% {
    filter: brightness(1.07)
  }
}

.budget-portal .right-zone {
  background: #FCFEFF;
  display: flex;
  align-items: center;
  padding: 64px 64px 64px 96px
}

.budget-portal .intro-text {
  max-width: 560px
}

.budget-portal .intro-text h1 {
  font-size: 66px;
  line-height: 1.1;
  margin: 0 0 32px;
  font-weight: 700;
  color: #1F1E29
}

.budget-portal .intro-text h1 .accent-word {
  display: inline-block;
  position: relative
}

.budget-portal .intro-text h1 .accent-word::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 3px;
  background: #03FFCF;
  animation: draw-line 1.2s cubic-bezier(0.4, 0, 0.2, 1) .4s forwards
}

@keyframes draw-line {
  to {
    width: 100%
  }
}

.budget-portal .intro-text p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  color: #1F1E29
}

@media (max-width: 1024px) {
  .budget-portal .opening-split {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .budget-portal .left-zone {
    padding: 64px 32px
  }

  .budget-portal .right-zone {
    padding: 64px 32px
  }

  .budget-portal .intro-text h1 {
    font-size: 50px
  }
}

@media (max-width: 640px) {
  .budget-portal .opening-split::before {
    width: 120px;
    height: 120px;
    top: 16px;
    left: 16px
  }

  .budget-portal .intro-text h1 {
    font-size: 36px;
    margin: 0 0 16px
  }
}

.budget-portal .recognition-grid {
  padding: 64px 32px;
  max-width: 1320px;
  margin: 0 auto;
  background: #FCFEFF
}

.budget-portal .recognition-grid h2 {
  font-size: 50px;
  line-height: 1.3;
  margin: 0 0 8px;
  font-weight: 600;
  color: #1F1E29;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%)
}

.budget-portal .recognition-grid h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #03FFCF
}

.budget-portal .recognition-intro {
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
  max-width: 680px;
  margin: 32px auto 64px;
  color: #1F1E29
}

.budget-portal .credentials-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.budget-portal .credential-card {
  background: #FCFEFF;
  border: 1px solid #1f1e291f;
  border-radius: 15px;
  padding: 32px;
  position: relative;
  transition: box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1), transform .24s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 3px 1px #1f1e2912
}

.budget-portal .credential-card:hover {
  box-shadow: 0 8px 36px 1px #1f1e2921;
  transform: translateY(-2px)
}

.budget-portal .credential-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #03FFCF 0%, #1F1E29 100%);
  border-radius: 15px 0 0 15px
}

.budget-portal .credential-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #03FFCF 0%, #03ffcf33 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px
}

.budget-portal .credential-icon svg {
  width: 28px;
  height: 28px;
  fill: #1F1E29
}

.budget-portal .credential-card h3 {
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 8px;
  font-weight: 600;
  color: #1F1E29
}

.budget-portal .credential-card p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: #1F1E29
}

@media (max-width: 1024px) {
  .budget-portal .credentials-layout {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .budget-portal .recognition-grid h2 {
    font-size: 36px
  }
}

@media (max-width: 640px) {
  .budget-portal .recognition-grid {
    padding: 32px 16px
  }

  .budget-portal .recognition-intro {
    margin: 16px auto 32px
  }

  .budget-portal .credential-card {
    padding: 16px
  }
}

.budget-portal .lasting-impact {
  background: #1F1E29;
  padding: 64px 32px;
  position: relative;
  overflow: hidden
}

.budget-portal .lasting-impact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, transparent, transparent 6px, #03FFCF 6px, #03FFCF 8px);
  mask-image: url("data:image/svg+xml,%3Csvg width='100%25' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,4 Q10,0 20,4 T40,4 T60,4 T80,4 T100,4 T120,4 T140,4 T160,4 T180,4 T200,4' stroke='black' stroke-width='8' fill='none'/%3E%3C/svg%3E");
  mask-size: 40px 8px;
  mask-repeat: repeat-x
}

.budget-portal .lasting-impact .content-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.budget-portal .lasting-impact .text-content h2 {
  font-size: 50px;
  line-height: 1.3;
  margin: 0 0 32px;
  font-weight: 600;
  color: #FCFEFF
}

.budget-portal .lasting-impact .text-content p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 16px;
  color: #FCFEFF
}

.budget-portal .lasting-impact .text-content p:last-child {
  margin: 0
}

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

.budget-portal .metric-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.budget-portal .ring-svg {
  width: 140px;
  height: 140px;
  margin: 0 0 16px;
  transform: rotate(-90deg)
}

.budget-portal .ring-bg {
  fill: none;
  stroke: #fcfeff26;
  stroke-width: 8
}

.budget-portal .ring-progress {
  fill: none;
  stroke: #03FFCF;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 377;
  stroke-dashoffset: 377;
  animation: fill-ring 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.budget-portal .metric-ring:nth-child(1) .ring-progress {
  animation-delay: .2s;
  stroke-dashoffset: 94.25
}

.budget-portal .metric-ring:nth-child(2) .ring-progress {
  animation-delay: .4s;
  stroke-dashoffset: 75.4
}

.budget-portal .metric-ring:nth-child(3) .ring-progress {
  animation-delay: .6s;
  stroke-dashoffset: 113.1
}

.budget-portal .metric-ring:nth-child(4) .ring-progress {
  animation-delay: .8s;
  stroke-dashoffset: 56.55
}

@keyframes fill-ring {
  from {
    stroke-dashoffset: 377
  }
}

.budget-portal .ring-label {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  color: #03FFCF;
  margin: 0 0 8px
}

.budget-portal .ring-description {
  font-size: 14px;
  line-height: 1.3;
  color: #FCFEFF;
  margin: 0
}

@media (max-width: 1024px) {
  .budget-portal .lasting-impact .content-wrapper {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .budget-portal .lasting-impact .text-content h2 {
    font-size: 36px
  }

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

@media (max-width: 640px) {
  .budget-portal .lasting-impact {
    padding: 32px 16px
  }

  .budget-portal .metrics-display {
    grid-template-columns: 1fr
  }

  .budget-portal .ring-svg {
    width: 120px;
    height: 120px
  }
}

.budget-portal .hesitation-address {
  padding: 64px 32px;
  max-width: 1320px;
  margin: 0 auto;
  background: #FCFEFF;
  position: relative
}

.budget-portal .hesitation-address::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #03FFCF 50%, transparent 100%)
}

.budget-portal .hesitation-address::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #1F1E29 50%, transparent 100%)
}

.budget-portal .hesitation-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 64px;
  align-items: start
}

.budget-portal .question-block h2 {
  font-size: 50px;
  line-height: 1.3;
  margin: 0 0 16px;
  font-weight: 600;
  color: #1F1E29
}

.budget-portal .question-block p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  color: #1F1E29
}

.budget-portal .response-panels {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.budget-portal .response-item {
  background: #FCFEFF;
  border: 1px solid #1f1e291f;
  border-radius: 26px;
  padding: 32px;
  position: relative;
  box-shadow: 0 2px 3px 1px #1f1e2912;
  transition: box-shadow .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.budget-portal .response-item:hover {
  box-shadow: 0 4px 28px 1px #1f1e291a
}

.budget-portal .response-item h3 {
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 8px;
  font-weight: 600;
  color: #1F1E29;
  display: flex;
  align-items: center;
  gap: 8px
}

.budget-portal .response-item h3::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #03FFCF;
  border-radius: 4px;
  flex-shrink: 0
}

.budget-portal .response-item p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: #1F1E29
}

.budget-portal .visual-proof {
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.budget-portal .proof-image {
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 2px 3px 1px #1f1e2912;
  transition: box-shadow .22s cubic-bezier(0.0, 0, 0.2, 1), transform .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.budget-portal .proof-image:hover {
  box-shadow: 0 8px 36px 1px #1f1e2921;
  transform: scale(1.03)
}

.budget-portal .proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .28s cubic-bezier(0.4, 0, 0.2, 1);
  filter: sepia(0.3) brightness(0.9)
}

.budget-portal .proof-image:hover img {
  filter: sepia(0) brightness(1)
}

@media (max-width: 1024px) {
  .budget-portal .hesitation-layout {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .budget-portal .question-block h2 {
    font-size: 36px
  }

  .budget-portal .visual-proof {
    grid-template-columns: 1fr
  }
}

@media (max-width: 640px) {
  .budget-portal .hesitation-address {
    padding: 32px 16px
  }

  .budget-portal .hesitation-address::before,
  .budget-portal .hesitation-address::after {
    left: 16px;
    right: 16px
  }

  .budget-portal .response-item {
    padding: 16px
  }

  .budget-portal .visual-proof {
    margin: 16px 0 0
  }
}

.abt-us {
  background: #FCFEFF;
  color: #1F1E29;
  overflow-x: clip
}

.abt-us .split-title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative;
  overflow: visible
}

.abt-us .split-title .left-half {
  background: linear-gradient(127deg, #1F1E29 0%, #03FFCF 100%);
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

.abt-us .split-title .right-half {
  background: #FCFEFF;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

.abt-us .split-title .dot-pattern {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: grid;
  grid-template-columns: repeat(4, 8px);
  gap: 16px;
  pointer-events: none
}

.abt-us .split-title .dot-pattern span {
  width: 8px;
  height: 8px;
  background: #03ffcf66;
  border-radius: 42px;
  animation: dot-appear .24s cubic-bezier(0.4, 0, 0.2, 1) backwards
}

.abt-us .split-title .dot-pattern span:nth-child(1) {
  animation-delay: .05s
}

.abt-us .split-title .dot-pattern span:nth-child(2) {
  animation-delay: .1s
}

.abt-us .split-title .dot-pattern span:nth-child(3) {
  animation-delay: .15s
}

.abt-us .split-title .dot-pattern span:nth-child(4) {
  animation-delay: .2s
}

@keyframes dot-appear {
  from {
    opacity: 0;
    transform: scale(0)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.abt-us .split-title h1 {
  font-size: 66px;
  line-height: 1.1;
  color: #FCFEFF;
  margin: 0 0 32px;
  animation: word-reveal .26s cubic-bezier(0.0, 0, 0.2, 1) backwards
}

.abt-us .split-title h1 .word {
  display: inline-block;
  animation: word-reveal .26s cubic-bezier(0.0, 0, 0.2, 1) backwards
}

.abt-us .split-title h1 .word:nth-child(1) {
  animation-delay: .1s
}

.abt-us .split-title h1 .word:nth-child(2) {
  animation-delay: .2s
}

.abt-us .split-title h1 .word:nth-child(3) {
  animation-delay: .28s
}

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

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

.abt-us .split-title .subtitle {
  font-size: 36px;
  line-height: 1.3;
  color: #1F1E29;
  margin: 0 0 32px
}

.abt-us .split-title .action-link {
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: 2px solid #1F1E29;
  border-radius: 4px;
  transition: background .24s cubic-bezier(0.4, 0, 0.2, 1), color .24s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  align-self: flex-start
}

.abt-us .split-title .action-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 42px;
  background: #1F1E29;
  transform: translate(-50%, -50%);
  transition: width .28s cubic-bezier(0.0, 0, 0.2, 1), height .28s cubic-bezier(0.0, 0, 0.2, 1);
  z-index: 0
}

.abt-us .split-title .action-link:hover::before {
  width: 300px;
  height: 300px
}

.abt-us .split-title .action-link span {
  position: relative;
  z-index: 1
}

.abt-us .split-title .action-link:hover {
  color: #FCFEFF
}

.abt-us .split-title .action-link svg {
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 1;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .split-title .action-link:hover svg {
  transform: translateX(4px)
}

@media (max-width: 1024px) {
  .abt-us .split-title {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .abt-us .split-title .left-half,
  .abt-us .split-title .right-half {
    padding: 32px
  }

  .abt-us .split-title h1 {
    font-size: 50px
  }
}

@media (max-width: 640px) {

  .abt-us .split-title .left-half,
  .abt-us .split-title .right-half {
    padding: 32px 16px
  }

  .abt-us .split-title h1 {
    font-size: 36px
  }

  .abt-us .split-title .subtitle {
    font-size: 14px
  }
}

.abt-us .story-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative
}

.abt-us .story-grid::before {
  content: '"';
  position: absolute;
  top: -32px;
  left: 32px;
  font-size: 240px;
  line-height: 1;
  color: #1f1e290f;
  pointer-events: none;
  font-weight: 700;
  z-index: 0
}

.abt-us .story-card {
  background: #FCFEFF;
  border: 2px solid #1f1e291f;
  border-radius: 15px;
  padding: 32px;
  position: relative;
  box-shadow: 8px 8px 0 0 #03ffcf26;
  transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1
}

.abt-us .story-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 0 #03ffcf40
}

.abt-us .story-card h3 {
  font-size: 36px;
  line-height: 1.3;
  color: #1F1E29;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 16px
}

.abt-us .story-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 2px;
  background: #03FFCF
}

.abt-us .story-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #1F1E29;
  margin: 0
}

.abt-us .story-card .metric {
  font-size: 50px;
  line-height: 1.1;
  color: #03FFCF;
  margin: 0 0 8px;
  font-weight: 700
}

.abt-us .story-card .metric-label {
  font-size: 14px;
  line-height: 1.55;
  color: #1f1e29b3;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .08em
}

@media (max-width: 1024px) {
  .abt-us .story-grid {
    grid-template-columns: 1fr;
    padding: 64px 16px
  }

  .abt-us .story-grid::before {
    font-size: 160px;
    left: 16px
  }
}

.abt-us .story-grid:hover .story-card:not(:hover) {
  opacity: .5;
  transition: opacity .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.abt-us .story-grid .story-card {
  opacity: 1;
  transition: opacity .26s cubic-bezier(0.0, 0, 0.2, 1), transform .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .divider-line {
  max-width: 1320px;
  margin: 0 auto 64px;
  height: 2px;
  background: #03FFCF
}

.abt-us .visual-showcase {
  background: #FCFEFF;
  position: relative;
  overflow: hidden
}

.abt-us .visual-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/image_bank/about1alt.jpg);
  background-size: cover;
  background-position: center;
  filter: blur(32px);
  opacity: .15;
  z-index: 0
}

.abt-us .visual-showcase .content-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 32px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.abt-us .visual-showcase .text-content h2 {
  font-size: 50px;
  line-height: 1.1;
  color: #1F1E29;
  margin: 0 0 32px
}

.abt-us .visual-showcase .text-content p {
  font-size: 14px;
  line-height: 1.75;
  color: #1F1E29;
  margin: 0 0 16px
}

.abt-us .visual-showcase .text-content p:last-child {
  margin-bottom: 0
}

.abt-us .visual-showcase .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.abt-us .visual-showcase .image-wrapper {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1
}

.abt-us .visual-showcase .image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(127deg, #1f1e2966 0%, #03ffcf66 100%);
  z-index: 1;
  transition: opacity .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .visual-showcase .image-wrapper:hover::before {
  opacity: 0
}

.abt-us .visual-showcase .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.abt-us .visual-showcase .image-wrapper:hover img {
  transform: scale(1.08)
}

@media (max-width: 1024px) {
  .abt-us .visual-showcase .content-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 16px
  }

  .abt-us .visual-showcase .text-content h2 {
    font-size: 36px
  }
}

@media (max-width: 640px) {
  .abt-us .visual-showcase .image-grid {
    display: none
  }
}

.abt-us .team-approach {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 32px
}

.abt-us .team-approach h2 {
  font-size: 50px;
  line-height: 1.1;
  color: #1F1E29;
  margin: 0 0 64px;
  text-align: center
}

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

.abt-us .approach-block {
  background: linear-gradient(180deg, #FCFEFF 0%, #03ffcf14 100%);
  border: 1px solid #1f1e291a;
  border-radius: 9px;
  padding: 32px 16px;
  text-align: center;
  transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative
}

.abt-us .approach-block::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(127deg, #03FFCF 0%, #1F1E29 100%);
  border-radius: 9px;
  opacity: 0;
  transition: opacity .24s cubic-bezier(0.0, 0, 0.2, 1);
  z-index: -1
}

.abt-us .approach-block:hover {
  transform: translateY(-8px);
  border-color: transparent
}

.abt-us .approach-block:hover::before {
  opacity: 1
}

.abt-us .approach-block .icon-shape {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(127deg, #1F1E29 0%, #03FFCF 100%);
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.abt-us .approach-block .icon-shape::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #03FFCF;
  border-radius: 42px;
  transform: scale(0);
  transition: transform .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.abt-us .approach-block:hover .icon-shape::before {
  transform: scale(1)
}

.abt-us .approach-block .icon-shape svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1
}

.abt-us .approach-block h4 {
  font-size: 14px;
  line-height: 1.3;
  color: #1F1E29;
  margin: 0 0 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em
}

.abt-us .approach-block p {
  font-size: 14px;
  line-height: 1.55;
  color: #1f1e29cc;
  margin: 0
}

@media (max-width: 1024px) {
  .abt-us .approach-blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
  }

  .abt-us .team-approach {
    padding: 64px 16px
  }

  .abt-us .team-approach h2 {
    font-size: 36px;
    margin-bottom: 32px
  }
}

@media (max-width: 640px) {
  .abt-us .approach-blocks {
    grid-template-columns: 1fr
  }
}

.abt-us .approach-blocks:hover .approach-block:not(:hover) {
  opacity: .4
}

.abt-us .approach-block {
  opacity: 1;
  transition: opacity .26s cubic-bezier(0.0, 0, 0.2, 1), transform .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-pg {
  background: #FCFEFF;
  color: #1F1E29;
  overflow-x: clip
}

.contact-pg .hero-wrap {
  padding: 64px 16px;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative
}

.contact-pg .hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.contact-pg .hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-pg .hero-title {
  font-size: 66px;
  line-height: 1.1;
  margin: 0;
  position: relative
}

.contact-pg .hero-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 180px;
  height: 3px;
  background: linear-gradient(127deg, #1F1E29 0%, #03FFCF 100%);
  animation: slideUnderline .8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: left
}

@keyframes slideUnderline {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

.contact-pg .hero-link {
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 2px solid #1F1E29;
  border-radius: 9px;
  transition: background .24s cubic-bezier(0.4, 0, 0.2, 1), color .24s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  position: relative;
  overflow: hidden
}

.contact-pg .hero-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #03FFCF;
  transform: translate(-50%, -50%);
  transition: width .26s cubic-bezier(0, 0, 0.2, 1), height .26s cubic-bezier(0, 0, 0.2, 1);
  z-index: 0
}

.contact-pg .hero-link:hover::before {
  width: 300px;
  height: 300px
}

.contact-pg .hero-link:hover {
  color: #1F1E29;
  border-color: #03FFCF
}

.contact-pg .hero-link span {
  position: relative;
  z-index: 1
}

.contact-pg .hero-link svg {
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 1;
  transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-pg .hero-link:hover svg {
  transform: translateX(4px)
}

.contact-pg .hero-img-strip {
  width: 100%;
  height: 280px;
  position: relative;
  border-radius: 15px;
  overflow: hidden
}

.contact-pg .hero-img-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #1f1e2966 0%, #03ffcf1a 100%);
  z-index: 1;
  transition: opacity .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-pg .hero-img-strip:hover::before {
  opacity: 0
}

.contact-pg .hero-img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.contact-pg .hero-shapes {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  opacity: .15
}

.contact-pg .hero-shapes svg {
  position: absolute;
  animation: shapeFloat 6s ease-in-out infinite
}

.contact-pg .hero-shapes svg:nth-child(1) {
  top: 0;
  left: 0;
  animation-delay: 0s
}

.contact-pg .hero-shapes svg:nth-child(2) {
  bottom: 0;
  right: 0;
  animation-delay: 2s
}

@keyframes shapeFloat {

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

  50% {
    transform: translateY(-16px) rotate(180deg)
  }
}

.contact-pg .form-section {
  padding: 64px 16px;
  background: linear-gradient(217deg, #1F1E29 0%, #03FFCF 100%);
  position: relative
}

.contact-pg .form-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start
}

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

.contact-pg .form-heading {
  font-size: 50px;
  line-height: 1.1;
  color: #FCFEFF;
  margin: 0;
  position: relative;
  padding-bottom: 16px
}

.contact-pg .form-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #03FFCF 0px, #03FFCF 16px, transparent 16px, transparent 24px, #03FFCF 24px, #03FFCF 48px, transparent 48px, transparent 56px)
}

.contact-pg .form-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #FCFEFF;
  margin: 0
}

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

.contact-pg .contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #fcfeff14;
  border-radius: 9px;
  border: 1px solid #03ffcf33;
  transition: background .26s cubic-bezier(0, 0, 0.2, 1), border-color .26s cubic-bezier(0, 0, 0.2, 1), transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-pg .contact-item:hover {
  background: #fcfeff1f;
  border-color: #03ffcf66;
  transform: translateY(-2px)
}

.contact-pg .contact-item:hover .contact-label {
  color: #03FFCF
}

.contact-pg .contact-label {
  font-size: 14px;
  line-height: 1.3;
  color: #03FFCF;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
  transition: color .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-pg .contact-value {
  font-size: 14px;
  line-height: 1.55;
  color: #FCFEFF;
  margin: 0
}

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

.contact-pg .contact-value a:hover {
  color: #03FFCF
}

.contact-pg .form-block {
  background: #FCFEFF;
  padding: 32px;
  border-radius: 26px;
  box-shadow: 0 8px 36px 1px #1f1e2921;
  display: flex;
  flex-direction: column;
  gap: 32px
}

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

.contact-pg .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px
}

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

.contact-pg .field-label {
  font-size: 14px;
  line-height: 1.3;
  color: #1F1E29;
  letter-spacing: .04em;
  margin: 0
}

.contact-pg .field-input {
  padding: 16px;
  border: 2px solid #1f1e2933;
  border-radius: 9px;
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  background: #FCFEFF;
  transition: border-color .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none
}

.contact-pg .field-input::placeholder {
  color: #1f1e2966;
  font-weight: 300
}

.contact-pg .field-input:focus {
  border-color: #03FFCF;
  box-shadow: 0 0 0 3px #03ffcf1a
}

.contact-pg .field-select {
  padding: 16px;
  border: 2px solid #1f1e2933;
  border-radius: 9px;
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  background: #FCFEFF;
  transition: border-color .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231F1E29' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px
}

.contact-pg .field-select:focus {
  border-color: #03FFCF;
  box-shadow: 0 0 0 3px #03ffcf1a
}

.contact-pg .field-textarea {
  padding: 16px;
  border: 2px solid #1f1e2933;
  border-radius: 9px;
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  background: #FCFEFF;
  transition: border-color .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  resize: vertical;
  min-height: 120px
}

.contact-pg .field-textarea::placeholder {
  color: #1f1e2966;
  font-weight: 300
}

.contact-pg .field-textarea:focus {
  border-color: #03FFCF;
  box-shadow: 0 0 0 3px #03ffcf1a
}

.contact-pg .privacy-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.contact-pg .privacy-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #1f1e2933;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), background .22s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  outline: none;
  position: relative;
  margin-top: 2px
}

.contact-pg .privacy-checkbox:checked {
  background: #03FFCF;
  border-color: #03FFCF
}

.contact-pg .privacy-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #1F1E29;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg)
}

.contact-pg .privacy-checkbox:focus {
  box-shadow: 0 0 0 3px #03ffcf1a
}

.contact-pg .privacy-text {
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  margin: 0
}

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

.contact-pg .privacy-text a:hover {
  color: #03FFCF
}

.contact-pg .submit-btn {
  padding: 16px 32px;
  background: transparent;
  color: #1F1E29;
  border: 2px solid #1F1E29;
  border-radius: 9px;
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
  transition: background .26s cubic-bezier(0, 0, 0.2, 1), color .26s cubic-bezier(0, 0, 0.2, 1), border-color .26s cubic-bezier(0, 0, 0.2, 1), transform .22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  align-self: flex-start
}

.contact-pg .submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #03FFCF;
  transform: translate(-50%, -50%);
  transition: width .28s cubic-bezier(0, 0, 0.2, 1), height .28s cubic-bezier(0, 0, 0.2, 1);
  z-index: 0
}

.contact-pg .submit-btn:hover::before {
  width: 400px;
  height: 400px
}

.contact-pg .submit-btn:hover {
  border-color: #03FFCF;
  color: #1F1E29
}

.contact-pg .submit-btn:active {
  transform: scale(0.98)
}

.contact-pg .submit-btn span {
  position: relative;
  z-index: 1
}

.contact-pg .status-indicator {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #03ffcf0d;
  border-radius: 9px;
  border-left: 4px solid #03FFCF
}

.contact-pg .indicator-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 80px
}

.contact-pg .indicator-bar {
  height: 8px;
  border-radius: 4px;
  background: #1f1e291a;
  position: relative;
  overflow: hidden
}

.contact-pg .indicator-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #03FFCF;
  border-radius: 4px;
  animation: barFill 2s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.contact-pg .indicator-bar.high::after {
  width: 92%
}

.contact-pg .indicator-bar.medium::after {
  width: 68%;
  background: #1F1E29;
  animation-delay: .2s
}

.contact-pg .indicator-bar.low::after {
  width: 45%;
  background: #1f1e2999;
  animation-delay: .4s
}

@keyframes barFill {
  from {
    width: 0
  }
}

.contact-pg .indicator-text {
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  margin: 0
}

.contact-pg .curved-connector {
  position: absolute;
  pointer-events: none;
  opacity: .3
}

.contact-pg .curved-connector svg {
  width: 100%;
  height: 100%
}

.contact-pg .curved-connector path {
  fill: none;
  stroke: #03FFCF;
  stroke-width: 2;
  stroke-dasharray: 8 4;
  animation: dashFlow 20s linear infinite
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -240
  }
}

@media (min-width: 640px) {
  .contact-pg .hero-wrap {
    padding: 64px 32px
  }

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

  .contact-pg .contact-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .contact-pg .form-row {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (min-width: 1024px) {
  .contact-pg .hero-wrap {
    padding: 64px;
    flex-direction: row;
    align-items: flex-start
  }

  .contact-pg .hero-content {
    flex-direction: row;
    align-items: flex-start
  }

  .contact-pg .hero-text {
    flex: 1;
    max-width: 600px
  }

  .contact-pg .hero-img-strip {
    width: 380px;
    height: 420px;
    flex-shrink: 0
  }

  .contact-pg .form-section {
    padding: 64px
  }

  .contact-pg .form-container {
    grid-template-columns: 1fr 1.2fr
  }

  .contact-pg .contact-grid {
    grid-template-columns: 1fr
  }
}

@media (min-width: 1280px) {
  .contact-pg .hero-img-strip {
    width: 440px;
    height: 480px
  }

  .contact-pg .form-container {
    grid-template-columns: 1fr 1.4fr
  }
}

.contact-pg .diagonal-reveal {
  opacity: 0;
  animation: diagonalFade .6s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.contact-pg .diagonal-reveal:nth-child(1) {
  animation-delay: .1s
}

.contact-pg .diagonal-reveal:nth-child(2) {
  animation-delay: .2s
}

.contact-pg .diagonal-reveal:nth-child(3) {
  animation-delay: .3s
}

.contact-pg .diagonal-reveal:nth-child(4) {
  animation-delay: .4s
}

@keyframes diagonalFade {
  from {
    opacity: 0;
    transform: translate(-16px, 16px)
  }

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

.speak-page {
  background: #FCFEFF;
  color: #1F1E29;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0
}

.speak-page .title-zone {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 64px 16px 64px 64px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(127deg, #FCFEFF 0%, #03ffcf14 100%)
}

.speak-page .title-zone::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(circle, #1F1E29 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: .15;
  left: 64px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none
}

.speak-page .title-content {
  flex: 1;
  margin-right: 0;
  position: relative;
  z-index: 2
}

.speak-page .title-content h1 {
  font-size: 66px;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 700
}

.speak-page .title-content h1 .accent-phrase {
  background: linear-gradient(97deg, #03FFCF 0%, #1F1E29 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block
}

.speak-page .title-content h1 .accent-phrase::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: #03FFCF;
  animation: underline-draw .8s cubic-bezier(0.4, 0, 0.2, 1) .3s forwards
}

@keyframes underline-draw {
  to {
    width: 100%
  }
}

.speak-page .title-content p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
  opacity: .88
}

.speak-page .title-img-wrap {
  flex: 0 0 280px;
  height: 320px;
  position: relative;
  margin-left: 64px
}

.speak-page .title-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  filter: blur(0px);
  box-shadow: 0 4px 28px 1px #1f1e291a;
  transition: filter .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.speak-page .title-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background: linear-gradient(180deg, transparent 0%, #1f1e2926 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.speak-page .title-img-wrap:hover::before {
  opacity: 0
}

.speak-page .title-img-wrap:hover img {
  filter: blur(0px) brightness(1.05)
}

.speak-page .title-img-wrap::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 15px;
  box-shadow: inset 0 -8px 16px #fcfeff66;
  pointer-events: none;
  z-index: 2
}

@media (max-width: 1024px) {
  .speak-page .title-zone {
    padding: 64px 32px
  }

  .speak-page .title-img-wrap {
    flex: 0 0 240px;
    height: 280px;
    margin-left: 32px
  }

  .speak-page .title-content h1 {
    font-size: 50px
  }
}

@media (max-width: 640px) {
  .speak-page .title-zone {
    flex-direction: column;
    padding: 32px 16px
  }

  .speak-page .title-zone::before {
    left: 16px;
    width: 120px;
    height: 120px
  }

  .speak-page .title-img-wrap {
    display: none
  }

  .speak-page .title-content h1 {
    font-size: 36px
  }
}

.speak-page .events-section {
  padding: 64px 32px;
  background: #FCFEFF;
  position: relative
}

.speak-page .events-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, #03ffcf1f 0%, transparent 70%);
  pointer-events: none;
  animation: zone-shift 12s ease-in-out infinite
}

@keyframes zone-shift {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(16px)
  }
}

.speak-page .events-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.speak-page .events-header {
  margin-bottom: 64px
}

.speak-page .events-header h2 {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 8px;
  font-weight: 700;
  position: relative;
  display: inline-block
}

.speak-page .events-header h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #03FFCF 0%, transparent 100%)
}

.speak-page .events-header p {
  font-size: 14px;
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 680px;
  opacity: .84
}

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

.speak-page .event-card {
  background: #FCFEFF;
  border-radius: 15px;
  padding: 32px;
  box-shadow: 0 2px 3px 1px #1f1e2912;
  position: relative;
  overflow: hidden;
  transition: box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1), transform .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.speak-page .event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #03FFCF 0%, #1F1E29 100%);
  opacity: 0;
  transition: opacity .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.speak-page .event-card:hover::before {
  opacity: 1
}

.speak-page .event-card:hover {
  box-shadow: 0 8px 36px 1px #1f1e2921;
  transform: translateY(-4px)
}

.speak-page .event-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: linear-gradient(225deg, #03ffcf0f 0%, transparent 100%);
  border-radius: 0 15px 0 100%;
  pointer-events: none
}

.speak-page .event-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px
}

.speak-page .event-date {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  color: #03FFCF;
  background: #03ffcf1a;
  padding: 8px 16px;
  border-radius: 26px
}

.speak-page .event-type {
  font-size: 14px;
  line-height: 1.3;
  color: #1F1E29;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .08em
}

.speak-page .event-card h3 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 700;
  position: relative
}

.speak-page .event-card p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 16px;
  opacity: .88
}

.speak-page .event-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.3;
  color: #1F1E29;
  opacity: .76;
  margin-top: 16px
}

.speak-page .event-location::before {
  content: '';
  width: 18px;
  height: 18px;
  background: #03FFCF;
  border-radius: 9px;
  flex-shrink: 0;
  position: relative;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E") center / contain no-repeat;
  background: #03FFCF
}

.speak-page .events-grid .event-card:nth-child(1) {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 32px;
  padding: 32px
}

.speak-page .events-grid .event-card:nth-child(1) .event-main {
  display: flex;
  flex-direction: column
}

.speak-page .events-grid .event-card:nth-child(1) .event-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 2px solid #03ffcf33;
  padding-left: 32px
}

.speak-page .stat-item {
  display: flex;
  flex-direction: column
}

.speak-page .stat-value {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 700;
  color: #03FFCF;
  margin: 0 0 8px
}

.speak-page .stat-label {
  font-size: 14px;
  line-height: 1.3;
  color: #1F1E29;
  opacity: .7
}

@media (max-width: 1024px) {
  .speak-page .events-section {
    padding: 64px 16px
  }

  .speak-page .events-grid {
    grid-template-columns: 1fr
  }

  .speak-page .events-grid .event-card:nth-child(1) {
    grid-column: span 1;
    grid-template-columns: 1fr
  }

  .speak-page .events-grid .event-card:nth-child(1) .event-stats {
    border-left: none;
    border-top: 2px solid #03ffcf33;
    padding-left: 0;
    padding-top: 32px;
    flex-direction: row;
    justify-content: space-between
  }

  .speak-page .events-header h2 {
    font-size: 36px
  }

  .speak-page .event-card h3 {
    font-size: 36px
  }
}

@media (max-width: 640px) {
  .speak-page .events-section {
    padding: 32px 16px
  }

  .speak-page .events-header {
    margin-bottom: 32px
  }

  .speak-page .event-card {
    padding: 16px
  }

  .speak-page .events-grid .event-card:nth-child(1) {
    padding: 16px
  }

  .speak-page .events-grid .event-card:nth-child(1) .event-stats {
    flex-direction: column;
    gap: 16px
  }

  .speak-page .stat-value {
    font-size: 36px
  }
}

.speak-page .topics-section {
  padding: 64px 32px;
  background: linear-gradient(180deg, #FCFEFF 0%, #1f1e2905 100%);
  position: relative
}

.speak-page .topics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #03FFCF 50%, transparent 100%)
}

.speak-page .topics-inner {
  max-width: 1100px;
  margin: 0 auto
}

.speak-page .topics-header {
  margin-bottom: 64px;
  text-align: center
}

.speak-page .topics-header h2 {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 700
}

.speak-page .topics-header h2 .underlined-word {
  position: relative;
  display: inline-block
}

.speak-page .topics-header h2 .underlined-word::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #03FFCF
}

.speak-page .topics-header p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 720px;
  opacity: .84
}

.speak-page .topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative
}

.speak-page .topics-grid:hover .topic-card {
  opacity: .4
}

.speak-page .topics-grid .topic-card:hover {
  opacity: 1
}

.speak-page .topic-card {
  background: #FCFEFF;
  border-radius: 9px;
  padding: 32px;
  border: 1px solid #1f1e2914;
  position: relative;
  overflow: hidden;
  transition: opacity .22s cubic-bezier(0.0, 0, 0.2, 1), transform .22s cubic-bezier(0.0, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.speak-page .topic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, #03ffcf0a 100%);
  opacity: 0;
  transition: opacity .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.speak-page .topic-card:hover::before {
  opacity: 1
}

.speak-page .topic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 36px 1px #1f1e2921
}

.speak-page .topic-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #03FFCF 0%, #1F1E29 100%);
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden
}

.speak-page .topic-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, #fcfeff4d 0%, transparent 70%)
}

.speak-page .topic-icon svg {
  width: 28px;
  height: 28px;
  fill: #FCFEFF;
  position: relative;
  z-index: 1
}

.speak-page .topic-card h3 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 700;
  position: relative;
  z-index: 1
}

.speak-page .topic-card p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  opacity: .88;
  position: relative;
  z-index: 1
}

.speak-page .topic-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, #03ffcf26 50%, transparent 70%);
  transform: rotate(45deg);
  pointer-events: none
}

@media (max-width: 1024px) {
  .speak-page .topics-section {
    padding: 64px 16px
  }

  .speak-page .topics-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .speak-page .topics-header h2 {
    font-size: 36px
  }
}

@media (max-width: 640px) {
  .speak-page .topics-section {
    padding: 32px 16px
  }

  .speak-page .topics-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .speak-page .topics-header {
    margin-bottom: 32px
  }

  .speak-page .topic-card {
    padding: 16px
  }

  .speak-page .topic-card h3 {
    font-size: 36px
  }
}

.speak-page ::selection {
  background: linear-gradient(90deg, #1F1E29 0%, #03FFCF 100%);
  color: #FCFEFF
}

.speak-page input::placeholder,
.speak-page textarea::placeholder {
  font-weight: 300
}

.success-delivery {
  background: linear-gradient(127deg, #FCFEFF 0%, #03FFCF 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px
}

.success-delivery .confirm-wrapper {
  max-width: 680px;
  width: 100%;
  background: #FCFEFF;
  border-radius: 26px;
  padding: 64px 32px;
  box-shadow: 0 8px 36px 1px #1f1e2921;
  text-align: center
}

.success-delivery .status-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 32px;
  position: relative
}

.success-delivery .status-icon svg {
  width: 100%;
  height: 100%
}

.success-delivery .status-icon circle {
  fill: none;
  stroke: #03FFCF;
  stroke-width: 3;
  stroke-linecap: round
}

.success-delivery .status-icon path {
  fill: none;
  stroke: #1F1E29;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: checkmark-draw .26s cubic-bezier(0.4, 0, 0.2, 1) .22s forwards
}

@keyframes checkmark-draw {
  to {
    stroke-dashoffset: 0
  }
}

.success-delivery .confirm-title {
  font-size: 50px;
  line-height: 1.1;
  color: #1F1E29;
  margin: 0 0 16px
}

.success-delivery .confirm-msg {
  font-size: 14px;
  line-height: 1.55;
  color: #1F1E29;
  margin: 0 0 32px;
  opacity: .82
}

.success-delivery .confirm-msg span {
  display: block;
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55
}

.success-delivery .action-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.success-delivery .btn-primary {
  background: transparent;
  border: 2px solid #1F1E29;
  color: #1F1E29;
  padding: 16px 32px;
  font-size: 14px;
  line-height: 1.3;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: background .24s cubic-bezier(0.4, 0, 0.2, 1), color .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.success-delivery .btn-primary:hover {
  background: #1F1E29;
  color: #FCFEFF
}

.success-delivery .btn-secondary {
  background: transparent;
  border: 2px solid #03FFCF;
  color: #1F1E29;
  padding: 16px 32px;
  font-size: 14px;
  line-height: 1.3;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .22s cubic-bezier(0.0, 0, 0.2, 1), border-color .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.success-delivery .btn-secondary:hover {
  background: #03ffcf1f;
  border-color: #1F1E29
}

.success-delivery .info-detail {
  margin: 32px 0 0;
  padding: 32px;
  background: #03ffcf0f;
  border-radius: 15px;
  text-align: left
}

.success-delivery .info-detail h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #1F1E29;
  margin: 0 0 16px;
  position: relative;
  display: inline-block
}

.success-delivery .info-detail h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #03FFCF
}

.success-delivery .info-detail p {
  font-size: 14px;
  line-height: 1.75;
  color: #1F1E29;
  margin: 0 0 16px
}

.success-delivery .info-detail p:last-child {
  margin: 0
}

.success-delivery .info-detail ul {
  margin: 16px 0 0;
  padding: 0 0 0 32px;
  list-style: none
}

.success-delivery .info-detail ul li {
  font-size: 14px;
  line-height: 1.75;
  color: #1F1E29;
  margin: 0 0 8px;
  position: relative
}

.success-delivery .info-detail ul li::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 11px;
  width: 6px;
  height: 6px;
  background: #03FFCF;
  border-radius: 4px
}

@media (max-width: 640px) {
  .success-delivery .confirm-wrapper {
    padding: 32px 16px
  }

  .success-delivery .confirm-title {
    font-size: 36px
  }

  .success-delivery .action-group {
    flex-direction: column
  }

  .success-delivery .btn-primary,
  .success-delivery .btn-secondary {
    width: 100%
  }

  .success-delivery .info-detail {
    padding: 16px
  }

  .success-delivery .info-detail h2 {
    font-size: 36px
  }
}