html {
  font-size: 100%;
}

body {
  margin: 0;
}

.accent-strip {
  height: 3px;
  background: linear-gradient(90deg, #3F6C75 0%, #808991 60%, #424852 100%);
  width: 100%;
}

.site-header {
  background: #1b2228;
  font-family: 'Source Serif Pro', 'Literata', Georgia, serif;
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
  position: relative;
}

.header-shell {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 100px;
}

.brand-mount {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  order: 2;
}

.logo-frame {
  width: 90px;
  height: 90px;
  border: 1px solid #808991;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow: 1px 2px 4px 1px rgba(63, 108, 117, 0.07), 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
  padding: 10px;
  flex-shrink: 0;
}

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

.brand-name {
  font-family: 'Literata', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  color: #d4dce3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
}

.primary-nav {
  order: 1;
  flex: 1;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.primary-nav ul li {
  position: relative;
}

.primary-nav ul li a {
  display: block;
  padding: 10px 20px;
  color: #b8c4cc;
  text-decoration: none;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.25s cubic-bezier(0.0, 0, 0.2, 1);
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.primary-nav ul li a:hover,
.primary-nav ul li a:focus {
  color: #e8f0f4;
  background: rgba(63, 108, 117, 0.18);
  letter-spacing: 0.05em;
  outline: none;
}

.primary-nav ul li a:focus-visible {
  outline: 2px dashed #808991;
  outline-offset: 2px;
}

.nav-item-has-sub {
  position: relative;
}

.nav-item-has-sub::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid #808991;
  border-bottom: 1px solid #808991;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.sub-nav {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #1b2228;
  border: 1px solid rgba(128, 137, 145, 0.3);
  border-radius: 4px;
  box-shadow: 1px 12px 40px 1px rgba(63, 108, 117, 0.12);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.nav-item-has-sub:hover .sub-nav,
.nav-item-has-sub:focus-within .sub-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sub-nav ul {
  flex-direction: column;
  gap: 0;
  padding: 10px 0;
}

.sub-nav ul li a {
  border-radius: 0;
  padding: 10px 20px;
  color: #9baab3;
  font-size: 13px;
}

.sub-nav ul li a:hover,
.sub-nav ul li a:focus {
  color: #e8f0f4;
  background: rgba(63, 108, 117, 0.18);
  letter-spacing: 0.04em;
}

.site-footer {
  background: #141a1f;
  font-family: 'Source Serif Pro', Georgia, serif;
  border-top: 1px solid rgba(128, 137, 145, 0.2);
  margin-top: 80px;
}

.footer-shell {
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 40px 40px;
}

.footer-body {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
  min-width: 120px;
}

.footer-logo-frame {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(128, 137, 145, 0.4);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow: 1px 2px 4px 1px rgba(66, 72, 82, 0.07);
  padding: 10px;
}

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

.footer-brand-name {
  font-family: 'Literata', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  color: #808991;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

.footer-columns {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  flex: 1;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 160px;
}

.footer-col-label {
  font-family: 'Literata', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  color: #3F6C75;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(63, 108, 117, 0.3);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: #808991;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.25s cubic-bezier(0.0, 0, 0.2, 1);
  display: inline-block;
}

.footer-col ul li a:hover,
.footer-col ul li a:focus {
  color: #d4dce3;
  letter-spacing: 0.04em;
  outline: none;
}

.footer-col ul li a:focus-visible {
  outline: 2px dashed #808991;
  outline-offset: 2px;
  border-radius: 4px;
}

.footer-contact-item {
  font-size: 13px;
  color: #808991;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

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

.footer-contact-item a:hover {
  color: #d4dce3;
}

.footer-contact-item a:focus-visible {
  outline: 2px dashed #808991;
  outline-offset: 2px;
  border-radius: 4px;
}

.footer-divider {
  height: 1px;
  background: rgba(128, 137, 145, 0.15);
  margin: 40px 0;
}

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

.footer-copy {
  font-size: 13px;
  color: #424852;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.cookie-bar {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  background: #1b2228;
  border-top: 1px solid rgba(63, 108, 117, 0.35);
  box-shadow: 1px 12px 40px 1px rgba(63, 108, 117, 0.12);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-bar.visible {
  transform: translateX(0);
}

.cookie-bar-shell {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cookie-text {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 13px;
  color: #9baab3;
  line-height: 1.6;
  letter-spacing: 0.01em;
  flex: 1;
  min-width: 200px;
}

.cookie-label {
  font-family: 'Literata', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  color: #b8c4cc;
  letter-spacing: 0.02em;
  display: block;
  margin-top: 10px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.cookie-accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid #3F6C75;
  border-radius: 4px;
  background: transparent;
  color: #b8c4cc;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  cursor: pointer;
  min-height: 44px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.25s cubic-bezier(0.0, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cookie-accept::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(63, 108, 117, 0.25);
  transition: height 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.cookie-accept:hover::before,
.cookie-accept:focus::before {
  height: 100%;
}

.cookie-accept:hover,
.cookie-accept:focus {
  color: #e8f0f4;
  letter-spacing: 0.04em;
  outline: none;
}

.cookie-accept:focus-visible {
  outline: 2px dashed #808991;
  outline-offset: 2px;
}

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

.cookie-decline {
  background: none;
  border: none;
  color: #808991;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.01em;
  cursor: pointer;
  padding: 10px;
  min-height: 44px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.25s cubic-bezier(0.0, 0, 0.2, 1);
}

.cookie-decline:hover,
.cookie-decline:focus {
  color: #d4dce3;
  letter-spacing: 0.04em;
  outline: none;
}

.cookie-decline:focus-visible {
  outline: 2px dashed #808991;
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .header-shell {
    padding: 0 20px;
    gap: 20px;
    min-height: 80px;
  }

  .footer-shell {
    padding: 40px 20px 20px;
  }

  .footer-body {
    gap: 40px;
  }

  .footer-columns {
    gap: 40px;
  }

  .cookie-bar-shell {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .header-shell {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
    min-height: auto;
  }

  .brand-mount {
    order: 1;
    width: 100%;
  }

  .primary-nav {
    order: 2;
    width: 100%;
  }

  .primary-nav ul {
    gap: 0;
    flex-wrap: wrap;
  }

  .primary-nav ul li a {
    padding: 10px;
    font-size: 13px;
  }

  .footer-body {
    flex-direction: column;
    gap: 40px;
  }

  .footer-columns {
    gap: 40px;
  }

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

@media (max-width: 360px) {
  .header-shell {
    padding: 10px;
  }

  .logo-frame {
    width: 70px;
    height: 70px;
  }

  .logo-frame img {
    width: 54px;
    height: 54px;
  }

  .footer-shell {
    padding: 40px 10px 20px;
  }

  .cookie-bar-shell {
    padding: 10px;
    gap: 20px;
  }
}

.agreement-text {
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 40px;
  background: #2a2d32;
  color: #c8cdd4;
  line-height: 1.6;
  font-size: 13px;
  letter-spacing: 0.015em;
}

.agreement-text h1 {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #e8ecf0;
  margin: 0 0 40px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #3F6C75;
}

.agreement-text h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #dde2e8;
  margin: 80px 0 20px 0;
}

.agreement-text h3 {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #c0c8d2;
  text-transform: uppercase;
  margin: 40px 0 20px 0;
}

.agreement-text h4,
.agreement-text h5,
.agreement-text h6 {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #a8b2bc;
  margin: 40px 0 10px 0;
}

.agreement-text p {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.015em;
  color: #b8c0ca;
  margin: 0 0 20px 0;
  max-width: 900px;
}

.agreement-text ul,
.agreement-text ol {
  margin: 0 0 20px 0;
  padding-left: 40px;
  max-width: 900px;
}

.agreement-text ul {
  list-style: none;
  padding-left: 20px;
}

.agreement-text ul li {
  position: relative;
  padding-left: 20px;
}

.agreement-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background: #3F6C75;
}

.agreement-text ol {
  list-style: decimal;
}

.agreement-text li {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.015em;
  color: #b8c0ca;
  margin: 0 0 10px 0;
}

.agreement-text strong,
.agreement-text b {
  color: #dde2e8;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.agreement-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-size: 13px;
  line-height: 1.4;
  border-radius: 4px;
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
}

.agreement-text thead {
  background: #323740;
}

.agreement-text thead th {
  color: #e8ecf0;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 20px;
  text-align: left;
  border-bottom: 2px solid #3F6C75;
}

.agreement-text tbody tr {
  border-bottom: 1px solid #383d45;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.agreement-text tbody tr:hover {
  background: #2f3338;
}

.agreement-text tbody tr:last-child {
  border-bottom: none;
}

.agreement-text td {
  color: #b8c0ca;
  padding: 20px;
  vertical-align: top;
  line-height: 1.6;
}

.agreement-text hr {
  border: none;
  border-top: 1px solid #424852;
  margin: 80px 0;
  opacity: 0.6;
}

.agreement-text div {
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .agreement-text {
    padding: 80px 40px;
  }

  .agreement-text h1 {
    font-size: 38px;
  }

  .agreement-text h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .agreement-text {
    padding: 40px 20px;
  }

  .agreement-text h1 {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .agreement-text h2 {
    font-size: 13px;
    margin-top: 40px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .agreement-text h3 {
    margin-top: 20px;
  }

  .agreement-text hr {
    margin: 40px 0;
  }

  .agreement-text table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .agreement-text ul,
  .agreement-text ol {
    padding-left: 20px;
  }
}

@media (max-width: 360px) {
  .agreement-text {
    padding: 20px 10px;
  }

  .agreement-text h1 {
    font-size: 38px;
  }
}

.webinars-detail {
  background-color: #1e2228;
  color: #d4d8de;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.webinars-detail .background-geometry {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.webinars-detail .background-geometry::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 36px;
  border: 1px solid rgba(63, 108, 117, 0.08);
  transform: rotate(15deg);
}

.webinars-detail .background-geometry::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(66, 72, 82, 0.1);
}

.webinars-detail .geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(63, 108, 117, 0.06);
  pointer-events: none;
}

.webinars-detail .geo-circle.large {
  width: 700px;
  height: 700px;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}

.webinars-detail .geo-circle.small {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
}

.webinars-detail .page-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.webinars-detail .double-divider {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 40px 0;
}

.webinars-detail .double-divider span {
  display: block;
  height: 1px;
  background: rgba(63, 108, 117, 0.3);
}

.webinars-detail .double-divider span:last-child {
  background: rgba(63, 108, 117, 0.12);
}

.webinars-detail .title-block {
  padding: 80px 0 40px;
  position: relative;
}

.webinars-detail .title-block .quote-mark {
  position: absolute;
  top: 40px;
  left: -20px;
  font-size: 220px;
  line-height: 1.15;
  color: rgba(63, 108, 117, 0.06);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.webinars-detail .title-block .upper-text {
  padding-bottom: 40px;
  position: relative;
}

.webinars-detail .title-block .meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.webinars-detail .tag-pill {
  background: rgba(63, 108, 117, 0.15);
  color: #3F6C75;
  border: 1px solid rgba(63, 108, 117, 0.3);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.webinars-detail .read-duration {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  letter-spacing: 0.01em;
}

.webinars-detail .user-badge {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  border: 1px solid rgba(128, 137, 145, 0.25);
  border-radius: 4px;
  padding: 4px 10px;
}

.webinars-detail .title-block .main-heading {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #e8eaed;
  margin: 0 0 20px;
  max-width: 900px;
}

.webinars-detail .title-block .main-heading .numerical-accent {
  color: #3F6C75;
  display: inline-block;
}

.webinars-detail .title-block .subtitle-text {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  max-width: 600px;
  letter-spacing: 0.01em;
}

.webinars-detail .title-block .image-lower {
  position: relative;
  margin-top: 40px;
}

.webinars-detail .title-block .image-lower img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.55;
  display: block;
  filter: grayscale(0%);
  transition: filter 0.24s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s cubic-bezier(0.0, 0, 0.2, 1);
}

.webinars-detail .title-block .image-lower:hover img {
  filter: grayscale(100%);
  opacity: 0.4;
}

.webinars-detail .title-block .image-lower .image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, #1e2228 0%, transparent 100%);
  border-radius: 4px;
  pointer-events: none;
}

.webinars-detail .title-block .stat-shape {
  position: absolute;
  bottom: 20px;
  right: 40px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(63, 108, 117, 0.5);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(30, 34, 40, 0.85);
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
}

.webinars-detail .title-block .stat-shape .stat-value {
  font-size: 38px;
  line-height: 1.15;
  color: #3F6C75;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.webinars-detail .title-block .stat-shape .stat-label {
  font-size: 13px;
  line-height: 1.4;
  color: #808991;
  letter-spacing: 0.01em;
  text-align: center;
}

.webinars-detail .description-block {
  padding: 40px 0 80px;
  background: linear-gradient(160deg, rgba(63, 108, 117, 0.04) 0%, rgba(30, 34, 40, 0) 60%, rgba(66, 72, 82, 0.06) 100%);
}

.webinars-detail .description-block .grid-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

.webinars-detail .description-block .text-column .section-label {
  font-size: 13px;
  line-height: 1.6;
  color: #3F6C75;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.webinars-detail .description-block .text-column .section-heading {
  font-size: 38px;
  line-height: 1.15;
  color: #e8eaed;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(63, 108, 117, 0.4);
  display: inline-block;
}

.webinars-detail .description-block .text-column .body-text {
  font-size: 13px;
  line-height: 1.6;
  color: #b8bdc4;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.webinars-detail .description-block .text-column .body-text p {
  margin: 0 0 20px;
}

.webinars-detail .description-block .text-column .body-text h2 {
  font-size: 38px;
  line-height: 1.15;
  color: #e8eaed;
  margin: 40px 0 20px;
  letter-spacing: 0.01em;
}

.webinars-detail .description-block .text-column .body-text mark {
  background: rgba(63, 108, 117, 0.2);
  color: #7ab8c2;
  padding: 2px 6px;
  border-radius: 4px;
}

.webinars-detail .description-block .text-column .body-text blockquote {
  border-top: 1px solid rgba(63, 108, 117, 0.3);
  border-bottom: 1px solid rgba(63, 108, 117, 0.3);
  padding: 20px;
  margin: 20px 0;
  color: #9ba3ab;
  font-size: 13px;
  line-height: 1.6;
}

.webinars-detail .description-block .text-column .body-text cite {
  color: #3F6C75;
  font-style: normal;
}

.webinars-detail .description-block .text-column .body-text ul,
.webinars-detail .description-block .text-column .body-text ol {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.webinars-detail .description-block .text-column .body-text ul li,
.webinars-detail .description-block .text-column .body-text ol li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(128, 137, 145, 0.15);
  font-size: 13px;
  line-height: 1.6;
  color: #b8bdc4;
}

.webinars-detail .description-block .text-column .body-text dl dt {
  font-size: 13px;
  line-height: 1.6;
  color: #e8eaed;
  font-weight: 600;
  margin-top: 20px;
}

.webinars-detail .description-block .text-column .body-text dl dd {
  font-size: 13px;
  line-height: 1.6;
  color: #b8bdc4;
  margin: 0 0 10px;
}

.webinars-detail .fact-block {
  background: rgba(63, 108, 117, 0.08);
  border-top: 2px solid rgba(63, 108, 117, 0.4);
  border-radius: 4px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 1px 2px 4px 1px rgba(63, 108, 117, 0.07);
}

.webinars-detail .fact-block .fact-label {
  font-size: 13px;
  line-height: 1.6;
  color: #3F6C75;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.webinars-detail .fact-block .fact-text {
  font-size: 13px;
  line-height: 1.6;
  color: #c4c9d0;
  margin: 0;
}

.webinars-detail .price-card {
  background: rgba(30, 34, 40, 0.9);
  border: 1px solid rgba(63, 108, 117, 0.2);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 1px 12px 40px 1px rgba(63, 108, 117, 0.12);
  position: sticky;
  top: 40px;
}

.webinars-detail .price-card .price-label {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.webinars-detail .price-card .price-value {
  font-size: 52px;
  line-height: 1.15;
  color: #e8eaed;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  display: block;
}

.webinars-detail .price-card .price-description {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  margin-bottom: 20px;
  display: block;
}

.webinars-detail .price-card .price-note {
  font-size: 13px;
  line-height: 1.6;
  color: #3F6C75;
  margin-bottom: 20px;
  padding: 10px;
  background: rgba(63, 108, 117, 0.08);
  border-radius: 4px;
  display: block;
}

.webinars-detail .price-card .cta-button {
  display: block;
  width: 100%;
  padding: 20px;
  background: #3F6C75;
  color: #e8eaed;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
  transition: letter-spacing 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.0, 0, 0.2, 1);
  text-decoration: none;
}

.webinars-detail .price-card .cta-button::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.08);
  transition: height 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.webinars-detail .price-card .cta-button:hover {
  letter-spacing: 0.06em;
}

.webinars-detail .price-card .cta-button:hover::before {
  height: 100%;
}

.webinars-detail .price-card .cta-button:active {
  box-shadow: inset 1px 2px 4px 1px rgba(63, 108, 117, 0.2);
}

.webinars-detail .price-card .card-divider {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 20px 0;
}

.webinars-detail .price-card .card-divider span {
  display: block;
  height: 1px;
  background: rgba(63, 108, 117, 0.2);
}

.webinars-detail .price-card .card-divider span:last-child {
  background: rgba(63, 108, 117, 0.08);
}

.webinars-detail .price-card .detail-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(128, 137, 145, 0.1);
}

.webinars-detail .price-card .detail-row .detail-key {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
}

.webinars-detail .price-card .detail-row .detail-val {
  font-size: 13px;
  line-height: 1.6;
  color: #c4c9d0;
  text-align: right;
}

.webinars-detail .program-block {
  padding: 80px 0 40px;
  position: relative;
}

.webinars-detail .program-block .program-heading {
  font-size: 38px;
  line-height: 1.15;
  color: #e8eaed;
  letter-spacing: 0.01em;
  margin: 0 0 40px;
  padding-bottom: 10px;
  display: inline-block;
  border-bottom: 2px solid rgba(63, 108, 117, 0.4);
}

.webinars-detail .program-block .three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.webinars-detail .program-block .program-text {
  font-size: 13px;
  line-height: 1.6;
  color: #b8bdc4;
  letter-spacing: 0.01em;
}

.webinars-detail .program-block .program-text p {
  margin: 0 0 20px;
}

.webinars-detail .program-block .program-text h2 {
  font-size: 38px;
  line-height: 1.15;
  color: #e8eaed;
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}

.webinars-detail .program-block .program-text strong {
  color: #c4c9d0;
  font-weight: 600;
}

.webinars-detail .program-block .program-text mark {
  background: rgba(63, 108, 117, 0.2);
  color: #7ab8c2;
  padding: 2px 6px;
  border-radius: 4px;
}

.webinars-detail .program-block .program-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.webinars-detail .program-block .program-text ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(128, 137, 145, 0.15);
  font-size: 13px;
  line-height: 1.6;
  color: #b8bdc4;
}

.webinars-detail .program-block .program-text dl dt {
  font-size: 13px;
  line-height: 1.6;
  color: #e8eaed;
  font-weight: 600;
  margin-top: 20px;
}

.webinars-detail .program-block .program-text dl dd {
  font-size: 13px;
  line-height: 1.6;
  color: #b8bdc4;
  margin: 0 0 10px;
}

.webinars-detail .program-block .program-text figure {
  margin: 20px 0;
}

.webinars-detail .program-block .program-text figcaption {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  margin-top: 10px;
}

.webinars-detail .program-block .stage-card {
  background: rgba(66, 72, 82, 0.15);
  border: 1px solid rgba(66, 72, 82, 0.25);
  border-radius: 4px;
  padding: 20px;
  box-shadow: 1px 2px 4px 1px rgba(66, 72, 82, 0.07);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.webinars-detail .program-block .stage-card:hover {
  border-color: rgba(63, 108, 117, 0.35);
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
}

.webinars-detail .contact-block {
  padding: 40px 0 80px;
  background: linear-gradient(135deg, rgba(63, 108, 117, 0.07) 0%, rgba(66, 72, 82, 0.12) 50%, rgba(30, 34, 40, 0) 100%);
}

.webinars-detail .contact-block .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.webinars-detail .contact-block .contact-heading {
  font-size: 38px;
  line-height: 1.15;
  color: #e8eaed;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(63, 108, 117, 0.4);
  display: inline-block;
}

.webinars-detail .contact-block .contact-body {
  font-size: 13px;
  line-height: 1.6;
  color: #b8bdc4;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.webinars-detail .contact-block .contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.webinars-detail .contact-block .contact-link-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(128, 137, 145, 0.12);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.webinars-detail .contact-block .contact-link-item:hover {
  color: #3F6C75;
  letter-spacing: 0.02em;
}

.webinars-detail .contact-block .contact-link-item .link-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.webinars-detail .contact-block .form-column {
  background: rgba(30, 34, 40, 0.7);
  border: 1px solid rgba(63, 108, 117, 0.15);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
}

.webinars-detail .contact-block .form-column .form-heading {
  font-size: 13px;
  line-height: 1.6;
  color: #3F6C75;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  display: block;
}

.webinars-detail .contact-block .field-group {
  margin-bottom: 20px;
}

.webinars-detail .contact-block .field-group label {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.webinars-detail .contact-block .field-group input,
.webinars-detail .contact-block .field-group textarea {
  width: 100%;
  background: rgba(66, 72, 82, 0.2);
  border: 1px solid rgba(128, 137, 145, 0.2);
  border-radius: 4px;
  padding: 10px 20px;
  color: #d4d8de;
  font-size: 13px;
  line-height: 1.6;
  box-sizing: border-box;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.webinars-detail .contact-block .field-group input::placeholder,
.webinars-detail .contact-block .field-group textarea::placeholder {
  color: #808991;
}

.webinars-detail .contact-block .field-group input:focus,
.webinars-detail .contact-block .field-group textarea:focus {
  outline: none;
  border-color: rgba(63, 108, 117, 0.5);
  box-shadow: 1px 2px 4px 1px rgba(63, 108, 117, 0.07);
}

.webinars-detail .contact-block .field-group textarea {
  min-height: 100px;
  resize: vertical;
}

.webinars-detail .contact-block .submit-button {
  width: 100%;
  padding: 20px;
  background: transparent;
  border: 1px solid rgba(63, 108, 117, 0.5);
  border-radius: 4px;
  color: #3F6C75;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.24s cubic-bezier(0.0, 0, 0.2, 1);
}

.webinars-detail .contact-block .submit-button::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: rgba(63, 108, 117, 0.15);
  transition: height 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.webinars-detail .contact-block .submit-button:hover {
  color: #7ab8c2;
  letter-spacing: 0.05em;
}

.webinars-detail .contact-block .submit-button:hover::before {
  height: 100%;
}

.webinars-detail .contact-block .submit-button:active {
  box-shadow: inset 1px 2px 4px 1px rgba(63, 108, 117, 0.2);
}

@keyframes reveal-scale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

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

.webinars-detail .animate-in {
  animation: reveal-scale 0.28s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.webinars-detail .animate-in.delay-1 {
  animation-delay: 0.06s;
}

.webinars-detail .animate-in.delay-2 {
  animation-delay: 0.12s;
}

.webinars-detail .animate-in.delay-3 {
  animation-delay: 0.18s;
}

.webinars-detail .animate-in.delay-4 {
  animation-delay: 0.24s;
}

@media (max-width: 1024px) {
  .webinars-detail .page-container {
    padding: 0 40px;
  }

  .webinars-detail .description-block .grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .webinars-detail .price-card {
    position: static;
  }

  .webinars-detail .program-block .three-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  .webinars-detail .contact-block .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .webinars-detail .title-block .main-heading {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .webinars-detail .page-container {
    padding: 0 20px;
  }

  .webinars-detail .title-block {
    padding: 40px 0 20px;
  }

  .webinars-detail .title-block .main-heading {
    font-size: 38px;
  }

  .webinars-detail .title-block .quote-mark {
    font-size: 120px;
    left: 0;
  }

  .webinars-detail .program-block .three-col-grid {
    grid-template-columns: 1fr;
  }

  .webinars-detail .program-block {
    padding: 40px 0 20px;
  }

  .webinars-detail .description-block {
    padding: 20px 0 40px;
  }

  .webinars-detail .price-card {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .webinars-detail .page-container {
    padding: 0 10px;
  }

  .webinars-detail .title-block .main-heading {
    font-size: 38px;
  }

  .webinars-detail .price-card .price-value {
    font-size: 38px;
  }
}

.webinars {
  background: #1e2228;
  color: #d8dde4;
  overflow-x: hidden;
  position: relative;
}

.webinars .pulse-background {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.webinars .pulse-background span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 36px;
  border: 1px solid rgba(63, 108, 117, 0.08);
  animation: ring-expand 6s cubic-bezier(0.0, 0, 0.2, 1) infinite;
}

.webinars .pulse-background span:nth-child(2) {
  animation-delay: 2s;
}

.webinars .pulse-background span:nth-child(3) {
  animation-delay: 4s;
}

@keyframes ring-expand {
  0% {
    width: 80px;
    height: 80px;
    opacity: 0.4;
  }

  100% {
    width: 600px;
    height: 600px;
    opacity: 0;
  }
}

.webinars .rotating-shape {
  position: fixed;
  top: 20%;
  right: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(63, 108, 117, 0.07);
  border-radius: 4px;
  animation: slow-rotate 40s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes slow-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.webinars .page-bound {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.webinars .divider {
  height: 1px;
  background: linear-gradient(90deg, #3F6C75 0%, #808991 100%);
  border: none;
  margin: 0;
  opacity: 0.4;
}

.webinars .divider-alt {
  height: 1px;
  background: linear-gradient(90deg, #808991 0%, #3F6C75 100%);
  border: none;
  margin: 0;
  opacity: 0.3;
}

.webinars .page-lead {
  padding: 80px 0 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px;
}

.webinars .page-lead-text {
  flex: 1;
}

.webinars .page-lead-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #3F6C75;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  line-height: 1.4;
}

.webinars .page-lead h1 {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #d8dde4;
  margin: 0 0 20px;
  font-weight: 700;
}

.webinars .page-lead-description {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  max-width: 480px;
  margin: 0;
}

.webinars .page-lead-stat {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border: 2px solid #3F6C75;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
}

.webinars .page-lead-stat strong {
  font-size: 38px;
  line-height: 1.15;
  color: #3F6C75;
  letter-spacing: 0.01em;
}

.webinars .page-lead-stat span {
  font-size: 13px;
  color: #808991;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.02em;
}

.webinars .cards-grid-area {
  padding: 40px 0 80px;
}

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

.webinars .webinar-card {
  background: linear-gradient(135deg, #252b33 0%, #1e2228 60%, #222930 100%);
  border-radius: 4px;
  border: 1px solid rgba(66, 72, 82, 0.6);
  box-shadow: 1px 2px 4px 1px rgba(66, 72, 82, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.webinars .webinar-card:hover {
  box-shadow: 1px 12px 40px 1px rgba(63, 108, 117, 0.12);
  border-color: rgba(63, 108, 117, 0.4);
}

.webinars .card-image-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.webinars .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.webinars .webinar-card:hover .card-image-wrap img {
  transform: scale(1.04);
}

.webinars .card-image-wrap .image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #252b33 0%, transparent 100%);
}

.webinars .card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(63, 108, 117, 0.85);
  color: #d8dde4;
  font-size: 13px;
  line-height: 1.4;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.webinars .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.webinars .card-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.webinars .card-meta-item {
  font-size: 13px;
  color: #808991;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.webinars .card-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 36px;
  background: #808991;
  flex-shrink: 0;
}

.webinars .card-user-format {
  font-size: 13px;
  color: #3F6C75;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.webinars .card-title {
  font-size: 13px;
  line-height: 1.6;
  color: #d8dde4;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(66, 72, 82, 0.5);
}

.webinars .card-description {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  margin: 0;
  flex: 1;
}

.webinars .card-footer {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding: 10px 20px 20px;
  gap: 10px;
}

.webinars .card-pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.webinars .card-price {
  font-size: 38px;
  line-height: 1.15;
  color: #d8dde4;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.webinars .card-price-desc {
  font-size: 13px;
  color: #808991;
  line-height: 1.4;
}

.webinars .card-price-note {
  font-size: 13px;
  color: #3F6C75;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.webinars .card-action {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid #3F6C75;
  color: #3F6C75;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.webinars .card-action::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #3F6C75;
  transition: height 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.webinars .card-action:hover::before {
  height: 100%;
}

.webinars .card-action:hover {
  color: #1e2228;
  letter-spacing: 0.04em;
}

.webinars .card-action span {
  position: relative;
  z-index: 1;
}

.webinars .about-strip {
  padding: 80px 0;
  background: linear-gradient(90deg, rgba(63, 108, 117, 0.12) 0%, rgba(30, 34, 40, 0) 60%);
  position: relative;
}

.webinars .about-strip-inner {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;
}

.webinars .about-image-col {
  flex-shrink: 0;
  width: 380px;
  position: relative;
}

.webinars .about-image-wrap {
  border-radius: 4px;
  overflow: hidden;
  height: 280px;
  box-shadow: 1px 12px 40px 1px rgba(63, 108, 117, 0.12);
}

.webinars .about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: slow-pan 12s ease-in-out infinite alternate;
}

@keyframes slow-pan {
  from {
    transform: scale(1.05) translateY(-2%);
  }

  to {
    transform: scale(1.05) translateY(2%);
  }
}

.webinars .about-image-wrap .image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, #1e2228 0%, transparent 100%);
  pointer-events: none;
}

.webinars .about-geo {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(63, 108, 117, 0.2);
  border-radius: 4px;
  pointer-events: none;
  animation: slow-rotate 30s linear infinite;
}

.webinars .about-text-col {
  flex: 1;
}

.webinars .about-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #3F6C75;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  line-height: 1.4;
}

.webinars .about-text-col h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #d8dde4;
  margin: 0 0 20px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(63, 108, 117, 0.4);
  text-underline-offset: 6px;
}

.webinars .about-paragraph {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  margin: 0 0 20px;
}

.webinars .about-paragraph strong {
  color: #d8dde4;
  font-weight: 600;
}

.webinars .about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.webinars .about-list li {
  font-size: 13px;
  line-height: 2.0;
  color: #808991;
  border-bottom: 1px solid rgba(66, 72, 82, 0.4);
  letter-spacing: 0.01em;
  padding: 0 0 0 10px;
}

.webinars .about-list li:last-child {
  border-bottom: none;
}

.webinars .process-area {
  padding: 80px 0;
  background: #1a1f25;
}

.webinars .process-header {
  text-align: center;
  margin-bottom: 40px;
}

.webinars .process-header h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #d8dde4;
  margin: 0 0 10px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(128, 137, 145, 0.35);
  text-underline-offset: 6px;
}

.webinars .process-header p {
  font-size: 13px;
  color: #808991;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 500px;
}

.webinars .process-steps {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.webinars .process-step {
  flex: 1;
  padding: 20px;
  border-radius: 4px;
  background: linear-gradient(135deg, #252b33 0%, #1e2228 100%);
  border: 1px solid rgba(66, 72, 82, 0.5);
  box-shadow: 1px 2px 4px 1px rgba(66, 72, 82, 0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.webinars .process-step:hover {
  border-color: rgba(63, 108, 117, 0.35);
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
}

.webinars .step-number {
  width: 40px;
  height: 40px;
  border: 2px solid #3F6C75;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #3F6C75;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.webinars .process-step h4 {
  font-size: 13px;
  line-height: 1.4;
  color: #d8dde4;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(66, 72, 82, 0.4);
}

.webinars .process-step p {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  margin: 0;
}

.webinars .contact-strip {
  padding: 80px 0;
  background: linear-gradient(90deg, rgba(30, 34, 40, 0) 0%, rgba(63, 108, 117, 0.1) 100%);
}

.webinars .contact-strip-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}

.webinars .contact-text {
  flex: 1;
}

.webinars .contact-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #808991;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  line-height: 1.4;
}

.webinars .contact-text h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #d8dde4;
  margin: 0 0 20px;
  font-weight: 600;
}

.webinars .contact-text p {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  margin: 0;
  max-width: 400px;
}

.webinars .contact-form-col {
  flex-shrink: 0;
  width: 420px;
}

.webinars .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.webinars .form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.webinars .form-field label {
  font-size: 13px;
  color: #808991;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.webinars .form-field input,
.webinars .form-field textarea {
  background: #252b33;
  border: 1px solid rgba(66, 72, 82, 0.7);
  border-radius: 4px;
  padding: 10px 20px;
  color: #d8dde4;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.webinars .form-field input::placeholder,
.webinars .form-field textarea::placeholder {
  color: #424852;
}

.webinars .form-field input:focus,
.webinars .form-field textarea:focus {
  border-color: #3F6C75;
  box-shadow: inset 1px 2px 4px 1px rgba(63, 108, 117, 0.07);
}

.webinars .form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.webinars .form-submit {
  padding: 20px 40px;
  background: #3F6C75;
  border: none;
  border-radius: 4px;
  color: #d8dde4;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: letter-spacing 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 1px 2px 4px 1px rgba(63, 108, 117, 0.07);
}

.webinars .form-submit::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.08);
  transition: height 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.webinars .form-submit:hover::before {
  height: 100%;
}

.webinars .form-submit:hover {
  letter-spacing: 0.06em;
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
}

.webinars .form-submit:active {
  box-shadow: inset 1px 2px 4px 1px rgba(63, 108, 117, 0.07);
}

@media (max-width: 1024px) {
  .webinars .page-bound {
    padding: 0 20px;
  }

  .webinars .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .webinars .about-strip-inner {
    flex-direction: column;
    gap: 40px;
  }

  .webinars .about-image-col {
    width: 100%;
  }

  .webinars .process-steps {
    flex-wrap: wrap;
  }

  .webinars .process-step {
    min-width: calc(50% - 10px);
  }

  .webinars .contact-strip-inner {
    flex-direction: column;
    gap: 40px;
  }

  .webinars .contact-form-col {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .webinars .page-lead {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0 20px;
    gap: 20px;
  }

  .webinars .page-lead h1 {
    font-size: 38px;
  }

  .webinars .cards-grid {
    grid-template-columns: 1fr;
  }

  .webinars .process-steps {
    flex-direction: column;
  }

  .webinars .about-image-col {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .webinars .page-bound {
    padding: 0 10px;
  }

  .webinars .page-lead h1 {
    font-size: 38px;
  }

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

.opening {
  background: #1b1e22;
  color: #d8dde3;
  overflow-x: clip;
}

.opening .page-bound {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.opening .title-block {
  position: relative;
  padding: 80px 40px;
}

.opening .title-block .page-bound {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  align-items: center;
}

.opening .title-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 60%, rgba(63, 108, 117, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(66, 72, 82, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.opening .title-grain::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.35;
  pointer-events: none;
}

.opening .title-faded-bg {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  font-size: 260px;
  font-weight: 900;
  color: rgba(63, 108, 117, 0.06);
  line-height: 1.15;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.opening .title-body {
  position: relative;
  z-index: 1;
}

.opening .title-eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3F6C75;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.opening .title-eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #3F6C75;
}

.opening .title-heading {
  font-size: 66px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #eceff2;
  margin-bottom: 20px;
}

.opening .title-heading span {
  color: #3F6C75;
}

.opening .title-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  max-width: 520px;
  margin-bottom: 40px;
}

.opening .title-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.opening .btn-primary {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #eceff2;
  background: #3F6C75;
  border: none;
  border-radius: 4px;
  padding: 20px 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: letter-spacing 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
}

.opening .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2d5059;
  transform: translateY(100%);
  transition: transform 0.24s cubic-bezier(0.0, 0, 0.2, 1);
}

.opening .btn-primary:hover {
  letter-spacing: 0.06em;
}

.opening .btn-primary:hover::before {
  transform: translateY(0);
}

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

.opening .btn-secondary {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #808991;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.opening .btn-secondary:hover {
  color: #eceff2;
  letter-spacing: 0.05em;
}

.opening .title-image-col {
  position: relative;
  z-index: 1;
}

.opening .title-image-frame {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 1px 12px 40px 1px rgba(63, 108, 117, 0.12);
}

.opening .title-image-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  animation: slow-zoom 12s ease-in-out infinite alternate;
  mask-image: radial-gradient(ellipse at center, black 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 55%, transparent 100%);
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.opening .title-block::before,
.opening .title-block::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.opening .title-block::before {
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 60px 0 0;
  border-color: rgba(63, 108, 117, 0.12) transparent transparent transparent;
}

.opening .title-block::after {
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 60px;
  border-color: transparent transparent rgba(63, 108, 117, 0.10) transparent;
}

.opening .divider-diamonds {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 40px;
  overflow: hidden;
}

.opening .divider-diamonds .diamond {
  width: 5px;
  height: 5px;
  background: #3F6C75;
  transform: rotate(45deg);
  opacity: 0.5;
  flex-shrink: 0;
}

.opening .divider-diamonds .diamond.dim {
  opacity: 0.2;
  background: #808991;
}

.opening .evidence {
  padding: 80px 40px;
  background: linear-gradient(105deg, rgba(63, 108, 117, 0.10) 0%, #1b1e22 60%);
}

.opening .evidence .page-bound {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.opening .evidence-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3F6C75;
  margin-bottom: 20px;
}

.opening .evidence-heading {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #eceff2;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(63, 108, 117, 0.4);
}

.opening .evidence-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.opening .metric-item {
  border-top: 1px solid rgba(128, 137, 145, 0.2);
  padding-top: 20px;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.opening .evidence-metrics:has(.metric-item:hover) .metric-item:not(:hover) {
  opacity: 0.4;
}

.opening .metric-number {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #3F6C75;
  margin-bottom: 10px;
}

.opening .metric-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
}

.opening .metric-label {
  font-size: 13px;
  font-weight: 700;
  color: #d8dde3;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.opening .metric-bar {
  height: 3px;
  background: rgba(128, 137, 145, 0.15);
  border-radius: 4px;
  margin-top: 10px;
  overflow: hidden;
}

.opening .metric-bar-fill {
  height: 100%;
  background: #3F6C75;
  border-radius: 4px;
  animation: bar-grow 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: left;
}

@keyframes bar-grow {
  from {
    width: 0;
  }
}

.opening .stepped-chart {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.opening .step-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.opening .step-year {
  font-size: 13px;
  color: #808991;
  width: 40px;
  flex-shrink: 0;
}

.opening .step-track {
  flex: 1;
  height: 6px;
  background: rgba(128, 137, 145, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.opening .step-fill {
  height: 100%;
  background: linear-gradient(90deg, #3F6C75, rgba(63, 108, 117, 0.5));
  border-radius: 4px;
  animation: bar-grow 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.opening .step-val {
  font-size: 13px;
  color: #d8dde3;
  width: 40px;
  text-align: right;
  flex-shrink: 0;
}

.opening .situations {
  padding: 80px 40px;
  background: #1e2226;
}

.opening .situations .page-bound {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
}

.opening .situations-intro {
  margin-bottom: 40px;
}

.opening .situations-heading {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #eceff2;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(63, 108, 117, 0.35);
  margin-bottom: 20px;
}

.opening .situations-lead {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  max-width: 560px;
}

.opening .situation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.opening .situation-list li {
  font-size: 13px;
  line-height: 1.6;
  color: #d8dde3;
  padding: 20px 0;
  border-bottom: 1px solid rgba(128, 137, 145, 0.18);
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: start;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.opening .situation-list:has(li:hover) li:not(:hover) {
  opacity: 0.45;
}

.opening .situation-list li:hover {
  letter-spacing: 0.015em;
}

.opening .sit-index {
  font-size: 13px;
  color: #3F6C75;
  flex-shrink: 0;
  padding-top: 2px;
}

.opening .sit-text strong {
  display: block;
  color: #eceff2;
  margin-bottom: 10px;
}

.opening .situations-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
  align-self: start;
}

.opening .situations-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  animation: slow-pan 14s ease-in-out infinite alternate;
}

@keyframes slow-pan {
  from {
    object-position: center 30%;
  }

  to {
    object-position: center 70%;
  }
}

.opening .objection {
  padding: 80px 40px;
  background: linear-gradient(160deg, #1b1e22 40%, rgba(63, 108, 117, 0.08) 100%);
}

.opening .objection .page-bound {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.opening .objection-image {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 1px 12px 40px 1px rgba(63, 108, 117, 0.12);
}

.opening .objection-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  animation: slow-zoom 16s ease-in-out infinite alternate;
}

.opening .objection-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #808991;
  margin-bottom: 20px;
}

.opening .objection-heading {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #eceff2;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(63, 108, 117, 0.35);
  margin-bottom: 20px;
}

.opening .objection-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.opening .objection-para {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
}

.opening .objection-para strong {
  color: #d8dde3;
  display: block;
  margin-bottom: 10px;
}

.opening .commitment {
  padding: 80px 40px;
  background: #1e2226;
}

.opening .commitment .page-bound {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.opening .commitment-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3F6C75;
  margin-bottom: 20px;
}

.opening .commitment-heading {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #eceff2;
  max-width: 760px;
  margin-bottom: 40px;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: rgba(63, 108, 117, 0.3);
}

.opening .commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 40px;
}

.opening .commit-card {
  background: rgba(63, 108, 117, 0.06);
  border: 1px solid rgba(63, 108, 117, 0.15);
  border-radius: 4px;
  padding: 40px 20px;
  text-align: left;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.opening .commitment-grid:has(.commit-card:hover) .commit-card:not(:hover) {
  opacity: 0.5;
}

.opening .commit-card:hover {
  border-color: rgba(63, 108, 117, 0.45);
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
}

.opening .commit-num {
  font-size: 38px;
  line-height: 1.15;
  color: rgba(63, 108, 117, 0.4);
  margin-bottom: 20px;
}

.opening .commit-title {
  font-size: 13px;
  font-weight: 700;
  color: #eceff2;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.opening .commit-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
}

.opening .commitment-image-strip {
  width: 100%;
  max-width: 800px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 1px 2px 4px 1px rgba(63, 108, 117, 0.07);
}

.opening .commitment-image-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  animation: slow-pan 18s ease-in-out infinite alternate;
}

.opening .recognition {
  padding: 80px 40px;
  background: linear-gradient(120deg, rgba(63, 108, 117, 0.12) 0%, #1b1e22 55%);
}

.opening .recognition .page-bound {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.opening .recognition-heading {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #eceff2;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(63, 108, 117, 0.35);
  margin-bottom: 20px;
}

.opening .recognition-sub {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
}

.opening .recognition-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.opening .recognition-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.opening .rec-img-wrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
}

.opening .rec-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  animation: slow-zoom 20s ease-in-out infinite alternate;
}

.opening .recognition-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.opening .rec-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(128, 137, 145, 0.18);
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: start;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.opening .recognition-items:has(.rec-item:hover) .rec-item:not(:hover) {
  opacity: 0.4;
}

.opening .rec-dash {
  width: 20px;
  height: 1px;
  background: #3F6C75;
  margin-top: 8px;
  flex-shrink: 0;
}

.opening .rec-text {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
}

.opening .rec-text strong {
  color: #d8dde3;
  display: block;
  margin-bottom: 10px;
}

.opening .difference {
  padding: 80px 40px;
  background: #1e2226;
}

.opening .difference .page-bound {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}

.opening .difference-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #808991;
  margin-bottom: 20px;
}

.opening .difference-heading {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #eceff2;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(63, 108, 117, 0.35);
  margin-bottom: 40px;
}

.opening .diff-points {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.opening .diff-point {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(128, 137, 145, 0.18);
}

.opening .diff-point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.opening .diff-point-title {
  font-size: 13px;
  font-weight: 700;
  color: #eceff2;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.opening .diff-dash {
  width: 20px;
  height: 1px;
  background: #3F6C75;
  flex-shrink: 0;
}

.opening .diff-point-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  padding-left: 30px;
}

.opening .difference-image {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 1px 12px 40px 1px rgba(63, 108, 117, 0.12);
  position: sticky;
  top: 40px;
}

.opening .difference-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  animation: slow-pan 22s ease-in-out infinite alternate;
}

.opening .seq-animate>* {
  opacity: 0;
  transform: translateY(20px);
  animation: seq-appear 0.6s cubic-bezier(0.0, 0, 0.2, 1) forwards;
}

.opening .seq-animate>*:nth-child(1) {
  animation-delay: 0.08s;
}

.opening .seq-animate>*:nth-child(2) {
  animation-delay: 0.18s;
}

.opening .seq-animate>*:nth-child(3) {
  animation-delay: 0.28s;
}

.opening .seq-animate>*:nth-child(4) {
  animation-delay: 0.38s;
}

.opening .seq-animate>*:nth-child(5) {
  animation-delay: 0.48s;
}

.opening .seq-animate>*:nth-child(6) {
  animation-delay: 0.58s;
}

@keyframes seq-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .opening .title-block .page-bound {
    grid-template-columns: 1fr;
  }

  .opening .title-image-col {
    display: none;
  }

  .opening .title-heading {
    font-size: 52px;
  }

  .opening .title-faded-bg {
    font-size: 160px;
  }

  .opening .evidence .page-bound,
  .opening .objection .page-bound,
  .opening .recognition .page-bound {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .opening .situations .page-bound {
    grid-template-columns: 1fr;
  }

  .opening .situations-image {
    display: none;
  }

  .opening .commitment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .opening .difference .page-bound {
    grid-template-columns: 1fr;
  }

  .opening .difference-image {
    display: none;
  }
}

@media (max-width: 768px) {

  .opening .title-block,
  .opening .evidence,
  .opening .situations,
  .opening .objection,
  .opening .commitment,
  .opening .recognition,
  .opening .difference {
    padding: 80px 20px;
  }

  .opening .page-bound {
    padding: 0 20px;
  }

  .opening .title-heading {
    font-size: 38px;
  }

  .opening .title-faded-bg {
    display: none;
  }

  .opening .evidence-metrics {
    grid-template-columns: 1fr;
  }

  .opening .commitment-grid {
    grid-template-columns: 1fr;
  }

  .opening .recognition-image-pair {
    grid-template-columns: 1fr;
  }

  .opening .objection-image {
    display: none;
  }

  .opening .title-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .opening .title-heading {
    font-size: 38px;
  }

  .opening .commitment-heading {
    font-size: 38px;
  }

  .opening .metric-number {
    font-size: 38px;
  }
}

.contact-us-page {
  background: #1e2228;
  color: #d4d8de;
  min-height: 100vh;
  overflow: hidden;
}

.contact-us-page .reveal-heading {
  animation: lift-reveal 0.26s cubic-bezier(0.0, 0, 0.2, 1) both;
}

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

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

.contact-us-page .panel-split {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 40px;
  gap: 80px;
}

.contact-us-page .panel-left {
  flex: 0 0 38%;
  padding-top: 0;
}

.contact-us-page .panel-right {
  flex: 1;
  padding-top: 40px;
}

.contact-us-page .label-tag {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #3F6C75;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.contact-us-page .panel-left h1 {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #eaeef2;
  margin: 0 0 20px 0;
  animation: lift-reveal 0.24s cubic-bezier(0.0, 0, 0.2, 1) both;
}

.contact-us-page .heading-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #3F6C75, #808991);
  border: none;
  margin: 0 0 20px 0;
  border-radius: 4px;
}

.contact-us-page .panel-left p {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #9aa2ac;
  margin: 0 0 20px 0;
}

.contact-us-page .panel-left p strong {
  color: #c2c8d0;
  font-weight: 600;
}

.contact-us-page .contact-detail-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
}

.contact-us-page .contact-detail-list li {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #9aa2ac;
  padding: 10px 0;
  border-bottom: 1px dashed #2e3540;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}

.contact-us-page .contact-detail-list li:last-child {
  border-bottom: none;
}

.contact-us-page .detail-label {
  font-size: 13px;
  color: #3F6C75;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex: 0 0 60px;
}

.contact-us-page .detail-value {
  color: #c2c8d0;
}

.contact-us-page .detail-value a {
  color: #c2c8d0;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-us-page .detail-value a:hover {
  color: #3F6C75;
  letter-spacing: 0.04em;
}

.contact-us-page .dashed-bracket {
  border: 1px dashed #3F6C75;
  border-radius: 4px;
  padding: 40px;
  position: relative;
}

.contact-us-page .dashed-bracket::before,
.contact-us-page .dashed-bracket::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: #3F6C75;
  border-style: solid;
}

.contact-us-page .dashed-bracket::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.contact-us-page .dashed-bracket::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.contact-us-page .form-group {
  margin-bottom: 20px;
}

.contact-us-page .form-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.contact-us-page .form-row .form-group {
  flex: 1;
}

.contact-us-page .field-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #808991;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-us-page .field-input {
  width: 100%;
  background: #252b33;
  border: 1px solid #2e3540;
  border-radius: 4px;
  color: #d4d8de;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  padding: 10px 20px;
  box-sizing: border-box;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  box-shadow: 1px 2px 4px 1px rgba(63, 108, 117, 0.07);
}

.contact-us-page .field-input:focus {
  border-color: #3F6C75;
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
}

.contact-us-page .field-input::placeholder {
  color: #4e5660;
}

.contact-us-page select.field-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23808991' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-us-page select.field-input option {
  background: #252b33;
  color: #d4d8de;
}

.contact-us-page .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}

.contact-us-page .privacy-row input[type="checkbox"] {
  flex: 0 0 auto;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: #3F6C75;
  cursor: pointer;
}

.contact-us-page .privacy-row input[type="checkbox"]:checked {
  box-shadow: inset 1px 2px 4px 1px rgba(63, 108, 117, 0.12);
}

.contact-us-page .privacy-text {
  font-size: 13px;
  line-height: 1.6;
  color: #808991;
  letter-spacing: 0.01em;
}

.contact-us-page .privacy-text a {
  color: #3F6C75;
  text-decoration: underline;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-us-page .privacy-text a:hover {
  color: #9aa2ac;
}

.contact-us-page .submit-button {
  position: relative;
  display: inline-block;
  padding: 20px 40px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #eaeef2;
  background: #2a3540;
  border: 1px solid #3F6C75;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
}

.contact-us-page .submit-button::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #3F6C75;
  transition: height 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.contact-us-page .submit-button:hover::before {
  height: 100%;
}

.contact-us-page .submit-button:hover {
  letter-spacing: 0.1em;
  color: #fff;
}

.contact-us-page .submit-button:active {
  box-shadow: inset 1px 2px 4px 1px rgba(63, 108, 117, 0.12);
}

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

.contact-us-page .info-strip {
  background: #232930;
  border-top: 1px solid #2a3240;
}

.contact-us-page .strip-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.contact-us-page .strip-text {
  flex: 1;
}

.contact-us-page .strip-text h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #eaeef2;
  margin: 0 0 20px 0;
  animation: lift-reveal 0.28s cubic-bezier(0.0, 0, 0.2, 1) both;
}

.contact-us-page .strip-text .heading-rule {
  margin-bottom: 20px;
}

.contact-us-page .strip-text p {
  font-size: 13px;
  line-height: 1.6;
  color: #9aa2ac;
  margin: 0 0 20px 0;
  letter-spacing: 0.01em;
}

.contact-us-page .strip-text p strong {
  color: #c2c8d0;
}

.contact-us-page .strip-aside {
  flex: 0 0 340px;
  padding-top: 40px;
}

.contact-us-page .aside-card {
  background: #1e2228;
  border: 1px solid #2e3540;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 1px 12px 40px 1px rgba(66, 72, 82, 0.12);
}

.contact-us-page .aside-card h5 {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #3F6C75;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.contact-us-page .aside-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #9aa2ac;
  margin: 0 0 20px 0;
  letter-spacing: 0.01em;
}

.contact-us-page .aside-card a {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #3F6C75;
  text-decoration: none;
  border-bottom: 1px solid #3F6C75;
  padding-bottom: 2px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-us-page .aside-card a:hover {
  color: #eaeef2;
  letter-spacing: 0.08em;
}

.contact-us-page .divider-rhythm {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  height: 1px;
  background: repeating-linear-gradient(90deg,
      #3F6C75 0px,
      #3F6C75 4px,
      transparent 4px,
      transparent 10px,
      #3F6C75 10px,
      #3F6C75 20px,
      transparent 20px,
      transparent 30px);
  opacity: 0.3;
}

@media (max-width: 1024px) {
  .contact-us-page .panel-split {
    flex-direction: column;
    gap: 40px;
    padding: 40px 40px;
  }

  .contact-us-page .panel-left {
    flex: unset;
    width: 100%;
  }

  .contact-us-page .panel-right {
    padding-top: 0;
    width: 100%;
  }

  .contact-us-page .strip-inner {
    flex-direction: column;
    gap: 40px;
  }

  .contact-us-page .strip-aside {
    flex: unset;
    width: 100%;
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .contact-us-page .panel-split {
    padding: 40px 20px;
  }

  .contact-us-page .panel-left h1 {
    font-size: 38px;
  }

  .contact-us-page .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-us-page .dashed-bracket {
    padding: 20px;
  }

  .contact-us-page .strip-inner {
    padding: 40px 20px;
  }

  .contact-us-page .strip-text h2 {
    font-size: 38px;
  }
}

@media (max-width: 360px) {
  .contact-us-page .panel-split {
    padding: 20px 10px;
  }

  .contact-us-page .panel-left h1 {
    font-size: 38px;
  }

  .contact-us-page .strip-inner {
    padding: 20px 10px;
  }
}

.case-studies {
  background: #1e2228;
  color: #d4d8de;
  overflow-x: clip;
}

.case-studies .studies-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 40px;
}

.case-studies .studies-eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #3F6C75;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  line-height: 1.4;
}

.case-studies .studies-heading {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #eceef0;
  max-width: 680px;
  margin: 0 0 40px 0;
}

.case-studies .studies-heading mark {
  background: none;
  color: #3F6C75;
}

.case-studies .studies-intro-row {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 80px;
  border-bottom: 1px solid #2e3540;
  padding-bottom: 80px;
}

.case-studies .studies-intro-left {
  flex: 1 1 55%;
}

.case-studies .studies-intro-right {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 20px;
}

.case-studies .stat-ring-group {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.case-studies .stat-ring {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.case-studies .stat-ring svg {
  width: 96px;
  height: 96px;
  transform: rotate(-90deg);
}

.case-studies .stat-ring-track {
  fill: none;
  stroke: #2e3540;
  stroke-width: 5;
}

.case-studies .stat-ring-fill {
  fill: none;
  stroke: #3F6C75;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  transition: stroke-dashoffset 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-studies .stat-ring-fill.fill-78 {
  stroke-dashoffset: 55.3;
}

.case-studies .stat-ring-fill.fill-64 {
  stroke-dashoffset: 90.4;
}

.case-studies .stat-ring-fill.fill-89 {
  stroke-dashoffset: 27.6;
}

.case-studies .stat-ring-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  font-weight: 700;
  color: #eceef0;
  line-height: 1.15;
  text-align: center;
}

.case-studies .stat-desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-studies .stat-desc strong {
  font-size: 13px;
  color: #eceef0;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.case-studies .stat-desc p {
  font-size: 13px;
  color: #808991;
  line-height: 1.6;
  margin: 0;
}

.case-studies .intro-paragraph {
  font-size: 13px;
  line-height: 1.6;
  color: #9da3ab;
  margin: 0 0 20px 0;
}

.case-studies .intro-paragraph .lead-label {
  font-weight: 700;
  color: #c8cdd4;
  margin-right: 6px;
}

.case-studies .card-deck {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 80px;
}

.case-studies .study-card {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: default;
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-studies .study-card:hover {
  box-shadow: 1px 12px 40px 1px rgba(63, 108, 117, 0.12);
  transform: translateY(-4px);
}

.case-studies .study-card.dark {
  background: #252b33;
}

.case-studies .study-card.accent {
  background: linear-gradient(155deg, #263840 0%, #1e2a2e 60%, #1e2228 100%);
}

.case-studies .study-card.mid {
  background: #2a2f38;
}

.case-studies .card-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.case-studies .card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(0.7) brightness(0.85);
}

.case-studies .study-card:hover .card-image-wrapper img {
  transform: scale(1.04);
}

.case-studies .card-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30, 34, 40, 0.72) 100%);
  pointer-events: none;
}

.case-studies .card-tint {
  position: absolute;
  inset: 0;
  background: rgba(63, 108, 117, 0.18);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.case-studies .card-body {
  padding: 40px;
}

.case-studies .card-tag {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3F6C75;
  display: block;
  margin-bottom: 20px;
  line-height: 1.4;
}

.case-studies .card-heading {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #eceef0;
  margin: 0 0 20px 0;
  text-decoration: underline;
  text-decoration-color: #3F6C75;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.case-studies .card-text {
  font-size: 13px;
  line-height: 1.6;
  color: #9da3ab;
  margin: 0 0 20px 0;
}

.case-studies .card-metrics {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #2e3540;
  padding-top: 20px;
  margin-top: 20px;
}

.case-studies .metric-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #252b33;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  transition: letter-spacing 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-studies .metric-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.case-studies .metric-row:hover {
  letter-spacing: 0.04em;
}

.case-studies .metric-label {
  color: #808991;
}

.case-studies .metric-value {
  color: #eceef0;
  font-weight: 600;
}

.case-studies .comparison-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px 80px 40px;
}

.case-studies .comparison-header {
  margin-bottom: 40px;
}

.case-studies .comparison-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3F6C75;
  display: block;
  margin-bottom: 20px;
  line-height: 1.4;
}

.case-studies .comparison-title {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #eceef0;
  margin: 0;
  max-width: 560px;
}

.case-studies .comparison-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}

.case-studies .comparison-body::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, #3F6C75 30%, #3F6C75 70%, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.case-studies .comp-col {
  background: #252b33;
  border-radius: 4px;
  padding: 40px;
  position: relative;
  box-shadow: 1px 2px 4px 1px rgba(63, 108, 117, 0.07);
}

.case-studies .comp-col.before-col {
  background: #23272e;
}

.case-studies .comp-col.after-col {
  background: linear-gradient(145deg, #263840 0%, #232c30 100%);
}

.case-studies .comp-col-tag {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #808991;
  display: block;
  margin-bottom: 20px;
  line-height: 1.4;
}

.case-studies .comp-col.after-col .comp-col-tag {
  color: #3F6C75;
}

.case-studies .comp-col-heading {
  font-size: 38px;
  line-height: 1.15;
  color: #eceef0;
  margin: 0 0 20px 0;
  letter-spacing: 0.01em;
}

.case-studies .comp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.case-studies .comp-list li {
  font-size: 13px;
  line-height: 1.6;
  color: #9da3ab;
  padding: 10px 0;
  border-bottom: 1px solid #2e3540;
  letter-spacing: 0.01em;
  transition: letter-spacing 0.24s cubic-bezier(0.0, 0, 0.2, 1), color 0.24s cubic-bezier(0.0, 0, 0.2, 1);
}

.case-studies .comp-list li:last-child {
  border-bottom: none;
}

.case-studies .comp-list li:hover {
  letter-spacing: 0.03em;
  color: #c8cdd4;
}

.case-studies .comp-col.after-col .comp-list li {
  color: #adb5bd;
}

.case-studies .comp-col.after-col .comp-list li:hover {
  color: #eceef0;
}

.case-studies .diagonal-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  overflow: hidden;
  pointer-events: none;
  border-radius: 0 4px 0 0;
}

.case-studies .diagonal-accent svg {
  position: absolute;
  top: 0;
  right: 0;
}

.case-studies .flip-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  perspective: 1200px;
}

.case-studies .flip-card {
  height: 180px;
  position: relative;
  transform-style: preserve-3d;
  animation: cardFlip 0.28s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.case-studies .flip-card:nth-child(1) {
  animation-delay: 0.05s;
}

.case-studies .flip-card:nth-child(2) {
  animation-delay: 0.12s;
}

.case-studies .flip-card:nth-child(3) {
  animation-delay: 0.19s;
}

@keyframes cardFlip {
  from {
    transform: rotateY(90deg);
    opacity: 0;
  }

  to {
    transform: rotateY(0deg);
    opacity: 1;
  }
}

.case-studies .flip-card-face {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backface-visibility: hidden;
}

.case-studies .flip-card-face.front {
  background: #252b33;
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
}

.case-studies .flip-card-face .flip-number {
  font-size: 52px;
  line-height: 1.15;
  color: #3F6C75;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.case-studies .flip-card-face .flip-label {
  font-size: 13px;
  color: #808991;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.case-studies .context-strip {
  background: #252b33;
  border-top: 1px solid #2e3540;
  border-bottom: 1px solid #2e3540;
  padding: 40px;
  margin: 0 0 80px 0;
}

.case-studies .context-strip-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;
}

.case-studies .context-strip-text {
  flex: 1 1 60%;
}

.case-studies .context-strip-text p {
  font-size: 13px;
  line-height: 1.6;
  color: #9da3ab;
  margin: 0;
}

.case-studies .context-strip-text p .lead-label {
  font-weight: 700;
  color: #c8cdd4;
  margin-right: 6px;
}

.case-studies .context-strip-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.case-studies .meta-item {
  font-size: 13px;
  color: #808991;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.case-studies .meta-item strong {
  color: #eceef0;
}

@media (max-width: 1024px) {
  .case-studies .studies-intro-row {
    flex-direction: column;
    gap: 40px;
  }

  .case-studies .card-deck {
    grid-template-columns: 1fr 1fr;
  }

  .case-studies .flip-deck {
    grid-template-columns: 1fr 1fr;
  }

  .case-studies .comparison-body {
    grid-template-columns: 1fr;
  }

  .case-studies .comparison-body::before {
    display: none;
  }

  .case-studies .context-strip-inner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .case-studies .context-strip-meta {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .case-studies .studies-grid {
    padding: 40px 20px;
  }

  .case-studies .studies-heading {
    font-size: 38px;
  }

  .case-studies .card-deck {
    grid-template-columns: 1fr;
  }

  .case-studies .flip-deck {
    grid-template-columns: 1fr;
  }

  .case-studies .stat-ring-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-studies .comparison-section {
    padding: 0 20px 40px 20px;
  }

  .case-studies .context-strip {
    padding: 20px;
  }

  .case-studies .card-body {
    padding: 20px;
  }

  .case-studies .comp-col {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .case-studies .studies-heading {
    font-size: 38px;
  }

  .case-studies .card-heading {
    font-size: 38px;
  }

  .case-studies .studies-grid {
    padding: 40px 10px;
  }

  .case-studies .comparison-section {
    padding: 0 10px 40px 10px;
  }
}

.about-us-page {
  background-color: #1a1612;
  color: #d4cfc9;
  overflow-x: clip;
}

.about-us-page *,
.about-us-page *::before,
.about-us-page *::after {
  box-sizing: border-box;
}

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

.about-us-page .strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.55) contrast(1.1);
  image-rendering: auto;
}

.about-us-page .strip-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, #1a1612 100%);
  pointer-events: none;
}

.about-us-page .title-zone {
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 80px 80px;
  position: relative;
}

.about-us-page .dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #3F6C75 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.08;
  pointer-events: none;
}

.about-us-page .title-zone h1 {
  font-size: 66px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #e8e3dc;
  max-width: 760px;
  margin: 0 0 20px;
  animation: drop-in 0.26s cubic-bezier(0.0, 0, 0.2, 1) both;
}

.about-us-page .title-zone h1 .accent-word {
  color: #3F6C75;
}

.about-us-page .title-zone .lead-text {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #9a9590;
  max-width: 520px;
  animation: drop-in 0.28s cubic-bezier(0.0, 0, 0.2, 1) 0.08s both;
}

@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }

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

.about-us-page .wavy-accent {
  width: 100%;
  height: 18px;
  overflow: hidden;
  line-height: 0;
}

.about-us-page .wavy-accent svg {
  display: block;
  width: 100%;
  height: 18px;
}

.about-us-page .story-section {
  background: linear-gradient(to top, #232018 0%, #1a1612 100%);
  padding: 80px 0 40px;
}

.about-us-page .story-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-us-page .story-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 1px 12px 40px 1px rgba(63, 108, 117, 0.12);
}

.about-us-page .story-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-us-page .story-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(63, 108, 117, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.about-us-page .story-text {
  padding-top: 20px;
}

.about-us-page .story-text h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #e8e3dc;
  margin: 0 0 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3F6C75;
  display: inline-block;
}

.about-us-page .story-text h2 .accent-word {
  color: #3F6C75;
}

.about-us-page .paragraph-block {
  margin-bottom: 20px;
}

.about-us-page .paragraph-block .lead-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #3F6C75;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-us-page .paragraph-block p {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #b0aaa3;
  margin: 0;
}

.about-us-page .metrics-strip {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-us-page .metric-item {
  padding: 20px;
  border-radius: 4px;
  background: rgba(63, 108, 117, 0.08);
  border-top: 1px solid rgba(63, 108, 117, 0.3);
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-us-page .metric-item:hover {
  background: rgba(63, 108, 117, 0.14);
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
}

.about-us-page .metric-item .metric-number {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #3F6C75;
  display: block;
}

.about-us-page .metric-item .metric-label {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #808991;
  margin-top: 10px;
  display: block;
}

.about-us-page .team-section {
  padding: 80px 0;
  background-color: #1a1612;
}

.about-us-page .team-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
}

.about-us-page .team-header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 40px;
}

.about-us-page .team-header h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #e8e3dc;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #3F6C75;
}

.about-us-page .team-header .team-intro {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #9a9590;
  max-width: 400px;
  margin: 0;
}

.about-us-page .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-us-page .team-card {
  border-radius: 4px;
  overflow: hidden;
  background: #201d18;
  box-shadow: 1px 2px 4px 1px rgba(66, 72, 82, 0.07);
  transition: box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1), transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.about-us-page .team-grid:hover .team-card:not(:hover) {
  filter: blur(1.5px);
  opacity: 0.7;
  transition: filter 0.22s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-us-page .team-card:hover {
  box-shadow: 1px 12px 40px 1px rgba(63, 108, 117, 0.12);
  transform: translateY(-4px);
  filter: none;
  opacity: 1;
}

.about-us-page .team-card-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.about-us-page .team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-us-page .team-card:hover .team-card-image img {
  transform: scale(1.04);
}

.about-us-page .team-card-body {
  padding: 20px;
}

.about-us-page .team-card-body .person-name {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #e8e3dc;
  font-weight: 700;
  margin: 0 0 10px;
}

.about-us-page .team-card-body .person-role {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #3F6C75;
  margin: 0 0 10px;
  display: block;
}

.about-us-page .team-card-body .person-note {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #808991;
  margin: 0;
}

.about-us-page .approach-section {
  padding: 80px 0;
  background: linear-gradient(to top, #1a1612 0%, #1e1b15 60%, #232018 100%);
}

.about-us-page .approach-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
}

.about-us-page .approach-container h2 {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #e8e3dc;
  margin: 0 0 40px;
  max-width: 700px;
}

.about-us-page .approach-container h2 .accent-word {
  color: #3F6C75;
}

.about-us-page .approach-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.about-us-page .approach-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-us-page .approach-list li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(128, 137, 145, 0.2);
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  transition: letter-spacing 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-us-page .approach-list li:hover {
  letter-spacing: 0.02em;
}

.about-us-page .approach-list li:first-child {
  border-top: 1px solid rgba(128, 137, 145, 0.2);
}

.about-us-page .approach-list .item-index {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #3F6C75;
  font-weight: 700;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 28px;
}

.about-us-page .approach-list .item-body h4 {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #e8e3dc;
  margin: 0 0 10px;
  font-weight: 700;
}

.about-us-page .approach-list .item-body p {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #9a9590;
  margin: 0;
}

.about-us-page .approach-image-wrap {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 1px 12px 40px 1px rgba(63, 108, 117, 0.12);
}

.about-us-page .approach-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-us-page .approach-image-wrap .image-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(26, 22, 18, 0.82);
  border-radius: 4px;
  padding: 20px;
  backdrop-filter: blur(6px);
}

.about-us-page .approach-image-wrap .image-tag p {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #b0aaa3;
  margin: 0;
}

.about-us-page .approach-image-wrap .image-tag strong {
  color: #3F6C75;
}

@media (max-width: 1024px) {
  .about-us-page .title-zone {
    padding: 80px 40px;
  }

  .about-us-page .title-zone h1 {
    font-size: 52px;
  }

  .about-us-page .story-grid {
    grid-template-columns: 1fr;
    padding: 0 40px;
    gap: 40px;
  }

  .about-us-page .story-image-wrap img {
    height: 320px;
  }

  .about-us-page .team-container {
    padding: 0 40px;
  }

  .about-us-page .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-us-page .approach-container {
    padding: 0 40px;
  }

  .about-us-page .approach-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-us-page .approach-image-wrap img {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .about-us-page .title-zone {
    padding: 40px 20px;
  }

  .about-us-page .title-zone h1 {
    font-size: 38px;
  }

  .about-us-page .story-section {
    padding: 40px 0;
  }

  .about-us-page .story-grid {
    padding: 0 20px;
    gap: 20px;
  }

  .about-us-page .metrics-strip {
    grid-template-columns: 1fr;
  }

  .about-us-page .team-section {
    padding: 40px 0;
  }

  .about-us-page .team-container {
    padding: 0 20px;
  }

  .about-us-page .team-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-us-page .team-grid {
    grid-template-columns: 1fr;
  }

  .about-us-page .approach-section {
    padding: 40px 0;
  }

  .about-us-page .approach-container {
    padding: 0 20px;
  }

  .about-us-page .approach-container h2 {
    font-size: 38px;
  }
}

@media (max-width: 360px) {
  .about-us-page .title-zone h1 {
    font-size: 38px;
  }

  .about-us-page .strip-image {
    height: 140px;
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(160deg, #1a2228 0%, #232d34 40%, #1e2a2f 100%);
}

.success-page .success-container {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.success-page .success-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 40px;
  border-radius: 36px;
  background: linear-gradient(135deg, #2e4e55 0%, #3F6C75 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09), 1px 12px 40px 1px rgba(63, 108, 117, 0.12);
}

.success-page .success-icon-wrap svg {
  display: block;
}

.success-page .success-heading {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #e8eaec;
  margin: 0 0 20px;
  font-weight: 600;
}

.success-page .success-heading span {
  display: block;
  width: 48px;
  height: 2px;
  background: #3F6C75;
  margin: 16px auto 0;
  border-radius: 4px;
}

.success-page .success-body {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #808991;
  margin: 0 0 40px;
  padding: 0 20px;
}

.success-page .success-body strong {
  color: #a8b4bc;
  font-weight: 600;
}

.success-page .success-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #3F6C75 50%, transparent 100%);
  margin: 0 0 40px;
  opacity: 0.35;
  border-radius: 4px;
}

.success-page .success-meta {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 40px;
}

.success-page .success-meta-item {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #808991;
  padding: 10px 20px;
  border-radius: 4px;
  background: rgba(63, 108, 117, 0.07);
  border: 1px solid rgba(63, 108, 117, 0.18);
}

.success-page .success-meta-item strong {
  display: block;
  color: #c2cbd2;
  font-size: 13px;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.success-page .success-action {
  display: inline-block;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #e8eaec;
  background: #3F6C75;
  padding: 20px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 1px 2px 4px 1px rgba(63, 108, 117, 0.07), 1px 7px 20px 1px rgba(63, 108, 117, 0.09);
  position: relative;
  overflow: hidden;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-page .success-action::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  transition: height 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-page .success-action:hover::before {
  height: 100%;
}

.success-page .success-action:hover {
  letter-spacing: 0.05em;
  box-shadow: 1px 7px 20px 1px rgba(63, 108, 117, 0.09), 1px 12px 40px 1px rgba(63, 108, 117, 0.12);
}

.success-page .success-action:focus {
  outline: 2px solid #3F6C75;
  outline-offset: 4px;
}

.success-page .success-action:active {
  box-shadow: inset 1px 2px 4px 1px rgba(63, 108, 117, 0.12);
}

@media (max-width: 768px) {
  .success-page {
    padding: 40px 20px;
  }

  .success-page .success-heading {
    font-size: 38px;
  }

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

  .success-page .success-meta-item {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .success-page .success-heading {
    font-size: 38px;
  }

  .success-page .success-action {
    padding: 20px 20px;
    width: 100%;
    text-align: center;
  }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
