html {
  box-sizing: border-box
}

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

body {
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans-serif
}

.top-bar {
  background: #39328D;
  padding: 8px 24px
}

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

.top-bar-pod .contact-strip {
  display: flex;
  align-items: center;
  gap: 24px
}

.top-bar-pod .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: #fff;
  letter-spacing: .01em;
  text-decoration: none;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.top-bar-pod .contact-item:hover,
.top-bar-pod .contact-item:focus {
  color: #16AC4F;
  outline: none
}

.top-bar-pod .contact-item:focus-visible {
  outline: 2px solid #16AC4F;
  outline-offset: 2px;
  border-radius: 6px
}

.top-bar-pod .contact-item svg {
  flex-shrink: 0
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #16ac4f2e;
  border: 1.5px solid #16AC4F;
  border-radius: 32px;
  padding: 4px 12px
}

.trust-badge-text {
  font-size: 14px;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  letter-spacing: .02em
}

.site-header {
  background: #fff;
  border-bottom: 2px solid #16AC4F;
  box-shadow: 0 4px 25px 0 #16ac4f14;
  position: relative
}

.header-plate {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px;
  border-bottom: 1.5px solid #39328d21
}

.brand-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none
}

.brand-logo-strip {
  background: #39328D;
  border-radius: 10px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 3px 0 #16ac4f12 0 4px 25px 0 #39328d21;
  border: 2px solid #16AC4F;
  flex-shrink: 0
}

.brand-logo-strip img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block
}

.brand-name-cell {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.brand-name-cell .brand-name {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #39328D;
  letter-spacing: .01em;
  line-height: 1.2
}

.brand-name-cell .brand-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: #58380D;
  letter-spacing: .02em;
  line-height: 1.2
}

.header-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #fff 60%, #16ac4f12 100%);
  border: 2px solid #16AC4F;
  border-radius: 18px;
  padding: 8px 24px;
  box-shadow: 0 2px 3px 0 #16ac4f12
}

.rating-stars {
  display: flex;
  gap: 4px
}

.star-shape {
  width: 18px;
  height: 18px
}

.rating-text-cell {
  display: flex;
  flex-direction: column;
  gap: 0
}

.rating-score {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  color: #39328D;
  line-height: 1.2;
  letter-spacing: .01em
}

.rating-label {
  font-size: 14px;
  color: #58380D;
  font-family: 'Nunito', sans-serif;
  letter-spacing: .01em;
  line-height: 1.2
}

.nav-row {
  display: flex;
  align-items: center;
  padding: 0
}

.primary-nav {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap
}

.primary-nav li {
  position: relative
}

.primary-nav li+li {
  border-left: 1.5px solid #39328d26
}

.primary-nav li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #39328D;
  text-decoration: none;
  letter-spacing: .01em;
  line-height: 1.2;
  min-height: 48px;
  position: relative;
  overflow: hidden;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.primary-nav li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #16AC4F;
  border-radius: 6px 6px 0 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.primary-nav li a::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #16ac4f12;
  transition: left .55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none
}

.primary-nav li a:hover::after,
.primary-nav li a:focus::after {
  left: 0
}

.primary-nav li a:hover::before,
.primary-nav li a:focus::before {
  transform: scaleX(1)
}

.primary-nav li a:hover,
.primary-nav li a:focus {
  color: #16AC4F;
  outline: none
}

.primary-nav li a:focus-visible {
  outline: 2px solid #16AC4F;
  outline-offset: 2px;
  border-radius: 6px
}

.primary-nav li a .nav-icon {
  font-size: 16px;
  flex-shrink: 0
}

.site-footer {
  background: linear-gradient(160deg, #58380D 0%, #39328D 100%);
  padding: 48px 0 0
}

.footer-plate {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px
}

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

.footer-logo-strip {
  background: #fff;
  border-radius: 10px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #16AC4F;
  box-shadow: 0 4px 25px 0 #16ac4f14;
  flex-shrink: 0
}

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

.footer-brand-name {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
  line-height: 1.2
}

.footer-brand-desc {
  font-size: 14px;
  color: #ffffffc7;
  font-family: 'Nunito', sans-serif;
  line-height: 1.8;
  letter-spacing: .01em
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px
}

.footer-contact-list li a,
.footer-contact-list li span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: #ffffffd9;
  text-decoration: none;
  letter-spacing: .01em;
  line-height: 1.8;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.footer-contact-list li a:hover,
.footer-contact-list li a:focus {
  color: #16AC4F;
  outline: none
}

.footer-contact-list li a:focus-visible {
  outline: 2px solid #16AC4F;
  outline-offset: 2px;
  border-radius: 6px
}

.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 4px
}

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

.footer-column-heading {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #16AC4F;
  letter-spacing: .02em;
  line-height: 1.2;
  padding-bottom: 8px;
  border-bottom: 1.5px solid #16ac4f4d
}

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

.footer-link-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: #ffffffd1;
  text-decoration: none;
  letter-spacing: .01em;
  line-height: 1.8;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 44px
}

.footer-link-list li a:hover,
.footer-link-list li a:focus {
  color: #fff;
  outline: none
}

.footer-link-list li a:focus-visible {
  outline: 2px solid #16AC4F;
  outline-offset: 2px;
  border-radius: 6px
}

.footer-link-list li a svg {
  flex-shrink: 0
}

.footer-bottom {
  border-top: 1.5px solid #ffffff1f;
  padding: 24px 0
}

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

.footer-copyright {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: #ffffff8c;
  letter-spacing: .01em;
  line-height: 1.8
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap
}

.footer-legal-nav a {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #fff9;
  text-decoration: none;
  letter-spacing: .01em;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1), background .45s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 44px;
  display: flex;
  align-items: center
}

.footer-legal-nav a:hover,
.footer-legal-nav a:focus {
  color: #fff;
  background: #16ac4f26;
  outline: none
}

.footer-legal-nav a:focus-visible {
  outline: 2px solid #16AC4F;
  outline-offset: 2px
}

.footer-legal-sep {
  width: 4px;
  height: 4px;
  border-radius: 0;
  background: #ffffff40;
  display: inline-block;
  flex-shrink: 0
}

.cookie-popup-anchor {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1200;
  max-width: 340px;
  width: calc(100vw - 48px)
}

@media (max-width: 1280px) {
  .header-plate {
    padding: 0 24px
  }

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

@media (max-width: 768px) {
  .top-bar-pod {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }

  .top-bar-pod .contact-strip {
    flex-wrap: wrap;
    gap: 12px
  }

  .brand-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0 12px
  }

  .primary-nav li a {
    padding: 12px 16px;
    font-size: 14px
  }

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

  .footer-bottom-pod {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .cookie-popup-anchor {
    left: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
    width: calc(100vw - 24px)
  }
}

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

.doc-body h1 {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #58380D;
  margin-bottom: 48px;
  margin-top: 0
}

.doc-body h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #39328D;
  margin-top: 48px;
  margin-bottom: 24px
}

.doc-body h3 {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: .02em;
  color: #58380D;
  margin-top: 24px;
  margin-bottom: 12px
}

.doc-body h4 {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .02em;
  color: #39328D;
  margin-top: 24px;
  margin-bottom: 8px
}

.doc-body h5 {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .02em;
  color: #58380D;
  margin-top: 24px;
  margin-bottom: 8px
}

.doc-body h6 {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .02em;
  color: #39328D;
  margin-top: 24px;
  margin-bottom: 8px
}

.doc-body ul {
  margin-top: 12px;
  margin-bottom: 24px;
  padding-left: 24px;
  list-style: none
}

.doc-body ol {
  margin-top: 12px;
  margin-bottom: 24px;
  padding-left: 24px;
  list-style: none;
  counter-reset: policy-counter
}

.doc-body ol li {
  counter-increment: policy-counter
}

.doc-body ol li::before {
  content: counter(policy-counter) ".";
  color: #16AC4F;
  font-size: 14px;
  font-weight: 700;
  margin-right: 8px;
  letter-spacing: .01em
}

.doc-body ul li {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #2a1f0a;
  margin-bottom: 8px
}

.doc-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16AC4F
}

.doc-body ol li {
  padding-left: 8px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #2a1f0a;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start
}

.doc-body em,
.doc-body i {
  font-style: italic;
  color: #39328D
}

.doc-body table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  margin-bottom: 48px;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  box-shadow: 0 4px 25px 0 #16ac4f14;
  border-radius: 10px;
  overflow: hidden
}

.doc-body thead {
  background: #39328D
}

.doc-body thead th {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 12px 24px;
  text-align: left
}

.doc-body tbody tr {
  border-bottom: 1px solid #58380d1f;
  transition: background-color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

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

.doc-body tbody tr:nth-child(even) {
  background: #16ac4f0a
}

.doc-body tbody tr:hover {
  background: #39328d0f
}

.doc-body td {
  padding: 12px 24px;
  color: #2a1f0a;
  font-size: 14px;
  line-height: 1.8;
  vertical-align: top
}

.doc-body th {
  padding: 12px 24px
}

.doc-body hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #16AC4F 0%, #39328d4d 60%, transparent 100%);
  margin-top: 48px;
  margin-bottom: 48px;
  border-radius: 6px
}

.doc-body div {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #2a1f0a;
  margin-bottom: 12px
}

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

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

  .doc-body h2 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px
  }

  .doc-body h3 {
    font-size: 16px
  }

  .doc-body table {
    display: block;
    overflow-x: auto;
    border-radius: 10px
  }

  .doc-body td,
  .doc-body thead th {
    padding: 8px 12px
  }

  .doc-body hr {
    margin-top: 24px;
    margin-bottom: 24px
  }
}

@media (max-width: 1280px) {
  .doc-body {
    padding: 96px 48px
  }
}

.experts-opinion-detail {
  background: #fff;
  color: #1a1a1a;
  overflow-x: clip
}

.experts-opinion-detail .breadcrumb-bar {
  background: #f5f3ef;
  border-bottom: 1.5px solid #e8e2d8;
  padding: 12px 0
}

.experts-opinion-detail .breadcrumb-bar .breadcrumb-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.experts-opinion-detail .breadcrumb-bar a {
  font-size: 14px;
  line-height: 1.8;
  color: #39328D;
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.experts-opinion-detail .breadcrumb-bar a:hover {
  color: #16AC4F
}

.experts-opinion-detail .breadcrumb-bar .breadcrumb-sep {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.experts-opinion-detail .breadcrumb-bar .breadcrumb-sep svg {
  display: block
}

.experts-opinion-detail .breadcrumb-bar .breadcrumb-current {
  font-size: 14px;
  line-height: 1.8;
  color: #58380D;
  letter-spacing: .01em;
  opacity: .75
}

.experts-opinion-detail .article-top {
  background: #f5f3ef;
  padding: 48px 0 0
}

.experts-opinion-detail .article-top .top-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px
}

.experts-opinion-detail .article-top .tag-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center
}

.experts-opinion-detail .article-top .tag-pill {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  padding: 4px 12px;
  border-radius: 6px;
  border: 2px solid #16AC4F;
  color: #16AC4F;
  background: transparent;
  text-transform: none;
  transition: background .55s cubic-bezier(0.22, 1, 0.36, 1), color .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.experts-opinion-detail .article-top .tag-pill:hover {
  background: #16AC4F;
  color: #fff
}

.experts-opinion-detail .article-top .tag-pill.category {
  border-color: #39328D;
  color: #39328D
}

.experts-opinion-detail .article-top .tag-pill.category:hover {
  background: #39328D;
  color: #fff
}

.experts-opinion-detail .article-top .article-heading {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #2a1f0e;
  text-align: center;
  max-width: 820px
}

.experts-opinion-detail .article-top .article-heading strong {
  font-size: 66px;
  line-height: 1.2;
  color: #16AC4F;
  display: block
}

.experts-opinion-detail .article-top .article-subtitle {
  font-size: 20px;
  line-height: 1.8;
  color: #58380D;
  text-align: center;
  max-width: 680px;
  letter-spacing: .01em
}

.experts-opinion-detail .article-top .meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center
}

.experts-opinion-detail .article-top .meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.8;
  color: #58380D;
  letter-spacing: .01em
}

.experts-opinion-detail .article-top .meta-item svg {
  flex-shrink: 0;
  opacity: .7
}

.experts-opinion-detail .article-top .meta-divider {
  width: 4px;
  height: 4px;
  border-radius: 0;
  background: #16AC4F;
  flex-shrink: 0
}

.experts-opinion-detail .article-top .hero-image-wrap {
  width: 100%;
  max-width: 900px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 60px 0 #16ac4f24
}

.experts-opinion-detail .article-top .hero-image-wrap img {
  width: 100%;
  max-width: 100%;
  display: block;
  object-fit: contain;
  border-radius: 18px
}

.experts-opinion-detail .article-top .hero-image-wrap .image-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(197deg, #16ac4f21 0%, #58380d12 60%, transparent 100%);
  border-radius: 18px;
  pointer-events: none
}

.experts-opinion-detail .article-top .hero-image-wrap .noise-layer {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px
}

.experts-opinion-detail .article-top .section-divider {
  width: 100%;
  max-width: 1140px;
  margin: 48px auto 0;
  height: 2px;
  display: flex;
  flex-direction: row;
  align-items: center
}

.experts-opinion-detail .article-top .section-divider .div-line {
  flex: 1;
  height: 1.5px;
  background: #e0d9ce
}

.experts-opinion-detail .article-top .section-divider .div-accent {
  width: 48px;
  height: 2px;
  background: #16AC4F;
  border-radius: 0
}

.experts-opinion-detail .article-body-section {
  background: #fff;
  padding: 48px 0 96px;
  position: relative
}

.experts-opinion-detail .article-body-section .body-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start
}

.experts-opinion-detail .article-body-section .article-text {
  min-width: 0
}

.experts-opinion-detail .article-body-section .article-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #2a1f0e;
  letter-spacing: .01em;
  margin-bottom: 24px
}

.experts-opinion-detail .article-body-section .article-text h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #2a1f0e;
  letter-spacing: .01em;
  margin-bottom: 12px;
  margin-top: 48px
}

.experts-opinion-detail .article-body-section .article-text em {
  color: #39328D;
  font-style: italic
}

.experts-opinion-detail .article-body-section .article-text ol {
  padding-left: 24px;
  margin-bottom: 24px
}

.experts-opinion-detail .article-body-section .article-text ol li {
  font-size: 16px;
  line-height: 1.8;
  color: #2a1f0e;
  letter-spacing: .01em;
  margin-bottom: 8px
}

.experts-opinion-detail .article-body-section .article-text time {
  font-size: 14px;
  color: #58380D;
  opacity: .8;
  letter-spacing: .02em
}

.experts-opinion-detail .article-body-section .sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px
}

.experts-opinion-detail .article-body-section .sidebar .author-card {
  border: 2px solid #e8e2d8;
  border-radius: 18px;
  padding: 24px;
  background: #f5f3ef;
  box-shadow: 0 4px 25px 0 #16ac4f14;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.experts-opinion-detail .article-body-section .sidebar .author-card .author-label {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #16AC4F;
  text-transform: uppercase;
  font-weight: 700
}

.experts-opinion-detail .article-body-section .sidebar .author-card .author-name-display {
  font-size: 20px;
  line-height: 1.2;
  color: #2a1f0e;
  letter-spacing: .01em;
  font-weight: 700
}

.experts-opinion-detail .article-body-section .sidebar .author-card .author-name-display span {
  color: #39328D
}

.experts-opinion-detail .article-body-section .sidebar .author-card .author-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #58380D;
  letter-spacing: .01em
}

.experts-opinion-detail .article-body-section .sidebar .views-card {
  border: 2px solid #39328D;
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 2px 3px 0 #16ac4f12;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start
}

.experts-opinion-detail .article-body-section .sidebar .views-card .views-label {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #39328D;
  text-transform: uppercase;
  font-weight: 700
}

.experts-opinion-detail .article-body-section .sidebar .views-card .views-number {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 4px
}

.experts-opinion-detail .article-body-section .sidebar .views-card .views-number .views-int {
  font-size: 50px;
  line-height: 1.2;
  color: #2a1f0e;
  letter-spacing: .01em;
  font-weight: 700
}

.experts-opinion-detail .article-body-section .sidebar .views-card .views-number .views-frac {
  font-size: 20px;
  line-height: 1.2;
  color: #16AC4F;
  letter-spacing: .01em;
  font-weight: 700
}

.experts-opinion-detail .article-body-section .sidebar .views-card .views-sub {
  font-size: 14px;
  line-height: 1.8;
  color: #58380D;
  letter-spacing: .01em
}

.experts-opinion-detail .article-body-section .sidebar .activity-card {
  border: 2px solid #e8e2d8;
  border-radius: 18px;
  padding: 24px;
  background: #f5f3ef;
  box-shadow: 0 4px 25px 0 #58380d14;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.experts-opinion-detail .article-body-section .sidebar .activity-card .activity-title {
  font-size: 16px;
  line-height: 1.2;
  color: #2a1f0e;
  letter-spacing: .01em;
  font-weight: 700
}

.experts-opinion-detail .article-body-section .sidebar .activity-card .feed-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.experts-opinion-detail .article-body-section .sidebar .activity-card .feed-entry {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.experts-opinion-detail .article-body-section .sidebar .activity-card .feed-entry .feed-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #fff;
  border: 1.5px solid #e8e2d8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.experts-opinion-detail .article-body-section .sidebar .activity-card .feed-entry .feed-icon svg {
  display: block
}

.experts-opinion-detail .article-body-section .sidebar .activity-card .feed-entry .feed-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0
}

.experts-opinion-detail .article-body-section .sidebar .activity-card .feed-entry .feed-body .feed-text {
  font-size: 14px;
  line-height: 1.8;
  color: #2a1f0e;
  letter-spacing: .01em
}

.experts-opinion-detail .article-body-section .sidebar .activity-card .feed-entry .feed-body .feed-time {
  font-size: 14px;
  line-height: 1.2;
  color: #58380D;
  opacity: .7;
  letter-spacing: .01em
}

.experts-opinion-detail .article-body-section .sidebar .cta-card {
  border: 2.5px solid #16AC4F;
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 4px 25px 0 #16ac4f14;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.experts-opinion-detail .article-body-section .sidebar .cta-card .cta-heading {
  font-size: 20px;
  line-height: 1.2;
  color: #2a1f0e;
  letter-spacing: .01em;
  font-weight: 700
}

.experts-opinion-detail .article-body-section .sidebar .cta-card .cta-text {
  font-size: 14px;
  line-height: 1.8;
  color: #58380D;
  letter-spacing: .01em
}

.experts-opinion-detail .article-body-section .sidebar .cta-card .cta-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  border: 2.5px solid #16AC4F;
  color: #16AC4F;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .02em;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color .55s cubic-bezier(0.22, 1, 0.36, 1), border-color .55s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: center
}

.experts-opinion-detail .article-body-section .sidebar .cta-card .cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #16AC4F;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 8px;
  z-index: 0
}

.experts-opinion-detail .article-body-section .sidebar .cta-card .cta-button:hover::before {
  transform: scaleX(1)
}

.experts-opinion-detail .article-body-section .sidebar .cta-card .cta-button:hover {
  color: #fff
}

.experts-opinion-detail .article-body-section .sidebar .cta-card .cta-button .btn-label {
  position: relative;
  z-index: 1
}

.experts-opinion-detail .article-body-section .sidebar .cta-card .cta-button:focus-visible {
  outline: 3px solid #39328D;
  outline-offset: 3px
}

.experts-opinion-detail .article-body-section .split-bg-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(197deg, #f5f3ef 0%, #eceae4 100%);
  pointer-events: none;
  z-index: 0
}

.experts-opinion-detail .article-body-section .body-inner {
  position: relative;
  z-index: 1
}

.experts-opinion-detail .article-body-section .article-text .blur-group .feed-entry:not(:hover) {
  transition: filter .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.experts-opinion-detail .article-body-section .sidebar .activity-card .feed-list:hover .feed-entry {
  filter: blur(1.5px);
  transition: filter .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.experts-opinion-detail .article-body-section .sidebar .activity-card .feed-list:hover .feed-entry:hover {
  filter: blur(0px)
}

.experts-opinion-detail .pulse-element {
  animation: soft-pulse 3.2s ease-in-out infinite
}

@keyframes soft-pulse {

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

  50% {
    transform: scale(1.02)
  }
}

.experts-opinion-detail .article-top .hero-image-wrap {
  animation: soft-pulse 3.8s ease-in-out infinite
}

@media (max-width: 1280px) {
  .experts-opinion-detail .article-body-section .body-inner {
    grid-template-columns: 1fr 280px;
    gap: 24px
  }

  .experts-opinion-detail .article-top .article-heading {
    font-size: 36px
  }

  .experts-opinion-detail .article-top .article-heading strong {
    font-size: 50px
  }
}

@media (max-width: 768px) {
  .experts-opinion-detail .article-body-section .body-inner {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .experts-opinion-detail .article-body-section .sidebar {
    position: static
  }

  .experts-opinion-detail .article-top .article-heading {
    font-size: 36px
  }

  .experts-opinion-detail .article-top .article-heading strong {
    font-size: 36px
  }

  .experts-opinion-detail .article-top {
    padding: 24px 0 0
  }

  .experts-opinion-detail .article-body-section {
    padding: 24px 0 48px
  }
}

.about-us {
  overflow-x: clip;
  width: 100%
}

.about-us .strip-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative
}

.about-us .strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.3) brightness(0.85);
  display: block;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.about-us .strip-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(197deg, #16ac4f2e 0%, #39328d14 100%);
  pointer-events: none
}

.about-us .title-zone {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px;
  position: relative
}

.about-us .title-zone::before {
  content: '';
  display: block;
  width: 3px;
  height: 48px;
  background: #16AC4F;
  margin-bottom: 24px
}

.about-us .title-label {
  font-size: 14px;
  letter-spacing: .08em;
  color: #58380D;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.2
}

.about-us .title-statement {
  font-size: 66px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a1a00;
  color: #2a1f00;
  margin: 0 0 12px;
  max-width: 700px
}

.about-us .title-statement em {
  font-style: normal;
  font-size: 50px;
  color: #39328D
}

.about-us .title-sub {
  font-size: 20px;
  line-height: 1.8;
  color: #3a3a3a;
  max-width: 520px;
  letter-spacing: .01em
}

.about-us .divider-triangle {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px
}

.about-us .divider-triangle svg {
  display: block;
  width: 100%
}

.about-us .dual-narrative {
  background: #f4f1eb;
  padding: 96px 24px
}

.about-us .dual-narrative-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 48px;
  align-items: start
}

.about-us .narrative-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.about-us .narrative-right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.about-us .story-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 25px 0 #16ac4f14;
  position: relative;
  overflow: hidden;
  transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.about-us .story-card:hover {
  box-shadow: 0 10px 60px 0 #16ac4f24;
  transform: translateY(-4px)
}

.about-us .story-card.accent-green {
  border-top: 3px solid #16AC4F
}

.about-us .story-card.accent-brown {
  border-top: 3px solid #58380D
}

.about-us .story-card.accent-purple {
  border-top: 3px solid #39328D
}

.about-us .story-card.full-span {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center
}

.about-us .card-image-wrap {
  border-radius: 10px;
  overflow: hidden;
  height: 220px
}

.about-us .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.about-us .card-image-wrap:hover img {
  transform: scale(1.05)
}

.about-us .card-heading {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #2a1f00;
  margin: 0 0 12px
}

.about-us .card-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  letter-spacing: .01em;
  margin: 0
}

.about-us .stat-block {
  background: #39328D;
  border-radius: 18px;
  padding: 24px;
  color: #fff;
  box-shadow: 0 4px 25px 0 #39328d14
}

.about-us .stat-number {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #16AC4F;
  display: block;
  margin-bottom: 8px
}

.about-us .stat-label {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .02em;
  color: #ffffffd9
}

.about-us .detail-block {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 3px 0 #16ac4f12
}

.about-us .detail-block-heading {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #58380D;
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 14px
}

.about-us .detail-block-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin: 0;
  letter-spacing: .01em
}

.about-us .geometric-motif {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  pointer-events: none;
  opacity: .07
}

.about-us .card-diagonal-reveal {
  position: relative;
  overflow: hidden
}

.about-us .card-diagonal-reveal::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(197deg, #16ac4f0f 0%, transparent 60%);
  transition: opacity .55s ease-in-out, transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translate(-10%, -10%);
  pointer-events: none
}

.about-us .card-diagonal-reveal:hover::before {
  opacity: 1;
  transform: translate(0, 0)
}

.about-us .zoom-on-load {
  animation: zoom-settle .7s cubic-bezier(0.22, 1, 0.36, 1) both
}

@keyframes zoom-settle {
  from {
    transform: scale(1.06);
    opacity: .7
  }

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

@media (max-width: 1280px) {
  .about-us .dual-narrative-inner {
    grid-template-columns: 1fr
  }

  .about-us .narrative-right {
    flex-direction: row
  }

  .about-us .stat-block,
  .about-us .detail-block {
    flex: 1
  }
}

@media (max-width: 768px) {
  .about-us .title-statement {
    font-size: 36px
  }

  .about-us .title-statement em {
    font-size: 36px
  }

  .about-us .strip-image {
    height: 120px
  }

  .about-us .narrative-left {
    grid-template-columns: 1fr
  }

  .about-us .story-card.full-span {
    grid-template-columns: 1fr
  }

  .about-us .narrative-right {
    flex-direction: column
  }

  .about-us .dual-narrative {
    padding: 48px 24px
  }

  .about-us .card-image-wrap {
    height: 160px
  }
}

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

.contact-us .top-band {
  background: #f4f1ec;
  padding: 96px 24px;
  position: relative
}

.contact-us .top-band::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0
}

.contact-us .top-band-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px
}

.contact-us .top-text-area {
  flex: 1 1 0;
  position: relative;
  z-index: 1
}

.contact-us .dot-grid {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 180px;
  height: 120px;
  z-index: 0;
  pointer-events: none
}

.contact-us .top-text-area .text-body {
  position: relative;
  z-index: 1
}

.contact-us .page-label {
  display: inline-block;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #16AC4F;
  border: 2px solid #16AC4F;
  border-radius: 6px;
  padding: 4px 12px;
  margin-bottom: 24px;
  font-weight: 600
}

.contact-us .page-heading {
  font-size: 66px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a1408;
  margin: 0 0 24px;
  font-weight: 800
}

.contact-us .page-heading .accent-word {
  color: #16AC4F
}

.contact-us .page-sub {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #3a2e1a;
  margin: 0 0 48px;
  max-width: 480px
}

.contact-us .contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.contact-us .contact-details-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.contact-us .detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid #16AC4F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.contact-us .contact-details-list li:hover .detail-icon {
  background: #16AC4F;
  border-color: #16AC4F
}

.contact-us .detail-icon svg {
  width: 18px;
  height: 18px;
  transition: stroke .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.contact-us .contact-details-list li:hover .detail-icon svg {
  stroke: #fff
}

.contact-us .detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.contact-us .detail-label {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #58380D;
  font-weight: 600;
  text-transform: uppercase
}

.contact-us .detail-value {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #1a1408
}

.contact-us .detail-value a {
  color: #1a1408;
  text-decoration: none;
  border-bottom: 1px solid #16AC4F;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.contact-us .detail-value a:hover {
  color: #16AC4F
}

.contact-us .top-image-area {
  flex: 0 0 420px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 60px 0 #16ac4f24
}

.contact-us .top-image-area img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.contact-us .top-image-area:hover img {
  transform: scale(1.04)
}

.contact-us .image-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(197deg, #58380d61 0%, #58380d0d 55%, #16ac4f2e 100%);
  border-radius: 18px;
  pointer-events: none
}

.contact-us .double-border-accent {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px
}

.contact-us .double-border-accent .line-outer {
  height: 6px;
  border-radius: 0;
  background: #39328D;
  flex: 1 1 0
}

.contact-us .double-border-accent .line-inner {
  height: 2px;
  border-radius: 0;
  background: #16AC4F;
  flex: 1 1 0;
  margin-top: 2px
}

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

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

.contact-us .form-band {
  background: #fff;
  padding: 96px 24px
}

.contact-us .form-band-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 96px;
  align-items: flex-start
}

.contact-us .form-side {
  flex: 1 1 0
}

.contact-us .form-meta {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 48px
}

.contact-us .form-heading {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a1408;
  margin: 0 0 12px;
  font-weight: 800
}

.contact-us .form-heading .accent-word {
  color: #39328D
}

.contact-us .form-desc {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #3a2e1a;
  margin: 0 0 48px
}

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

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

.contact-us .field-group label {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #58380D;
  font-weight: 600
}

.contact-us .field-group input,
.contact-us .field-group select,
.contact-us .field-group textarea {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #1a1408;
  background: #f4f1ec;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 12px 24px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1), background .5s cubic-bezier(0.22, 1, 0.36, 1);
  appearance: none;
  -webkit-appearance: none
}

.contact-us .field-group input::placeholder,
.contact-us .field-group textarea::placeholder {
  color: #1a140866
}

.contact-us .field-group input:focus,
.contact-us .field-group select:focus,
.contact-us .field-group textarea:focus {
  border-color: #16AC4F;
  background: #fff
}

.contact-us .field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2358380D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
  cursor: pointer
}

.contact-us .field-group select option {
  color: #1a1408;
  background: #fff
}

.contact-us .field-group textarea {
  resize: vertical;
  min-height: 120px
}

.contact-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.contact-us .privacy-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: #16AC4F;
  margin-top: 2px;
  cursor: pointer;
  border-radius: 6px
}

.contact-us .privacy-text {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #3a2e1a
}

.contact-us .privacy-text a {
  color: #39328D;
  text-decoration: none;
  border-bottom: 1px solid #39328D;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.contact-us .privacy-text a:hover {
  color: #16AC4F;
  border-bottom-color: #16AC4F
}

.contact-us .submit-button {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #16AC4F;
  background: #fff;
  border: 3px solid #16AC4F;
  border-radius: 10px;
  padding: 12px 48px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  transition: color .55s cubic-bezier(0.22, 1, 0.36, 1);
  align-self: flex-start
}

.contact-us .submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #16AC4F;
  transition: left .55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0
}

.contact-us .submit-button:hover::before {
  left: 0
}

.contact-us .submit-button:hover {
  color: #fff
}

.contact-us .submit-button span {
  position: relative;
  z-index: 1
}

.contact-us .submit-button:focus {
  outline: 3px solid #39328D;
  outline-offset: 3px
}

.contact-us .meta-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 18px;
  border: 2px solid #16AC4F;
  background: #f4f1ec;
  box-shadow: 0 4px 25px 0 #16ac4f14
}

.contact-us .meta-block-label {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #58380D;
  font-weight: 700;
  text-transform: uppercase
}

.contact-us .meta-block-value {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #1a1408
}

.contact-us .meta-block-value a {
  color: #1a1408;
  text-decoration: none;
  border-bottom: 1px solid #16AC4F;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.contact-us .meta-block-value a:hover {
  color: #16AC4F
}

.contact-us .step-tracker {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px;
  border-radius: 18px;
  background: #39328D;
  box-shadow: 0 4px 25px 0 #39328d24
}

.contact-us .step-tracker-title {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #ffffffb3;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px
}

.contact-us .step-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  position: relative
}

.contact-us .step-row:not(:last-child) {
  padding-bottom: 24px
}

.contact-us .step-row:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 32px;
  width: 2px;
  height: calc(100% - 8px);
  background: #fff3
}

.contact-us .step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  border: 2px solid #16AC4F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.2;
  color: #16AC4F;
  font-weight: 700;
  background: transparent;
  flex-shrink: 0
}

.contact-us .step-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px
}

.contact-us .step-name {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  font-weight: 600
}

.contact-us .step-desc {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #ffffffa6
}

.contact-us .dot-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px
}

.contact-us .dot-row .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16AC4F;
  flex-shrink: 0
}

.contact-us .dot-row .dot.secondary {
  background: #58380D
}

.contact-us .dot-row .dot.tertiary {
  background: #39328D
}

.contact-us .reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideFromLeft .65s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.contact-us .reveal-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slideFromRight .65s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.contact-us .reveal-left.delay-1 {
  animation-delay: .1s
}

.contact-us .reveal-left.delay-2 {
  animation-delay: .25s
}

.contact-us .reveal-right.delay-1 {
  animation-delay: .1s
}

.contact-us .reveal-right.delay-2 {
  animation-delay: .3s
}

.contact-us .reveal-right.delay-3 {
  animation-delay: .45s
}

@keyframes slideFromLeft {
  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes slideFromRight {
  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@media (max-width: 1280px) {
  .contact-us .top-band-inner {
    gap: 48px
  }

  .contact-us .top-image-area {
    flex: 0 0 360px
  }

  .contact-us .form-band-inner {
    gap: 48px
  }

  .contact-us .form-meta {
    flex: 0 0 280px
  }
}

@media (max-width: 768px) {
  .contact-us .top-band {
    padding: 48px 24px
  }

  .contact-us .top-band-inner {
    flex-direction: column;
    gap: 48px
  }

  .contact-us .top-image-area {
    flex: unset;
    width: 100%
  }

  .contact-us .page-heading {
    font-size: 36px
  }

  .contact-us .form-band {
    padding: 48px 24px
  }

  .contact-us .form-band-inner {
    flex-direction: column;
    gap: 48px
  }

  .contact-us .form-meta {
    flex: unset;
    width: 100%
  }

  .contact-us .form-heading {
    font-size: 36px
  }

  .contact-us .submit-button {
    width: 100%;
    text-align: center
  }
}

.entry-page {
  background: #fff;
  overflow-x: clip
}

.entry-page .dot-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center
}

.entry-page .dot-row span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 32px;
  background: #16AC4F;
  opacity: .5
}

.entry-page .dot-row span:nth-child(2) {
  background: #58380D;
  opacity: .4
}

.entry-page .dot-row span:nth-child(3) {
  background: #39328D;
  opacity: .35
}

.entry-page .dot-row span:nth-child(4) {
  background: #16AC4F;
  opacity: .25
}

.entry-page .dot-row span:nth-child(5) {
  background: #58380D;
  opacity: .2
}

.entry-page .wave-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.entry-page .wave-divider svg {
  display: block;
  width: 100%
}

.entry-page .wave-divider-2 {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.entry-page .wave-divider-2 svg {
  display: block;
  width: 100%
}

.entry-page .title-block {
  position: relative;
  padding: 96px 24px 48px;
  border-top: 3px solid #16AC4F;
  border-bottom: 3px solid #58380D;
  background: #f5f3ee;
  animation: bg-oscillate 6s ease-in-out infinite
}

@keyframes bg-oscillate {
  0% {
    background-color: #f5f3ee
  }

  50% {
    background-color: #eef4f0
  }

  100% {
    background-color: #f5f3ee
  }
}

.entry-page .title-block .dot-scatter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.entry-page .title-block .dot-scatter::before {
  content: '';
  position: absolute;
  top: 18%;
  left: 8%;
  width: 5px;
  height: 5px;
  border-radius: 32px;
  background: #16AC4F;
  opacity: .18;
  box-shadow: 60px 30px 0 0 #16ac4f1f 120px -10px 0 0 #58380d1a 200px 50px 0 0 #39328d17 300px 10px 0 0 #16ac4f14 400px 60px 0 0 #58380d12 500px -20px 0 0 #39328d0f 650px 40px 0 0 #16ac4f0d
}

.entry-page .title-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center
}

.entry-page .title-image-col {
  position: relative
}

.entry-page .title-image-col .image-glow {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 60px 0 #16ac4f24 0 4px 25px 0 #16ac4f14;
  position: relative
}

.entry-page .title-image-col .image-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(197deg, #ffffff38 0%, #ffffff38 60%, #16ac4f14 100%);
  pointer-events: none
}

.entry-page .title-image-col img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px
}

.entry-page .title-text-col {
  padding-left: 24px
}

.entry-page .title-text-col .label-tag {
  display: inline-block;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #58380D;
  border: 2px solid #58380D;
  border-radius: 6px;
  padding: 4px 12px;
  margin-bottom: 24px;
  background: transparent
}

.entry-page .title-text-col h1 {
  font-size: 66px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a1500;
  margin: 0 0 24px
}

.entry-page .title-text-col h1 .word-big {
  font-size: 66px;
  color: #16AC4F;
  display: block
}

.entry-page .title-text-col h1 .word-rest {
  font-size: 36px;
  color: #2a2200;
  display: block;
  letter-spacing: .02em
}

.entry-page .title-text-col .desc {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #3a3020;
  margin: 0 0 24px;
  max-width: 480px
}

.entry-page .title-text-col .desc-second {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #3a3020;
  margin: 0 0 24px;
  max-width: 480px
}

.entry-page .title-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px
}

.entry-page .btn-primary {
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #16AC4F;
  background: transparent;
  border: 3px solid #16AC4F;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  overflow: hidden;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  display: inline-block
}

.entry-page .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #16AC4F;
  transform: translateX(-101%);
  transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0
}

.entry-page .btn-primary:hover::before,
.entry-page .btn-primary:focus::before {
  transform: translateX(0)
}

.entry-page .btn-primary:hover,
.entry-page .btn-primary:focus {
  color: #fff;
  outline: none
}

.entry-page .btn-primary span {
  position: relative;
  z-index: 1
}

.entry-page .btn-secondary {
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #58380D;
  background: transparent;
  border: 3px solid #58380D;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  overflow: hidden;
  transition: color .6s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  display: inline-block
}

.entry-page .btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #58380D;
  transform: translateX(-101%);
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0
}

.entry-page .btn-secondary:hover::before,
.entry-page .btn-secondary:focus::before {
  transform: translateX(0)
}

.entry-page .btn-secondary:hover,
.entry-page .btn-secondary:focus {
  color: #fff;
  outline: none
}

.entry-page .btn-secondary span {
  position: relative;
  z-index: 1
}

.entry-page .community-block {
  padding: 0;
  background: #fff
}

.entry-page .community-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 24px 48px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start
}

.entry-page .community-text {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.entry-page .community-text h2 {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a1500;
  margin: 0
}

.entry-page .community-text h2 .accent {
  color: #39328D
}

.entry-page .community-text .para {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #3a3020;
  margin: 0
}

.entry-page .community-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px
}

.entry-page .community-card {
  border: 2px solid #16AC4F;
  border-radius: 10px;
  padding: 12px 24px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  background: #f9fdf9;
  box-shadow: 0 2px 3px 0 #16ac4f12;
  transition: box-shadow .45s cubic-bezier(0.22, 1, 0.36, 1), border-color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.entry-page .community-card:hover {
  box-shadow: 0 4px 25px 0 #16ac4f14;
  border-color: #58380D
}

.entry-page .community-card .card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #16AC4F;
  display: flex;
  align-items: center;
  justify-content: center
}

.entry-page .community-card .card-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff
}

.entry-page .community-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.entry-page .community-card .card-body h5 {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #1a1500;
  margin: 0
}

.entry-page .community-card .card-body p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #58380D;
  margin: 0
}

.entry-page .community-image-col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.entry-page .community-image-col .img-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 60px 0 #58380d24;
  border-top: 3px solid #39328D;
  border-bottom: 3px solid #16AC4F
}

.entry-page .community-image-col img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px
}

.entry-page .community-image-col .stat-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border: 2px solid #39328D;
  border-radius: 10px;
  background: #f7f6ff
}

.entry-page .community-image-col .stat-row .stat-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px solid #39328d1f
}

.entry-page .community-image-col .stat-row .stat-item:last-child {
  border-bottom: none
}

.entry-page .community-image-col .stat-row .stat-label {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #3a3020
}

.entry-page .community-image-col .stat-row .stat-value {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #39328D;
  font-weight: 700
}

.entry-page .char-hover {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap
}

.entry-page .char-hover .ch {
  display: inline-block;
  transition: color .4s ease-in-out;
  color: inherit
}

.entry-page .community-text h2:hover .ch:nth-child(1) {
  color: #16AC4F;
  transition-delay: 0s
}

.entry-page .community-text h2:hover .ch:nth-child(2) {
  color: #16AC4F;
  transition-delay: .03s
}

.entry-page .community-text h2:hover .ch:nth-child(3) {
  color: #16AC4F;
  transition-delay: .06s
}

.entry-page .community-text h2:hover .ch:nth-child(4) {
  color: #16AC4F;
  transition-delay: .09s
}

.entry-page .community-text h2:hover .ch:nth-child(5) {
  color: #16AC4F;
  transition-delay: .12s
}

.entry-page .community-text h2:hover .ch:nth-child(6) {
  color: #16AC4F;
  transition-delay: .15s
}

.entry-page .community-text h2:hover .ch:nth-child(7) {
  color: #16AC4F;
  transition-delay: .18s
}

.entry-page .community-text h2:hover .ch:nth-child(8) {
  color: #16AC4F;
  transition-delay: .21s
}

.entry-page .community-text h2:hover .ch:nth-child(9) {
  color: #16AC4F;
  transition-delay: .24s
}

.entry-page .community-text h2:hover .ch:nth-child(10) {
  color: #16AC4F;
  transition-delay: .27s
}

.entry-page .community-text h2:hover .ch:nth-child(11) {
  color: #16AC4F;
  transition-delay: .3s
}

.entry-page .community-text h2:hover .ch:nth-child(12) {
  color: #16AC4F;
  transition-delay: .33s
}

.entry-page .community-text h2:hover .ch:nth-child(13) {
  color: #16AC4F;
  transition-delay: .36s
}

.entry-page .community-text h2:hover .ch:nth-child(14) {
  color: #16AC4F;
  transition-delay: .39s
}

.entry-page .value-block {
  position: relative;
  padding: 0;
  background: #1e1a00;
  border-top: 3px solid #58380D;
  border-bottom: 3px solid #39328D
}

.entry-page .value-block .radial-spot {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, #16ac4f1f 0%, #16ac4f0a 55%, transparent 100%)
}

.entry-page .value-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 24px;
  position: relative
}

.entry-page .value-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px
}

.entry-page .value-heading h2 {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #f0ead8;
  margin: 0 0 24px
}

.entry-page .value-heading h2 .big {
  font-size: 66px;
  color: #16AC4F;
  display: block
}

.entry-page .value-heading .para {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #c8bfa0;
  margin: 0
}

.entry-page .value-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 60px 0 #16ac4f24
}

.entry-page .value-image-wrap img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px
}

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

.entry-page .value-item {
  padding: 24px;
  border: 2px solid #16ac4f4d;
  border-radius: 18px;
  background: #ffffff0a;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .55s cubic-bezier(0.22, 1, 0.36, 1), background .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.entry-page .value-item:hover {
  border-color: #16AC4F;
  background: #16ac4f14
}

.entry-page .value-item .value-num {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #16AC4F;
  opacity: .7
}

.entry-page .value-item h4 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #f0ead8;
  margin: 0
}

.entry-page .value-item p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #a89e84;
  margin: 0
}

.entry-page .value-dot-row {
  margin-top: 48px;
  display: flex;
  flex-direction: row;
  justify-content: center
}

.entry-page .hesitation-block {
  padding: 0;
  background: #f5f3ee
}

.entry-page .hesitation-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 24px;
  display: flex;
  flex-direction: column;
  gap: 48px
}

.entry-page .hesitation-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start
}

.entry-page .hesitation-text h2 {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a1500;
  margin: 0 0 24px
}

.entry-page .hesitation-text h2 .accent {
  color: #39328D
}

.entry-page .hesitation-text .para {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #3a3020;
  margin: 0 0 24px
}

.entry-page .info-card {
  border: 2px solid #39328D;
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 4px 25px 0 #58380d14;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.entry-page .info-card h5 {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #39328D;
  margin: 0 0 12px;
  text-transform: uppercase
}

.entry-page .info-card .info-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #39328d1a
}

.entry-page .info-card .info-row:last-child {
  border-bottom: none
}

.entry-page .info-card .info-row .info-label {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3a3020
}

.entry-page .info-card .info-row .info-val {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #39328D;
  font-weight: 700;
  text-align: right
}

.entry-page .hesitation-answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.entry-page .answer-item {
  padding: 24px;
  border-radius: 10px;
  border: 2px solid #16AC4F;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 3px 0 #16ac4f12;
  transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.entry-page .answer-item:hover {
  box-shadow: 0 10px 60px 0 #16ac4f24
}

.entry-page .answer-item h5 {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #1a1500;
  margin: 0
}

.entry-page .answer-item p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #3a3020;
  margin: 0
}

.entry-page .hesitation-close {
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(197deg, #16AC4F 0%, #16AC4F 40%, #39328D 100%);
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 10px 60px 0 #16ac4f24
}

.entry-page .hesitation-close .close-text {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.entry-page .hesitation-close .close-text h4 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  margin: 0
}

.entry-page .hesitation-close .close-text p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #ffffffd9;
  margin: 0
}

.entry-page .btn-white {
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #16AC4F;
  background: #fff;
  border: 3px solid #fff;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  overflow: hidden;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1), background .5s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap
}

.entry-page .btn-white::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #39328D;
  transform: translateX(-101%);
  transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0
}

.entry-page .btn-white:hover::before,
.entry-page .btn-white:focus::before {
  transform: translateX(0)
}

.entry-page .btn-white:hover,
.entry-page .btn-white:focus {
  color: #fff;
  outline: none
}

.entry-page .btn-white span {
  position: relative;
  z-index: 1
}

@media (max-width: 1280px) {
  .entry-page .title-inner {
    grid-template-columns: 1fr 1.5fr;
    gap: 24px
  }

  .entry-page .value-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 768px) {
  .entry-page .title-inner {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .entry-page .title-text-col {
    padding-left: 0
  }

  .entry-page .title-text-col h1 {
    font-size: 36px
  }

  .entry-page .title-text-col h1 .word-big {
    font-size: 50px
  }

  .entry-page .title-text-col h1 .word-rest {
    font-size: 20px
  }

  .entry-page .community-inner {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .entry-page .value-top {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .entry-page .value-grid {
    grid-template-columns: 1fr
  }

  .entry-page .value-heading h2 {
    font-size: 36px
  }

  .entry-page .value-heading h2 .big {
    font-size: 50px
  }

  .entry-page .hesitation-top {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .entry-page .hesitation-answers {
    grid-template-columns: 1fr
  }

  .entry-page .community-text h2 {
    font-size: 36px
  }

  .entry-page .hesitation-text h2 {
    font-size: 36px
  }

  .entry-page .hesitation-close {
    flex-direction: column;
    align-items: flex-start
  }

  .entry-page .title-block {
    padding: 48px 24px
  }

  .entry-page .community-inner,
  .entry-page .value-inner,
  .entry-page .hesitation-inner {
    padding: 48px 24px
  }
}

.experts-opinion-page {
  background: #fff;
  overflow-x: clip
}

.experts-opinion-page .opinion-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px
}

.experts-opinion-page .page-lead {
  padding: 96px 24px 48px;
  max-width: 1140px;
  margin: 0 auto
}

.experts-opinion-page .page-lead-label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .02em;
  color: #16AC4F;
  border: 2px solid #16AC4F;
  border-radius: 6px;
  padding: 4px 12px;
  margin-bottom: 24px;
  line-height: 1.8
}

.experts-opinion-page .page-lead-heading {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #58380D;
  margin: 0 0 24px;
  max-width: 680px
}

.experts-opinion-page .page-lead-heading span {
  font-size: 66px;
  display: block;
  color: #39328D
}

.experts-opinion-page .page-lead-sub {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #2a2a2a;
  max-width: 520px;
  margin: 0
}

.experts-opinion-page .lead-divider {
  height: 2px;
  background: #16AC4F;
  max-width: 1140px;
  margin: 0 auto
}

.experts-opinion-page .posts-grid-area {
  padding: 48px 24px 96px;
  max-width: 1140px;
  margin: 0 auto
}

.experts-opinion-page .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.experts-opinion-page .post-card {
  border: 2px solid #e8e2d8;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 25px 0 #16ac4f14;
  transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.experts-opinion-page .post-card:hover {
  border-color: #16AC4F;
  box-shadow: 0 10px 60px 0 #16ac4f24
}

.experts-opinion-page .post-card.featured {
  grid-column: 1 / 3;
  flex-direction: row
}

.experts-opinion-page .post-card-image-wrap {
  position: relative;
  overflow: hidden
}

.experts-opinion-page .post-card.featured .post-card-image-wrap {
  width: 48%;
  flex-shrink: 0
}

.experts-opinion-page .post-card:not(.featured) .post-card-image-wrap {
  aspect-ratio: 16/9
}

.experts-opinion-page .post-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.experts-opinion-page .post-card:hover .post-card-image-wrap img {
  transform: scale(1.04)
}

.experts-opinion-page .post-card-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #39328d00;
  transition: background .55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none
}

.experts-opinion-page .post-card:hover .post-card-image-wrap::after {
  background: #39328d2e
}

.experts-opinion-page .post-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1
}

.experts-opinion-page .post-tag-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center
}

.experts-opinion-page .post-tag {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .02em;
  border-radius: 6px;
  padding: 4px 8px;
  border: 2px solid #16AC4F;
  color: #16AC4F;
  background: transparent
}

.experts-opinion-page .post-category-tag {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .02em;
  border-radius: 6px;
  padding: 4px 8px;
  border: 2px solid #58380D;
  color: #58380D;
  background: transparent
}

.experts-opinion-page .post-card-title {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1b1500;
  margin: 0
}

.experts-opinion-page .post-card.featured .post-card-title {
  font-size: 36px
}

.experts-opinion-page .post-card-subtitle {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #39328D;
  margin: 0
}

.experts-opinion-page .post-card-desc {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #3a3020;
  margin: 0
}

.experts-opinion-page .post-meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto
}

.experts-opinion-page .post-author {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #58380D
}

.experts-opinion-page .post-views {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 1.8;
  color: #888070
}

.experts-opinion-page .post-views svg {
  flex-shrink: 0
}

.experts-opinion-page .post-read-link {
  display: inline-block;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .02em;
  color: #fff;
  background: #16AC4F;
  border: 2px solid #16AC4F;
  border-radius: 10px;
  padding: 4px 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.experts-opinion-page .post-read-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #39328D;
  transform: translateX(-100%);
  transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0
}

.experts-opinion-page .post-read-link:hover::before {
  transform: translateX(0)
}

.experts-opinion-page .post-read-link span {
  position: relative;
  z-index: 1
}

.experts-opinion-page .approach-band {
  background: linear-gradient(197deg, #39328D 0%, #39328D 30%, #58380D 100%);
  padding: 96px 24px
}

.experts-opinion-page .approach-band-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start
}

.experts-opinion-page .approach-left {
  flex: 1 1 340px
}

.experts-opinion-page .approach-label {
  font-size: 14px;
  letter-spacing: .02em;
  color: #16AC4F;
  border: 2px solid #16AC4F;
  border-radius: 6px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 24px;
  line-height: 1.8
}

.experts-opinion-page .approach-heading {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  margin: 0 0 24px
}

.experts-opinion-page .approach-heading strong {
  font-size: 50px;
  display: block;
  color: #b8f0d0
}

.experts-opinion-page .approach-body {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #d4c8b8;
  margin: 0
}

.experts-opinion-page .approach-right {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.experts-opinion-page .approach-item {
  border: 2px solid #ffffff2e;
  border-radius: 18px;
  padding: 24px;
  background: #ffffff0f;
  transition: border-color .55s cubic-bezier(0.22, 1, 0.36, 1), background .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.experts-opinion-page .approach-item:hover {
  border-color: #16AC4F;
  background: #16ac4f14
}

.experts-opinion-page .approach-item-number {
  font-size: 50px;
  line-height: 1.2;
  color: #16AC4F;
  letter-spacing: .01em;
  display: block;
  margin-bottom: 8px
}

.experts-opinion-page .approach-item-title {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  margin: 0 0 8px
}

.experts-opinion-page .approach-item-text {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #c8bca8;
  margin: 0
}

.experts-opinion-page .approach-divider {
  height: 2px;
  background: #58380D;
  max-width: 1140px;
  margin: 0 auto
}

.experts-opinion-page .photo-pitch-area {
  padding: 96px 24px;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center
}

.experts-opinion-page .photo-pitch-image-col {
  flex: 0 0 480px;
  position: relative
}

.experts-opinion-page .photo-pitch-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 60px 0 #58380d24
}

.experts-opinion-page .photo-pitch-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  max-width: 100%;
  transition: transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.experts-opinion-page .photo-pitch-image-wrap:hover img {
  transform: scale(1.03)
}

.experts-opinion-page .photo-pitch-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #16ac4f00;
  transition: background .55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  border-radius: 18px
}

.experts-opinion-page .photo-pitch-image-wrap:hover::after {
  background: #16ac4f24
}

.experts-opinion-page .photo-pitch-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.experts-opinion-page .pitch-eyebrow {
  font-size: 14px;
  letter-spacing: .02em;
  color: #39328D;
  border: 2px solid #39328D;
  border-radius: 6px;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1.8;
  align-self: flex-start
}

.experts-opinion-page .pitch-heading {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #58380D;
  margin: 0
}

.experts-opinion-page .pitch-heading em {
  font-style: normal;
  font-size: 50px;
  color: #39328D;
  display: block
}

.experts-opinion-page .pitch-paragraph {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #2a2a2a;
  margin: 0
}

.experts-opinion-page .pitch-stat-row {
  display: flex;
  flex-direction: row;
  gap: 24px
}

.experts-opinion-page .pitch-stat {
  border: 2px solid #16AC4F;
  border-radius: 10px;
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.experts-opinion-page .pitch-stat-number {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #16AC4F
}

.experts-opinion-page .pitch-stat-label {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #58380D
}

.experts-opinion-page .pitch-cta {
  display: inline-block;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .02em;
  color: #39328D;
  background: transparent;
  border: 2px solid #39328D;
  border-radius: 10px;
  padding: 8px 24px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.experts-opinion-page .pitch-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #39328D;
  transform: translateX(-100%);
  transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0
}

.experts-opinion-page .pitch-cta:hover {
  color: #fff
}

.experts-opinion-page .pitch-cta:hover::before {
  transform: translateX(0)
}

.experts-opinion-page .pitch-cta span {
  position: relative;
  z-index: 1
}

.experts-opinion-page .contact-strip {
  background: #f5f1eb;
  padding: 48px 24px
}

.experts-opinion-page .contact-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.experts-opinion-page .contact-strip-text {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.experts-opinion-page .contact-strip-heading {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #58380D;
  margin: 0
}

.experts-opinion-page .contact-strip-detail {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #3a3020;
  margin: 0
}

.experts-opinion-page .contact-strip-detail a {
  color: #39328D;
  text-decoration: none;
  border-bottom: 1px solid #39328D;
  transition: color .45s ease-in-out, border-color .45s ease-in-out
}

.experts-opinion-page .contact-strip-detail a:hover {
  color: #16AC4F;
  border-color: #16AC4F
}

.experts-opinion-page .contact-strip-action {
  display: inline-block;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .02em;
  color: #16AC4F;
  background: transparent;
  border: 2px solid #16AC4F;
  border-radius: 10px;
  padding: 8px 24px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.experts-opinion-page .contact-strip-action::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #16AC4F;
  transform: translateX(-100%);
  transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0
}

.experts-opinion-page .contact-strip-action:hover {
  color: #fff
}

.experts-opinion-page .contact-strip-action:hover::before {
  transform: translateX(0)
}

.experts-opinion-page .contact-strip-action span {
  position: relative;
  z-index: 1
}

.experts-opinion-page .strip-divider {
  height: 2px;
  background: #39328D;
  max-width: 1140px;
  margin: 0 auto
}

@keyframes eo-elastic-in {
  0% {
    opacity: 0;
    transform: translateY(32px) scaleY(0.94)
  }

  60% {
    opacity: 1;
    transform: translateY(-6px) scaleY(1.02)
  }

  80% {
    transform: translateY(3px) scaleY(0.99)
  }

  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1)
  }
}

.experts-opinion-page .page-lead {
  animation: eo-elastic-in .65s cubic-bezier(0.22, 1, 0.36, 1) both
}

.experts-opinion-page .post-card {
  animation: eo-elastic-in .6s cubic-bezier(0.22, 1, 0.36, 1) both
}

.experts-opinion-page .post-card:nth-child(1) {
  animation-delay: .08s
}

.experts-opinion-page .post-card:nth-child(2) {
  animation-delay: .16s
}

.experts-opinion-page .post-card:nth-child(3) {
  animation-delay: .24s
}

.experts-opinion-page .post-card:nth-child(4) {
  animation-delay: .32s
}

.experts-opinion-page .post-card:nth-child(5) {
  animation-delay: .4s
}

@media (max-width: 1280px) {
  .experts-opinion-page .posts-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .experts-opinion-page .post-card.featured {
    grid-column: 1 / 3
  }

  .experts-opinion-page .photo-pitch-image-col {
    flex: 0 0 360px
  }
}

@media (max-width: 768px) {
  .experts-opinion-page .page-lead-heading {
    font-size: 36px
  }

  .experts-opinion-page .page-lead-heading span {
    font-size: 50px
  }

  .experts-opinion-page .posts-grid {
    grid-template-columns: 1fr
  }

  .experts-opinion-page .post-card.featured {
    grid-column: 1 / 2;
    flex-direction: column
  }

  .experts-opinion-page .post-card.featured .post-card-image-wrap {
    width: 100%;
    aspect-ratio: 16/9
  }

  .experts-opinion-page .post-card.featured .post-card-title {
    font-size: 20px
  }

  .experts-opinion-page .approach-band-inner {
    flex-direction: column
  }

  .experts-opinion-page .photo-pitch-area {
    flex-direction: column
  }

  .experts-opinion-page .photo-pitch-image-col {
    flex: none;
    width: 100%
  }

  .experts-opinion-page .contact-strip-inner {
    flex-direction: column;
    align-items: flex-start
  }

  .experts-opinion-page .pitch-stat-row {
    flex-direction: column
  }

  .experts-opinion-page .approach-heading strong {
    font-size: 36px
  }
}

.success-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
  background: linear-gradient(197deg, #f0fdf6 0%, #f5f3ff 60%, #fff8f0 100%)
}

.success-page .success-wrapper {
  max-width: 560px;
  width: 100%;
  text-align: center
}

.success-page .success-icon-ring {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  border: 3px solid #16AC4F;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 48px;
  box-shadow: 0 4px 25px 0 #16ac4f14;
  background: #fff
}

.success-page .success-icon-ring svg {
  display: block
}

.success-page .success-label {
  font-size: 14px;
  letter-spacing: .08em;
  color: #16AC4F;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700
}

.success-page .success-heading {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a2a1a;
  margin: 0 0 24px;
  font-weight: 800
}

.success-page .success-heading span {
  color: #39328D
}

.success-page .success-text {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #3a3a3a;
  margin: 0 0 48px
}

.success-page .success-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(197deg, #16AC4F 0%, #39328D 100%);
  border-radius: 6px;
  margin: 0 auto 48px
}

.success-page .success-actions {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap
}

.success-page .success-btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 16px;
  letter-spacing: .01em;
  font-weight: 700;
  color: #16AC4F;
  background: #fff;
  border: 3px solid #16AC4F;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 25px 0 #16ac4f14
}

.success-page .success-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #16AC4F;
  transform: translateX(-100%);
  transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  border-radius: 6px
}

.success-page .success-btn-primary:hover::before {
  transform: translateX(0)
}

.success-page .success-btn-primary:hover {
  color: #fff
}

.success-page .success-btn-primary span {
  position: relative;
  z-index: 1
}

.success-page .success-btn-secondary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 16px;
  letter-spacing: .01em;
  font-weight: 700;
  color: #39328D;
  background: #fff;
  border: 3px solid #39328D;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: color .6s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 3px 0 #58380d12
}

.success-page .success-btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #39328D;
  transform: translateX(-100%);
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  border-radius: 6px
}

.success-page .success-btn-secondary:hover::before {
  transform: translateX(0)
}

.success-page .success-btn-secondary:hover {
  color: #fff
}

.success-page .success-btn-secondary span {
  position: relative;
  z-index: 1
}

.success-page .success-note {
  margin-top: 48px;
  padding: 24px;
  border-radius: 10px;
  border: 2px solid #16ac4f2e;
  background: #fff;
  box-shadow: 0 2px 3px 0 #16ac4f12
}

.success-page .success-note-text {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .02em;
  color: #3a3a3a;
  margin: 0
}

.success-page .success-note-text strong {
  color: #58380D
}

@media (max-width: 768px) {
  .success-page {
    padding: 48px 24px
  }

  .success-page .success-heading {
    font-size: 20px
  }

  .success-page .success-actions {
    flex-direction: column;
    align-items: center
  }

  .success-page .success-btn-primary,
  .success-page .success-btn-secondary {
    width: 100%;
    justify-content: center
  }
}