* {
  box-sizing: border-box;
}

body {
  margin: 0;
  position: relative;
  min-height: 100vh;
}

.site-head {
  background-color: #0E0E0E;
  position: relative;
  overflow: hidden;
}

.site-head::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,47,83,0.08) 100%);
  pointer-events: none;
}

.site-head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF2F53 0%, rgba(255,47,83,0.3) 60%, transparent 100%);
  pointer-events: none;
}

.head-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 40px 40px;
  display: flex;
  align-items: stretch;
  gap: 80px;
}

.brand-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.brand-capsule {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDEDED;
  border-radius: 38px;
  padding: 8px 16px;
  width: 120px;
  height: 88px;
  box-shadow: 0 4px 20px 0 rgba(255,47,83,0.10), inset 0 2px 2px 0 rgba(14,14,14,0.06);
  border: 1px solid #FF2F53;
}

.brand-capsule img {
  width: 88px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.brand-label {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  font-weight: 700;
  color: #EDEDED;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-accent {
  width: 40px;
  height: 3px;
  background: #FF2F53;
  border-radius: 1px;
}

.head-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.head-contact-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oxygen', sans-serif;
  font-size: 15px;
  color: rgba(237,237,237,0.7);
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(0.4,0,1,1);
}

.contact-item:hover {
  color: #FF2F53;
}

.contact-item:focus {
  outline: none;
  border-bottom: 4px solid #FF2F53;
  color: #EDEDED;
}

.contact-sep {
  width: 1px;
  height: 16px;
  background: rgba(237,237,237,0.2);
}

.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

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

.nav-link {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  font-weight: 700;
  color: #EDEDED;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.35;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: background-color 0.12s cubic-bezier(0.4,0,1,1), border-color 0.12s cubic-bezier(0.4,0,1,1), color 0.12s cubic-bezier(0.4,0,1,1);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover {
  background-color: rgba(255,47,83,0.12);
  border-color: rgba(255,47,83,0.4);
  color: #FF2F53;
}

.nav-link:focus {
  outline: none;
  border-bottom: 4px solid #FF2F53;
  color: #EDEDED;
}

.nav-link.active {
  background-color: #FF2F53;
  color: #EDEDED;
  border-color: #FF2F53;
  box-shadow: 0 4px 20px 0 rgba(255,47,83,0.10);
}

.nav-link.active:hover {
  background-color: #cc2443;
  border-color: #cc2443;
  color: #EDEDED;
}

.head-deco {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.deco-dot {
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: #FF2F53;
  transform: rotate(45deg);
}

.deco-dot.dim {
  background: rgba(255,47,83,0.35);
}

.deco-dot.faint {
  background: rgba(255,47,83,0.15);
}

.deco-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,47,83,0.4) 0%, transparent 100%);
}

.site-foot {
  background-color: #0E0E0E;
  position: relative;
}

.site-foot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,47,83,0.3) 40%, #FF2F53 100%);
  pointer-events: none;
}

.foot-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.foot-col-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.foot-brand-name {
  font-family: 'Inconsolata', monospace;
  font-size: 23px;
  font-weight: 700;
  color: #EDEDED;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.1;
}

.foot-brand-desc {
  font-family: 'Oxygen', sans-serif;
  font-size: 15px;
  color: rgba(237,237,237,0.6);
  line-height: 1.55;
}

.foot-rule {
  width: 40px;
  height: 2px;
  background: #FF2F53;
  border-radius: 1px;
}

.foot-col-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.foot-col-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.foot-heading {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  font-weight: 700;
  color: #FF2F53;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.1;
}

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

.foot-nav-list li a {
  font-family: 'Oxygen', sans-serif;
  font-size: 15px;
  color: rgba(237,237,237,0.7);
  text-decoration: none;
  line-height: 1.55;
  display: inline-block;
  padding: 4px 0;
  transition: color 0.1s cubic-bezier(0.4,0,1,1);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.foot-nav-list li a:hover {
  color: #FF2F53;
}

.foot-nav-list li a:focus {
  outline: none;
  border-bottom: 4px solid #FF2F53;
  color: #EDEDED;
}

.foot-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.foot-contact-label {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  color: rgba(237,237,237,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.foot-contact-val {
  font-family: 'Oxygen', sans-serif;
  font-size: 15px;
  color: rgba(237,237,237,0.8);
  line-height: 1.55;
  text-decoration: none;
  transition: color 0.1s cubic-bezier(0.4,0,1,1);
}

.foot-contact-val:hover {
  color: #FF2F53;
}

.foot-contact-val:focus {
  outline: none;
  border-bottom: 4px solid #FF2F53;
  color: #EDEDED;
}

.foot-bottom {
  border-top: 1px solid rgba(237,237,237,0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.foot-copy {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  color: rgba(237,237,237,0.4);
  line-height: 1.35;
}

.foot-policy-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.foot-policy-links a {
  font-family: 'Oxygen', sans-serif;
  font-size: 15px;
  color: rgba(237,237,237,0.5);
  text-decoration: none;
  line-height: 1.35;
  transition: color 0.1s cubic-bezier(0.4,0,1,1);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.foot-policy-links a:hover {
  color: #FF2F53;
}

.foot-policy-links a:focus {
  outline: none;
  border-bottom: 4px solid #FF2F53;
  color: #EDEDED;
}

.foot-logo-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 40px 40px;
  display: flex;
  justify-content: flex-start;
}

.foot-logo-capsule {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDEDED;
  border-radius: 38px;
  padding: 8px 16px;
  width: 120px;
  height: 88px;
  box-shadow: 0 8px 36px 0 rgba(255,47,83,0.13), inset 0 2px 2px 0 rgba(14,14,14,0.06);
  border: 1px solid rgba(255,47,83,0.3);
}

.foot-logo-capsule img {
  width: 88px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.cookie-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 560px;
  left: 50%;
  transform: translateX(-50%);
  background: #0E0E0E;
  border: 1px solid rgba(255,47,83,0.3);
  border-bottom: none;
  border-radius: 22px 22px 0 0;
  padding: 16px 16px 16px 16px;
  z-index: 2000;
  box-shadow: 0 8px 36px 0 rgba(255,47,83,0.13);
  transition: transform 0.32s cubic-bezier(0.4,0,1,1);
}

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

.cookie-bar.hidden-up {
  transform: translateX(-50%) translateY(-100%);
}

.cookie-desc {
  font-family: 'Oxygen', sans-serif;
  font-size: 15px;
  color: rgba(237,237,237,0.8);
  line-height: 1.55;
  margin-bottom: 8px;
}

.cookie-uses {
  font-family: 'Oxygen', sans-serif;
  font-size: 15px;
  color: rgba(237,237,237,0.6);
  line-height: 1.55;
  margin: 0 0 16px 0;
  padding-left: 16px;
}

.cookie-uses li {
  margin-bottom: 4px;
}

.cookie-opt-out {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.cookie-opt-out label {
  font-family: 'Oxygen', sans-serif;
  font-size: 15px;
  color: rgba(237,237,237,0.7);
  line-height: 1.35;
  cursor: pointer;
}

.cookie-opt-out input[type="checkbox"] {
  accent-color: #FF2F53;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.cookie-policy-ref {
  font-family: 'Oxygen', sans-serif;
  font-size: 15px;
  color: rgba(237,237,237,0.4);
  line-height: 1.35;
  margin-bottom: 16px;
}

.cookie-policy-ref a {
  color: rgba(255,47,83,0.8);
  text-decoration: underline;
  transition: color 0.1s cubic-bezier(0.4,0,1,1);
}

.cookie-policy-ref a:hover {
  color: #FF2F53;
}

.cookie-policy-ref a:focus {
  outline: none;
  border-bottom: 4px solid #FF2F53;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-btn {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #FF2F53;
  background: transparent;
  color: #EDEDED;
  cursor: pointer;
  min-height: 44px;
  transition: background-color 0.12s cubic-bezier(0.4,0,1,1), box-shadow 0.12s cubic-bezier(0.4,0,1,1), color 0.12s cubic-bezier(0.4,0,1,1);
  flex: 1;
}

.cookie-btn:hover {
  background-color: rgba(255,47,83,0.15);
  box-shadow: 0 4px 20px 0 rgba(255,47,83,0.10);
}

.cookie-btn:focus {
  outline: none;
  border-bottom: 4px solid #EDEDED;
}

.cookie-btn.accept {
  background-color: #FF2F53;
  color: #EDEDED;
}

.cookie-btn.accept:hover {
  background-color: #cc2443;
  box-shadow: 0 4px 20px 0 rgba(255,47,83,0.10);
}

@media (max-width: 900px) {
  .head-inner {
    flex-direction: column;
    gap: 16px;
    padding: 40px 16px;
  }

  .head-right {
    gap: 8px;
  }

  .head-contact-bar {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .foot-main {
    grid-template-columns: 1fr 1fr;
    padding: 40px 16px 16px 16px;
  }

  .foot-col-brand {
    grid-column: 1 / -1;
  }

  .foot-bottom {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .foot-logo-row {
    padding: 0 16px 40px 16px;
  }
}

@media (max-width: 600px) {
  .foot-main {
    grid-template-columns: 1fr;
  }

  .primary-nav {
    gap: 4px;
  }

  .nav-link {
    font-size: 15px;
    padding: 8px 8px;
  }

  .cookie-bar {
    border-radius: 22px 22px 0 0;
    max-width: 100%;
  }
}.info-doc {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #0E0E0E;
    background: #ffffff;
}

.info-doc p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #0E0E0E;
}

.info-doc ul,
.info-doc ol {
    margin: 16px 0 16px 40px;
    padding: 0;
}

.info-doc ul {
    list-style-type: disc;
}

.info-doc ol {
    list-style-type: decimal;
}

.info-doc li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #0E0E0E;
    padding-left: 8px;
}

.info-doc li::marker {
    color: #FF2F53;
}

.info-doc strong,
.info-doc b {
    font-weight: 700;
    color: #0E0E0E;
}

.info-doc em,
.info-doc i {
    font-style: italic;
    color: #0E0E0E;
}

.info-doc a {
    color: #FF2F53;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.15s cubic-bezier(0.4,0,1,1), text-decoration-color 0.15s cubic-bezier(0.4,0,1,1);
}

.info-doc a:hover {
    color: #0E0E0E;
    text-decoration-color: #0E0E0E;
}

.info-doc a:focus-visible {
    outline: 2px solid #FF2F53;
    outline-offset: 2px;
    border-radius: 1px;
}

.info-doc table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 15px;
    line-height: 1.55;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 2px 0 rgba(14,14,14,0.06), 0 4px 20px 0 rgba(14,14,14,0.10);
}

.info-doc thead {
    background: #0E0E0E;
}

.info-doc thead th {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    padding: 16px;
    text-align: left;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
}

.info-doc tbody {
    background: #ffffff;
}

.info-doc tbody tr {
    border-bottom: 1px solid #EDEDED;
    transition: background-color 0.12s ease-in;
}

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

.info-doc tbody tr:hover {
    background: #EDEDED;
}

.info-doc th,
.info-doc td {
    padding: 16px;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.55;
    color: #0E0E0E;
}

.info-doc td {
    border-right: 1px solid #EDEDED;
}

.info-doc td:last-child {
    border-right: none;
}

.info-doc div {
    font-size: 16px;
    line-height: 1.8;
    color: #0E0E0E;
}

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

    .info-doc ul,
    .info-doc ol {
        margin-left: 16px;
    }

    .info-doc table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 6px;
    }

    .info-doc th,
    .info-doc td {
        padding: 8px 16px;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .info-doc {
        padding: 40px 8px;
    }

    .info-doc p,
    .info-doc li,
    .info-doc div {
        font-size: 15px;
    }

    .info-doc thead th {
        font-size: 15px;
    }
}
.dgest-pg {
  background: #fff;
  overflow-x: clip;
}

.dgest-pg *, .dgest-pg *::before, .dgest-pg *::after {
  box-sizing: border-box;
}

.dgest-pg a {
  color: inherit;
  text-decoration: none;
}

.dgest-pg .pg-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@keyframes dgest-colorshift {
  0% { color: #EDEDED; }
  100% { color: #0E0E0E; }
}

@keyframes dgest-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.dgest-pg .geo-spin {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(14,14,14,0.05);
  border-radius: 1px;
  animation: dgest-rotate 28s linear infinite;
  pointer-events: none;
  top: 50%;
  right: -80px;
  transform-origin: center center;
  margin-top: -210px;
}

.dgest-pg .geo-spin::before {
  content: '';
  display: block;
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255,45,83,0.07);
  border-radius: 1px;
}

.dgest-pg .geo-spin::after {
  content: '';
  display: block;
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(14,14,14,0.04);
  border-radius: 1px;
}

.dgest-pg .svg-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
}

.dgest-pg .svg-divider svg {
  display: block;
  width: 100%;
}

.dgest-pg .svg-divider-alt svg {
  display: block;
  width: 100%;
}

.dgest-pg .corner-line-tl {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 60px;
  height: 60px;
  pointer-events: none;
}

.dgest-pg .corner-line-br {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  pointer-events: none;
}

.dgest-pg .raised-tag {
  display: inline-block;
  font-size: 15px;
  color: #FF2F53;
  vertical-align: super;
  line-height: 1.1;
  margin-left: 4px;
}

.dgest-pg .underline-head {
  display: inline-block;
  border-bottom: 2px solid #FF2F53;
  padding-bottom: 4px;
}

.dgest-pg .content-link {
  background-image: linear-gradient(31deg, #0E0E0E, #FF2F53);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: right bottom;
  transition: background-size 0.15s cubic-bezier(0.4,0,1,1);
  padding-bottom: 1px;
}

.dgest-pg .content-link:hover {
  background-size: 100% 1px;
  background-position: left bottom;
}

.dgest-pg .btn-primary {
  display: inline-block;
  background: #0E0E0E;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 2px 0 rgba(14,14,14,0.06);
  transition: box-shadow 0.12s cubic-bezier(0.4,0,1,1), background 0.12s cubic-bezier(0.4,0,1,1);
  text-decoration: none;
}

.dgest-pg .btn-primary:hover {
  background: #FF2F53;
  box-shadow: 0 8px 36px 0 rgba(255,47,83,0.13);
}

.dgest-pg .btn-primary:focus {
  outline: 2px solid #FF2F53;
  outline-offset: 2px;
}

.dgest-pg .btn-secondary {
  display: inline-block;
  background: transparent;
  color: #0E0E0E;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 6px;
  border: 2px solid #0E0E0E;
  cursor: pointer;
  box-shadow: 0 2px 2px 0 rgba(14,14,14,0.06);
  transition: box-shadow 0.14s ease-in, border-color 0.14s ease-in, color 0.14s ease-in;
  text-decoration: none;
}

.dgest-pg .btn-secondary:hover {
  border-color: #FF2F53;
  color: #FF2F53;
  box-shadow: 0 4px 20px 0 rgba(255,47,83,0.10);
}

.dgest-pg .btn-secondary:focus {
  outline: 2px solid #FF2F53;
  outline-offset: 2px;
}

.dgest-pg .lead-block {
  position: relative;
  background: #0E0E0E;
  padding: 80px 0 80px;
  overflow: hidden;
}

.dgest-pg .lead-block .pg-wrap {
  position: relative;
  z-index: 1;
}

.dgest-pg .lead-kicker {
  font-size: 15px;
  color: #FF2F53;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.35;
  animation: dgest-colorshift 0.18s cubic-bezier(0.4,0,1,1) both;
}

.dgest-pg .lead-h1 {
  font-size: 58px;
  line-height: 1.1;
  color: #EDEDED;
  font-weight: 900;
  margin: 0 0 40px;
  max-width: 700px;
}

.dgest-pg .lead-points {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.dgest-pg .lead-points li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: rgba(237,237,237,0.06);
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 2px 2px 0 rgba(14,14,14,0.06);
}

.dgest-pg .lead-points li .pt-marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: #FF2F53;
  border-radius: 1px;
  margin-top: 8px;
}

.dgest-pg .lead-points li p {
  margin: 0;
  font-size: 16px;
  color: #EDEDED;
  line-height: 1.55;
}

.dgest-pg .lead-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.dgest-pg .lead-block .btn-outline-light {
  display: inline-block;
  background: transparent;
  color: #EDEDED;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 6px;
  border: 2px solid rgba(237,237,237,0.35);
  cursor: pointer;
  box-shadow: 0 2px 2px 0 rgba(14,14,14,0.06);
  transition: border-color 0.13s cubic-bezier(0.4,0,1,1), color 0.13s cubic-bezier(0.4,0,1,1);
  text-decoration: none;
}

.dgest-pg .lead-block .btn-outline-light:hover {
  border-color: #FF2F53;
  color: #FF2F53;
}

.dgest-pg .lead-block .btn-outline-light:focus {
  outline: 2px solid #FF2F53;
  outline-offset: 2px;
}

.dgest-pg .topics-block {
  background: #EDEDED;
  padding: 80px 0;
  position: relative;
}

.dgest-pg .topics-block .block-label {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FF2F53;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.35;
}

.dgest-pg .topics-block .block-h2 {
  font-size: 43px;
  line-height: 1.1;
  color: #0E0E0E;
  font-weight: 900;
  margin: 0 0 8px;
}

.dgest-pg .topics-block .block-desc {
  font-size: 16px;
  color: #0E0E0E;
  line-height: 1.55;
  margin: 0 0 40px;
  max-width: 620px;
}

.dgest-pg .topics-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.dgest-pg .topic-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 16px 40px;
  box-shadow: 0 4px 20px 0 rgba(14,14,14,0.10);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.15s cubic-bezier(0.4,0,1,1);
  position: relative;
  overflow: hidden;
}

.dgest-pg .topic-card:hover {
  box-shadow: 0 8px 36px 0 rgba(14,14,14,0.13);
}

.dgest-pg .topic-card .card-num {
  font-size: 43px;
  font-weight: 900;
  color: rgba(14,14,14,0.06);
  line-height: 1.1;
  position: absolute;
  top: 8px;
  right: 16px;
  pointer-events: none;
}

.dgest-pg .topic-card .card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.dgest-pg .topic-card h4 {
  font-size: 23px;
  line-height: 1.35;
  color: #0E0E0E;
  font-weight: 800;
  margin: 0;
}

.dgest-pg .topic-card .card-h4-line {
  display: inline-block;
  border-bottom: 2px solid #FF2F53;
  padding-bottom: 4px;
}

.dgest-pg .topic-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #0E0E0E;
  margin: 0;
}

.dgest-pg .topic-card.featured {
  background: #0E0E0E;
  grid-column: span 1;
}

.dgest-pg .topic-card.featured h4 {
  color: #EDEDED;
}

.dgest-pg .topic-card.featured p {
  color: rgba(237,237,237,0.75);
}

.dgest-pg .topic-card.featured .card-num {
  color: rgba(255,47,83,0.12);
}

.dgest-pg .topic-card.featured .card-h4-line {
  border-bottom-color: #FF2F53;
}

.dgest-pg .geo-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.dgest-pg .geo-bg-shapes .shape-a {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 40px solid rgba(14,14,14,0.025);
  border-radius: 1px;
  bottom: -80px;
  right: -80px;
  transform: rotate(20deg);
}

.dgest-pg .geo-bg-shapes .shape-b {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255,47,83,0.03);
  border-radius: 1px;
  top: 40px;
  left: -40px;
  transform: rotate(12deg);
}

.dgest-pg .detail-block {
  background: #fff;
  padding: 80px 0;
  position: relative;
}

.dgest-pg .detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.dgest-pg .detail-visual {
  position: relative;
}

.dgest-pg .detail-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  filter: saturate(0.3) contrast(1.1);
  box-shadow: 0 8px 36px 0 rgba(14,14,14,0.13);
}

.dgest-pg .detail-visual .stat-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: #FF2F53;
  color: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 20px 0 rgba(255,47,83,0.10);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
}

.dgest-pg .detail-visual .stat-badge .stat-num {
  font-size: 31px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}

.dgest-pg .detail-visual .stat-badge .stat-label {
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255,255,255,0.85);
}

.dgest-pg .detail-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.dgest-pg .detail-text .block-label {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FF2F53;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
}

.dgest-pg .detail-text h2 {
  font-size: 43px;
  line-height: 1.1;
  color: #0E0E0E;
  font-weight: 900;
  margin: 0;
}

.dgest-pg .detail-text p {
  font-size: 16px;
  line-height: 1.55;
  color: #0E0E0E;
  margin: 0;
}

.dgest-pg .detail-text .metric-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.dgest-pg .detail-text .metric-item {
  flex: 1;
  min-width: 120px;
  background: #EDEDED;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dgest-pg .detail-text .metric-item .m-val {
  font-size: 31px;
  font-weight: 900;
  color: #0E0E0E;
  line-height: 1.1;
}

.dgest-pg .detail-text .metric-item .m-desc {
  font-size: 15px;
  color: #0E0E0E;
  line-height: 1.35;
}

.dgest-pg .detail-text .metric-item .m-val .accent {
  color: #FF2F53;
}

.dgest-pg .detail-text .path-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dgest-pg .detail-text .path-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: #0E0E0E;
  background: #EDEDED;
  border-radius: 6px;
  padding: 16px;
}

.dgest-pg .detail-text .path-list li .pl-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: #FF2F53;
  border-radius: 1px;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .dgest-pg .topics-layout {
    grid-template-columns: 1fr 1fr;
  }
  .dgest-pg .detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dgest-pg .lead-h1 {
    font-size: 43px;
  }
  .dgest-pg .detail-visual .stat-badge {
    bottom: 8px;
    left: 8px;
  }
}

@media (max-width: 600px) {
  .dgest-pg .topics-layout {
    grid-template-columns: 1fr;
  }
  .dgest-pg .lead-h1 {
    font-size: 31px;
  }
  .dgest-pg .topics-block .block-h2,
  .dgest-pg .detail-text h2 {
    font-size: 31px;
  }
  .dgest-pg .pg-wrap {
    padding: 0 16px;
  }
  .dgest-pg .lead-actions {
    flex-direction: column;
  }
  .dgest-pg .detail-text .metric-row {
    flex-direction: column;
  }
}

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

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

.meth-page .reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.18s cubic-bezier(0.4,0,1,1) forwards;
}

.meth-page .reveal-1 { animation-delay: 0.05s; }
.meth-page .reveal-2 { animation-delay: 0.10s; }
.meth-page .reveal-3 { animation-delay: 0.15s; }
.meth-page .reveal-4 { animation-delay: 0.18s; }

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

.meth-page .fade-in {
  opacity: 0;
  animation: fadeOnly 0.16s cubic-bezier(0.4,0,1,1) forwards;
  animation-delay: 0.08s;
}

@keyframes fadeOnly {
  to { opacity: 1; }
}

.meth-page a {
  color: #FF2F53;
  text-decoration: none;
  background-image: linear-gradient(#FF2F53, #FF2F53);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: right bottom;
  transition: background-size 0.16s cubic-bezier(0.4,0,1,1);
}

.meth-page a:hover {
  background-size: 100% 1px;
  background-position: left bottom;
}

.meth-page .pg-cap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.meth-page .btn-prim {
  display: inline-block;
  background: #0E0E0E;
  color: #EDEDED;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background-image: none;
  background-size: auto;
  background-repeat: no-repeat;
  box-shadow: 0 2px 2px 0 rgba(14,14,14,0.06);
  transition: box-shadow 0.14s cubic-bezier(0.4,0,1,1), background 0.12s ease-in;
}

.meth-page .btn-prim:hover {
  background: #FF2F53;
  color: #fff;
  box-shadow: 0 8px 36px 0 rgba(255,47,83,0.13);
  background-image: none;
  background-size: auto;
}

.meth-page .btn-prim:focus {
  outline: 2px solid #FF2F53;
  outline-offset: 3px;
}

.meth-page .btn-prim:active {
  box-shadow: 0 2px 2px 0 rgba(14,14,14,0.06);
}

.meth-page .geo-line {
  position: absolute;
  pointer-events: none;
}

.meth-page .accent-sup {
  font-size: 15px;
  color: #FF2F53;
  vertical-align: super;
  line-height: 1;
  font-weight: 700;
}

.meth-page .underline-head {
  display: inline-block;
  border-bottom: 2px solid #FF2F53;
  padding-bottom: 4px;
}

.meth-page .section-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF2F53;
  margin-bottom: 16px;
  display: block;
}

.meth-page .punct-anchor {
  position: absolute;
  font-size: 58px;
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 1.5px #EDEDED;
  pointer-events: none;
  user-select: none;
  font-weight: 900;
  z-index: 0;
}

.meth-page .rel {
  position: relative;
}

.meth-page .z1 {
  position: relative;
  z-index: 1;
}

.meth-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.meth-page .title-strip {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #0E0E0E;
  margin-left: 40px;
  border-radius: 1px 1px 38px 1px;
  overflow: hidden;
}

.meth-page .title-strip .pg-cap {
  padding-left: 0;
}

.meth-page .title-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.meth-page .title-text {
  flex: 1 1 0;
  min-width: 0;
}

.meth-page .title-text .section-label {
  color: #FF2F53;
}

.meth-page .title-h1 {
  font-size: 58px;
  line-height: 1.1;
  color: #EDEDED;
  font-weight: 900;
  margin: 0 0 16px 0;
}

.meth-page .title-h1 em {
  font-style: normal;
  color: #FF2F53;
}

.meth-page .title-lead {
  font-size: 16px;
  line-height: 1.55;
  color: #EDEDED;
  opacity: 0.82;
  max-width: 520px;
  margin: 0 0 40px 0;
}

.meth-page .title-card {
  flex: 0 0 300px;
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 36px 0 rgba(255,47,83,0.13);
  position: relative;
  align-self: stretch;
}

.meth-page .title-card img {
  width: 300px;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.15);
}

.meth-page .title-geo-tl {
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-top: 2px solid #FF2F53;
  border-left: 2px solid #FF2F53;
  border-radius: 1px;
}

.meth-page .title-geo-br {
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid #EDEDED;
  border-right: 2px solid #EDEDED;
  border-radius: 1px;
}

.meth-page .step-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #EDEDED;
  margin-right: 40px;
  border-radius: 1px 1px 1px 38px;
}

.meth-page .step-section .pg-cap {
  padding-right: 0;
}

.meth-page .steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.meth-page .step-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 20px 0 rgba(14,14,14,0.10);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.14s cubic-bezier(0.4,0,1,1);
}

.meth-page .step-card:hover {
  box-shadow: 0 8px 36px 0 rgba(14,14,14,0.13);
}

.meth-page .step-num {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px #EDEDED;
  position: absolute;
  top: 8px;
  right: 16px;
  pointer-events: none;
  user-select: none;
}

.meth-page .step-icon {
  width: 40px;
  height: 40px;
  background: #FF2F53;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.meth-page .step-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.meth-page .step-h {
  font-size: 23px;
  line-height: 1.35;
  font-weight: 800;
  color: #0E0E0E;
  margin: 0 0 8px 0;
}

.meth-page .step-p {
  font-size: 15px;
  line-height: 1.55;
  color: #0E0E0E;
  margin: 0;
  opacity: 0.82;
}

.meth-page .skills-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
  position: relative;
}

.meth-page .skills-inner {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.meth-page .skills-left {
  flex: 0 0 440px;
  width: 440px;
}

.meth-page .skills-right {
  flex: 1 1 0;
  min-width: 0;
}

.meth-page .skills-img-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 36px 0 rgba(255,47,83,0.13);
  position: relative;
}

.meth-page .skills-img-wrap img {
  width: 440px;
  height: 360px;
  object-fit: cover;
  display: block;
}

.meth-page .skills-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #FF2F53;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.meth-page .skills-h2 {
  font-size: 43px;
  line-height: 1.1;
  font-weight: 900;
  color: #0E0E0E;
  margin: 0 0 16px 0;
}

.meth-page .skills-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #0E0E0E;
  opacity: 0.82;
  margin: 0 0 40px 0;
}

.meth-page .bar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meth-page .bar-item {
  background: #fff;
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 2px 2px 0 rgba(14,14,14,0.06);
}

.meth-page .bar-label-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.meth-page .bar-label {
  font-size: 15px;
  font-weight: 700;
  color: #0E0E0E;
}

.meth-page .bar-pct {
  font-size: 15px;
  font-weight: 800;
  color: #FF2F53;
}

.meth-page .bar-track {
  height: 8px;
  background: #EDEDED;
  border-radius: 1px;
  overflow: hidden;
}

.meth-page .bar-fill {
  height: 100%;
  background: linear-gradient(31deg, #0E0E0E, #FF2F53);
  border-radius: 1px;
  transform-origin: left center;
  animation: barGrow 0.18s cubic-bezier(0.4,0,1,1) forwards;
  animation-delay: 0.12s;
  transform: scaleX(0);
}

@keyframes barGrow {
  to { transform: scaleX(1); }
}

.meth-page .bar-fill[data-w="88"] { width: 88%; }
.meth-page .bar-fill[data-w="74"] { width: 74%; }
.meth-page .bar-fill[data-w="91"] { width: 91%; }
.meth-page .bar-fill[data-w="67"] { width: 67%; }
.meth-page .bar-fill[data-w="82"] { width: 82%; }

.meth-page .skills-cta {
  margin-top: 40px;
}

.meth-page .punct-anchor.pa-1 {
  top: -8px;
  left: 0;
}

.meth-page .punct-anchor.pa-2 {
  bottom: 0;
  right: 0;
}

@media (max-width: 900px) {
  .meth-page .title-strip {
    margin-left: 16px;
  }

  .meth-page .step-section {
    margin-right: 16px;
  }

  .meth-page .title-inner {
    flex-direction: column;
  }

  .meth-page .title-card {
    flex: 0 0 auto;
    width: 100%;
  }

  .meth-page .title-card img {
    width: 100%;
    height: 220px;
  }

  .meth-page .title-h1 {
    font-size: 43px;
  }

  .meth-page .steps-grid {
    grid-template-columns: 1fr;
  }

  .meth-page .skills-inner {
    flex-direction: column;
    gap: 40px;
  }

  .meth-page .skills-left {
    flex: 0 0 auto;
    width: 100%;
  }

  .meth-page .skills-img-wrap img {
    width: 100%;
    height: 260px;
  }

  .meth-page .skills-h2 {
    font-size: 31px;
  }
}

@media (max-width: 600px) {
  .meth-page .pg-cap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .meth-page .title-h1 {
    font-size: 31px;
  }

  .meth-page .title-strip {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-left: 8px;
  }

  .meth-page .step-section {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-right: 8px;
  }

  .meth-page .skills-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .meth-page .step-card {
    padding: 16px;
  }

  .meth-page .skills-h2 {
    font-size: 23px;
  }
}

.str {
  background: #fff;
  overflow-x: hidden;
  position: relative;
}

.str .fade-in {
  opacity: 0;
  animation: strFadeIn 0.16s cubic-bezier(0.4,0,1,1) forwards;
}
.str .fade-in:nth-child(1) { animation-delay: 0.05s; }
.str .fade-in:nth-child(2) { animation-delay: 0.10s; }
.str .fade-in:nth-child(3) { animation-delay: 0.15s; }
.str .fade-in:nth-child(4) { animation-delay: 0.20s; }
.str .fade-in:nth-child(5) { animation-delay: 0.25s; }
@keyframes strFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}


.str .tb {
  position: relative;
  background: #0E0E0E;
  padding: 80px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
  max-width: 100%;
}
.str .tb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(14,14,14,0) 40%, rgba(14,14,14,0.82) 100%);
  pointer-events: none;
  z-index: 1;
}
.str .tb-img-wrap {
  position: relative;
  flex: 0 0 520px;
  overflow: hidden;
  border-radius: 10px;
}
.str .tb-img-wrap img {
  width: 520px;
  height: 380px;
  object-fit: cover;
  display: block;
  opacity: 0.18;
}
.str .tb-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(31deg, rgba(14,14,14,0.0) 0%, rgba(14,14,14,0.95) 100%);
  pointer-events: none;
}
.str .tb-text {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.str .tb-dot-grid {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 120px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.str .tb-dot-grid svg {
  width: 100%;
  height: 100%;
}
.str .tb-label {
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF2F53;
  font-weight: 600;
}
.str .tb-h1 {
  font-size: 58px;
  line-height: 1.1;
  color: #EDEDED;
  font-weight: 800;
  margin: 0;
}
.str .tb-h1 span {
  color: #FF2F53;
}
.str .tb-sub {
  font-size: 16px;
  line-height: 1.55;
  color: #EDEDED;
  opacity: 0.72;
  max-width: 480px;
  margin: 0;
}
.str .tb-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}
.str .btn-prim {
  display: inline-block;
  background: #FF2F53;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.12s cubic-bezier(0.4,0,1,1), background 0.12s cubic-bezier(0.4,0,1,1);
  box-shadow: 0 2px 2px 0 rgba(255,47,83,0.06);
}
.str .btn-prim:hover {
  box-shadow: 0 8px 36px 0 rgba(255,47,83,0.13);
  background: #e0002b;
}
.str .btn-prim:focus {
  outline: 2px solid #FF2F53;
  outline-offset: 3px;
}
.str .btn-sec {
  display: inline-block;
  background: transparent;
  color: #EDEDED;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 6px;
  border: 1px solid rgba(237,237,237,0.3);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.14s ease-in, color 0.14s ease-in;
}
.str .btn-sec:hover {
  border-color: #FF2F53;
  color: #FF2F53;
}
.str .btn-sec:focus {
  outline: 2px solid #FF2F53;
  outline-offset: 3px;
}


.str .arc {
  background: #EDEDED;
  padding: 80px 40px;
  position: relative;
}
.str .arc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.str .arc-text-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.str .sec-prefix {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.str .sec-prefix-shape {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.str .arc-h2 {
  font-size: 43px;
  line-height: 1.1;
  color: #0E0E0E;
  font-weight: 800;
  margin: 0;
  text-decoration: underline;
  text-decoration-color: #FF2F53;
  text-underline-offset: 6px;
}
.str .arc-p {
  font-size: 16px;
  line-height: 1.55;
  color: #0E0E0E;
  margin: 0;
}
.str .arc-stages {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.str .arc-stage {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 2px 2px 0 rgba(14,14,14,0.06);
  transition: box-shadow 0.13s ease-in;
}
.str .arc-stage:hover {
  box-shadow: 0 4px 20px 0 rgba(14,14,14,0.10);
}
.str .arc-num {
  font-size: 31px;
  font-weight: 800;
  color: #FF2F53;
  line-height: 1.1;
  flex-shrink: 0;
  width: 40px;
}
.str .arc-stage-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.str .arc-stage-h {
  font-size: 16px;
  font-weight: 700;
  color: #0E0E0E;
  margin: 0;
}
.str .arc-stage-p {
  font-size: 15px;
  line-height: 1.55;
  color: #0E0E0E;
  margin: 0;
  opacity: 0.78;
}
.str .arc-deco {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}
.str .arc-deco span {
  display: block;
  width: 32px;
  height: 3px;
  background: #FF2F53;
  border-radius: 1px;
}
.str .arc-deco span:nth-child(2) { width: 22px; }
.str .arc-deco span:nth-child(3) { width: 14px; }


.str .curr {
  background: #0E0E0E;
  padding: 80px 40px;
  position: relative;
}
.str .curr::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,47,83,0.07) 0%, rgba(14,14,14,0) 65%);
  pointer-events: none;
}
.str .curr-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.str .curr-top {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}
.str .curr-head {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.str .curr-h2 {
  font-size: 43px;
  line-height: 1.1;
  color: #EDEDED;
  font-weight: 800;
  margin: 0;
  text-decoration: underline;
  text-decoration-color: #FF2F53;
  text-underline-offset: 6px;
}
.str .curr-p {
  font-size: 16px;
  line-height: 1.55;
  color: #EDEDED;
  opacity: 0.75;
  margin: 0;
}
.str .curr-img-wrap {
  flex: 1 1 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.str .curr-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  opacity: 0.12;
}
.str .curr-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(31deg, rgba(14,14,14,0.6) 0%, rgba(255,47,83,0.08) 100%);
  pointer-events: none;
}
.str .curr-strip {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}
.str .curr-feat {
  flex: 1 1 160px;
  background: rgba(237,237,237,0.06);
  border: 1px solid rgba(237,237,237,0.12);
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  transition: background 0.13s ease-in, border-color 0.13s ease-in;
}
.str .curr-feat:hover {
  background: rgba(255,47,83,0.08);
  border-color: rgba(255,47,83,0.3);
}
.str .curr-feat-icon {
  width: 32px;
  height: 32px;
}
.str .curr-feat-label {
  font-size: 15px;
  font-weight: 700;
  color: #EDEDED;
  line-height: 1.35;
}
.str .curr-feat-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #EDEDED;
  opacity: 0.65;
  margin: 0;
}


.str .inv {
  background: #fff;
  padding: 80px 40px;
  position: relative;
}
.str .inv-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: stretch;
}
.str .inv-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.str .inv-h2 {
  font-size: 43px;
  line-height: 1.1;
  color: #0E0E0E;
  font-weight: 800;
  margin: 0;
  text-decoration: underline;
  text-decoration-color: #FF2F53;
  text-underline-offset: 6px;
}
.str .inv-p {
  font-size: 16px;
  line-height: 1.55;
  color: #0E0E0E;
  margin: 0;
}
.str .inv-fact-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.str .inv-fact {
  background: #EDEDED;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.str .inv-fact-val {
  font-size: 31px;
  font-weight: 800;
  color: #FF2F53;
  line-height: 1.1;
  flex-shrink: 0;
  min-width: 80px;
}
.str .inv-fact-desc {
  font-size: 15px;
  line-height: 1.35;
  color: #0E0E0E;
  margin: 0;
}
.str .inv-img-col {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.str .inv-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  flex: 1 1 0;
}
.str .inv-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}
.str .inv-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(31deg, rgba(255,47,83,0.08) 0%, rgba(14,14,14,0.0) 100%);
  pointer-events: none;
}
.str .inv-note {
  font-size: 15px;
  line-height: 1.55;
  color: #0E0E0E;
  opacity: 0.6;
  margin: 0;
}


.str .ltv {
  background: #EDEDED;
  padding: 80px 40px;
  position: relative;
}
.str .ltv-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.str .ltv-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.str .ltv-h2 {
  font-size: 43px;
  line-height: 1.1;
  color: #0E0E0E;
  font-weight: 800;
  margin: 0;
  text-decoration: underline;
  text-decoration-color: #FF2F53;
  text-underline-offset: 6px;
}
.str .ltv-intro {
  font-size: 16px;
  line-height: 1.55;
  color: #0E0E0E;
  margin: 0;
}
.str .ltv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.str .ltv-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 2px 0 rgba(14,14,14,0.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.15s ease-in;
}
.str .ltv-card:hover {
  box-shadow: 0 4px 20px 0 rgba(14,14,14,0.10);
}
.str .ltv-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(31deg, #0E0E0E 0%, #FF2F53 100%);
  border-radius: 1px 0 0 1px;
}
.str .ltv-card-h {
  font-size: 16px;
  font-weight: 700;
  color: #0E0E0E;
  margin: 0;
  padding-left: 8px;
}
.str .ltv-card-p {
  font-size: 15px;
  line-height: 1.55;
  color: #0E0E0E;
  margin: 0;
  opacity: 0.78;
  padding-left: 8px;
}
.str .ltv-complex {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  box-shadow: 0 4px 20px 0 rgba(14,14,14,0.10);
}
.str .ltv-complex-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.str .ltv-complex-h {
  font-size: 23px;
  font-weight: 700;
  color: #0E0E0E;
  margin: 0;
}
.str .ltv-complex-p {
  font-size: 15px;
  line-height: 1.55;
  color: #0E0E0E;
  margin: 0;
}
.str .ltv-fact-embed {
  background: #0E0E0E;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.str .ltv-fact-embed-val {
  font-size: 43px;
  font-weight: 800;
  color: #FF2F53;
  line-height: 1.1;
}
.str .ltv-fact-embed-label {
  font-size: 15px;
  color: #EDEDED;
  line-height: 1.35;
  opacity: 0.8;
}
.str .ltv-complex-facts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.str .ltv-link {
  color: #FF2F53;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  background-image: linear-gradient(#FF2F53, #FF2F53);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: right bottom;
  transition: background-size 0.14s ease-in, color 0.14s ease-in;
  display: inline;
}
.str .ltv-link:hover {
  background-size: 100% 2px;
  background-position: left bottom;
}


.str .rep {
  background: #0E0E0E;
  padding: 80px 40px;
  position: relative;
}
.str .rep::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255,47,83,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(255,47,83,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.str .rep-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.str .rep-top {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-end;
}
.str .rep-h2 {
  font-size: 43px;
  line-height: 1.1;
  color: #EDEDED;
  font-weight: 800;
  margin: 0;
  flex: 1 1 0;
  text-decoration: underline;
  text-decoration-color: #FF2F53;
  text-underline-offset: 6px;
}
.str .rep-p {
  font-size: 16px;
  line-height: 1.55;
  color: #EDEDED;
  opacity: 0.72;
  margin: 0;
  flex: 1 1 0;
}
.str .rep-refs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.str .rep-ref {
  background: rgba(237,237,237,0.05);
  border: 1px solid rgba(237,237,237,0.10);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.12s cubic-bezier(0.4,0,1,1), border-color 0.12s cubic-bezier(0.4,0,1,1);
}
.str .rep-ref:hover {
  background: rgba(255,47,83,0.07);
  border-color: rgba(255,47,83,0.25);
}
.str .rep-ref-tag {
  font-size: 15px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #FF2F53;
  font-weight: 700;
}
.str .rep-ref-name {
  font-size: 16px;
  font-weight: 700;
  color: #EDEDED;
  margin: 0;
}
.str .rep-ref-role {
  font-size: 15px;
  color: #EDEDED;
  opacity: 0.6;
  margin: 0;
  line-height: 1.35;
}
.str .rep-ref-quote {
  font-size: 15px;
  line-height: 1.55;
  color: #EDEDED;
  opacity: 0.75;
  margin: 0;
}
.str .rep-rating {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  background: rgba(237,237,237,0.04);
  border-radius: 10px;
  padding: 16px 40px;
  border: 1px solid rgba(237,237,237,0.08);
}
.str .rep-rating-val {
  font-size: 58px;
  font-weight: 800;
  color: #FF2F53;
  line-height: 1.1;
}
.str .rep-rating-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.str .rep-rating-label {
  font-size: 16px;
  font-weight: 700;
  color: #EDEDED;
}
.str .rep-rating-count {
  font-size: 15px;
  color: #EDEDED;
  opacity: 0.6;
}
.str .rep-stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.str .rep-star {
  width: 20px;
  height: 20px;
}
.str .rep-assoc {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.str .rep-assoc-label {
  font-size: 15px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #EDEDED;
  opacity: 0.5;
  font-weight: 600;
}
.str .rep-assoc-list {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}
.str .rep-assoc-item {
  background: rgba(237,237,237,0.07);
  border-radius: 22px;
  padding: 8px 16px;
  font-size: 15px;
  color: #EDEDED;
  font-weight: 600;
  border: 1px solid rgba(237,237,237,0.12);
}


@media (max-width: 900px) {
  .str .tb {
    flex-direction: column;
    gap: 40px;
    padding: 40px 16px;
  }
  .str .tb-img-wrap {
    flex: none;
    width: 100%;
  }
  .str .tb-img-wrap img {
    width: 100%;
    height: 220px;
  }
  .str .tb-h1 {
    font-size: 43px;
  }
  .str .arc-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .str .arc { padding: 40px 16px; }
  .str .curr { padding: 40px 16px; }
  .str .curr-top {
    flex-direction: column;
    gap: 40px;
  }
  .str .curr-head { flex: none; }
  .str .inv { padding: 40px 16px; }
  .str .inv-inner {
    flex-direction: column;
    gap: 40px;
  }
  .str .inv-img-col { flex: none; }
  .str .inv-img-wrap img { height: 220px; }
  .str .ltv { padding: 40px 16px; }
  .str .ltv-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .str .ltv-cards {
    grid-template-columns: 1fr;
  }
  .str .ltv-complex {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }
  .str .rep { padding: 40px 16px; }
  .str .rep-top {
    flex-direction: column;
    gap: 16px;
  }
  .str .rep-refs {
    grid-template-columns: 1fr;
  }
  .str .rep-rating {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
  }
}
@media (max-width: 600px) {
  .str .tb-h1 { font-size: 31px; }
  .str .arc-h2, .str .curr-h2, .str .inv-h2, .str .ltv-h2, .str .rep-h2 { font-size: 31px; }
  .str .tb-actions { flex-direction: column; align-items: flex-start; }
  .str .curr-strip { flex-direction: column; }
}

.abt-us {
  background: #fff;
  overflow-x: clip;
}

.abt-us .reveal-item {
  opacity: 0;
  transform: translateX(-32px);
  animation: slideIn 0.16s cubic-bezier(0.4,0,1,1) forwards;
}
.abt-us .reveal-item:nth-child(1) { animation-delay: 0.05s; }
.abt-us .reveal-item:nth-child(2) { animation-delay: 0.11s; }
.abt-us .reveal-item:nth-child(3) { animation-delay: 0.17s; }
.abt-us .reveal-item:nth-child(4) { animation-delay: 0.23s; }
.abt-us .reveal-item.from-right {
  transform: translateX(32px);
}

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

.abt-us .pg-split {
  display: flex;
  flex-direction: row;
  min-height: 560px;
  max-width: 100%;
  position: relative;
}

.abt-us .pg-split .split-left {
  flex: 0 0 55%;
  background: #0E0E0E;
  padding: 80px 40px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  z-index: 1;
}

.abt-us .pg-split .split-left::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 320px;
  height: 320px;
  border-radius: 38px;
  background: linear-gradient(31deg, rgba(255,47,83,0.13), rgba(14,14,14,0));
  pointer-events: none;
}

.abt-us .pg-split .split-left::after {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 80px;
  width: 160px;
  height: 2px;
  background: linear-gradient(31deg, #FF2F53, rgba(255,47,83,0));
  pointer-events: none;
}

.abt-us .pg-split .split-right {
  flex: 0 0 48%;
  margin-left: -60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 80px;
  background: #EDEDED;
  position: relative;
  z-index: 0;
}

.abt-us .split-eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF2F53;
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.abt-us .split-eyebrow .eye-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #FF2F53;
  flex-shrink: 0;
}

.abt-us .split-h1 {
  font-size: 58px;
  line-height: 1.1;
  color: #EDEDED;
  font-weight: 900;
  margin: 0 0 16px 0;
}

.abt-us .split-h1 em {
  font-style: normal;
  color: #FF2F53;
}

.abt-us .split-sub {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(237,237,237,0.78);
  margin: 0 0 40px 0;
  max-width: 400px;
}

.abt-us .split-stats {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.abt-us .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt-us .stat-num {
  font-size: 43px;
  line-height: 1.1;
  font-weight: 900;
  color: #FF2F53;
}

.abt-us .stat-label {
  font-size: 15px;
  line-height: 1.35;
  color: rgba(237,237,237,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.abt-us .split-right-h2 {
  font-size: 31px;
  line-height: 1.35;
  color: #0E0E0E;
  font-weight: 800;
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #0E0E0E;
  display: inline-block;
}

.abt-us .split-right-body {
  font-size: 16px;
  line-height: 1.55;
  color: #0E0E0E;
  margin: 0 0 16px 0;
}

.abt-us .split-right-body:last-child {
  margin-bottom: 0;
}

.abt-us .right-accent-pair {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.abt-us .accent-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.abt-us .accent-icon svg {
  width: 22px;
  height: 22px;
}

.abt-us .accent-label {
  font-size: 15px;
  font-weight: 700;
  color: #0E0E0E;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.abt-us .right-accent-pair .accent-icon:last-child {
  margin-left: auto;
}

.abt-us .curved-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #EDEDED;
}

.abt-us .curved-divider svg {
  display: block;
  width: 100%;
}

.abt-us .team-section {
  background: #fff;
  padding: 80px 0;
}

.abt-us .team-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.abt-us .team-h2 {
  font-size: 43px;
  line-height: 1.1;
  font-weight: 900;
  color: #0E0E0E;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #FF2F53;
  display: inline-block;
}

.abt-us .team-intro {
  font-size: 16px;
  line-height: 1.55;
  color: #0E0E0E;
  max-width: 420px;
  margin: 0;
}

.abt-us .team-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 1.4fr;
  gap: 16px;
  align-items: start;
}

.abt-us .team-card {
  background: #EDEDED;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px 0 rgba(14,14,14,0.10);
  transition: box-shadow 0.14s cubic-bezier(0.4,0,1,1);
  display: flex;
  flex-direction: column;
}

.abt-us .team-card:hover {
  box-shadow: 0 8px 36px 0 rgba(14,14,14,0.13);
}

.abt-us .team-card .card-img-wrap {
  width: 100%;
  overflow: hidden;
}

.abt-us .team-card .card-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) brightness(0.97);
  transition: transform 0.16s cubic-bezier(0.4,0,1,1);
}

.abt-us .team-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.abt-us .team-card.card-lg .card-img-wrap img {
  height: 340px;
}

.abt-us .team-card.card-sm .card-img-wrap img {
  height: 200px;
}

.abt-us .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.abt-us .card-name {
  font-size: 23px;
  line-height: 1.35;
  font-weight: 800;
  color: #0E0E0E;
  margin: 0;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(14,14,14,0.18);
}

.abt-us .card-role {
  font-size: 15px;
  font-weight: 700;
  color: #FF2F53;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.abt-us .card-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #0E0E0E;
  margin: 0;
}

.abt-us .values-band {
  background: #0E0E0E;
  padding: 40px 0;
}

.abt-us .values-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: stretch;
}

.abt-us .value-item {
  flex: 1;
  background: rgba(255,47,83,0.08);
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 2px 0 rgba(255,47,83,0.06);
  transition: background 0.12s ease-in;
}

.abt-us .value-item:hover {
  background: rgba(255,47,83,0.16);
}

.abt-us .value-icon {
  width: 32px;
  height: 32px;
}

.abt-us .value-icon svg {
  width: 32px;
  height: 32px;
}

.abt-us .value-name {
  font-size: 16px;
  font-weight: 800;
  color: #EDEDED;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0;
}

.abt-us .value-desc {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(237,237,237,0.72);
  margin: 0;
}

.abt-us .approach-section {
  background: #fff;
  padding: 80px 0;
}

.abt-us .approach-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.abt-us .approach-img-col {
  flex: 0 0 44%;
  position: relative;
}

.abt-us .approach-img-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 36px 0 rgba(14,14,14,0.13);
}

.abt-us .approach-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  filter: saturate(0.8) brightness(0.95);
}

.abt-us .approach-deco {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: linear-gradient(31deg, #FF2F53, #0E0E0E);
  z-index: 0;
  pointer-events: none;
}

.abt-us .approach-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-us .approach-h2 {
  font-size: 43px;
  line-height: 1.1;
  font-weight: 900;
  color: #0E0E0E;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #0E0E0E;
  display: inline-block;
}

.abt-us .approach-body {
  font-size: 16px;
  line-height: 1.55;
  color: #0E0E0E;
  margin: 0;
}

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

.abt-us .approach-list li {
  background: #EDEDED;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 15px;
  line-height: 1.55;
  color: #0E0E0E;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 2px 0 rgba(14,14,14,0.06);
}

.abt-us .approach-list li .li-dot {
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: #FF2F53;
  flex-shrink: 0;
}

.abt-us .approach-cta {
  display: inline-block;
  align-self: flex-start;
  padding: 16px 40px;
  background: #FF2F53;
  color: #EDEDED;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 4px 20px 0 rgba(255,47,83,0.10);
  transition: box-shadow 0.14s cubic-bezier(0.4,0,1,1);
}

.abt-us .approach-cta:hover {
  box-shadow: 0 8px 36px 0 rgba(255,47,83,0.13);
}

.abt-us .approach-cta:focus {
  outline: 2px solid #FF2F53;
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .abt-us .pg-split {
    flex-direction: column;
  }
  .abt-us .pg-split .split-left {
    flex: none;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    padding: 80px 40px 80px 40px;
  }
  .abt-us .pg-split .split-right {
    flex: none;
    margin-left: 0;
    width: 100%;
    padding: 80px 40px;
  }
  .abt-us .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .abt-us .approach-inner {
    flex-direction: column;
  }
  .abt-us .approach-img-col {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .abt-us .split-h1 { font-size: 43px; }
  .abt-us .team-h2 { font-size: 31px; }
  .abt-us .approach-h2 { font-size: 31px; }
  .abt-us .team-grid { grid-template-columns: 1fr; }
  .abt-us .values-inner { flex-direction: column; }
  .abt-us .team-header { flex-direction: column; align-items: flex-start; }
  .abt-us .split-stats { flex-direction: column; gap: 16px; }
  .abt-us .pg-split .split-left { padding: 40px 16px; }
  .abt-us .pg-split .split-right { padding: 40px 16px; }
  .abt-us .team-inner { padding: 0 16px; }
  .abt-us .values-inner { padding: 0 16px; }
  .abt-us .approach-inner { padding: 0 16px; }
}

.ct-us {
  background: #fff;
  overflow-x: clip;
  position: relative;
}

.ct-us .fog-layer {
  position: fixed;
  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  background: linear-gradient(31deg, rgba(237,237,237,0.07) 0%, rgba(255,255,255,0.13) 50%, rgba(237,237,237,0.05) 100%);
  pointer-events: none;
  z-index: 0;
  animation: fog-drift 18s cubic-bezier(0.4,0,1,1) infinite alternate;
}

@keyframes fog-drift {
  0% { transform: translateX(0) scaleX(1); opacity: 0.7; }
  100% { transform: translateX(8%) scaleX(1.04); opacity: 1; }
}

.ct-us .geo-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  overflow: hidden;
}

.ct-us .geo-divider span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #EDEDED;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.ct-us .geo-divider span.accent {
  background: #FF2F53;
  width: 10px;
  height: 10px;
}

.ct-us .geo-divider span.mid {
  background: #0E0E0E;
  width: 6px;
  height: 6px;
}

.ct-us .pill-label {
  display: inline-block;
  background: #FF2F53;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 38px;
  line-height: 1.55;
}

.ct-us .pill-label.muted {
  background: #EDEDED;
  color: #0E0E0E;
}

.ct-us .reach-block {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 16px 40px;
  text-align: center;
  overflow: hidden;
}

.ct-us .reach-block .img-frame {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.ct-us .reach-block .img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(ellipse at 50% 80%, rgba(14,14,14,0.38) 0%, transparent 70%);
  pointer-events: none;
}

.ct-us .reach-block .img-frame .deco-geo {
  position: absolute;
  top: -24px;
  right: -32px;
  width: 120px;
  height: 120px;
  background: linear-gradient(31deg, rgba(255,47,83,0.13), rgba(237,237,237,0.22));
  border-radius: 22px;
  transform: rotate(18deg);
  z-index: -1;
  pointer-events: none;
}

.ct-us .reach-block .img-frame img {
  display: block;
  width: 560px;
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 8px 36px 0 rgba(14,14,14,0.13);
}

.ct-us .reach-block .reach-heading {
  max-width: 700px;
}

.ct-us .reach-block .reach-heading h1 {
  font-size: 58px;
  line-height: 1.1;
  color: #0E0E0E;
  margin: 0 0 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.ct-us .reach-block .reach-heading h1 em {
  font-style: normal;
  color: #FF2F53;
}

.ct-us .reach-block .reach-heading p {
  font-size: 16px;
  line-height: 1.55;
  color: #0E0E0E;
  margin: 0 0 16px;
  opacity: 0.72;
}

.ct-us .reach-block .reach-heading .pill-label {
  margin-bottom: 16px;
}

.ct-us .split-contact {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  align-items: start;
}

@media (max-width: 860px) {
  .ct-us .split-contact {
    grid-template-columns: 1fr;
    padding: 40px 16px;
  }
}

.ct-us .form-col {
  background: #0E0E0E;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 8px 36px 0 rgba(14,14,14,0.13);
  position: relative;
  overflow: hidden;
}

.ct-us .form-col::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: linear-gradient(31deg, rgba(255,47,83,0.18), rgba(237,237,237,0.04));
  border-radius: 38px;
  transform: rotate(31deg);
  pointer-events: none;
}

.ct-us .form-col h2 {
  font-size: 31px;
  line-height: 1.1;
  color: #EDEDED;
  margin: 0 0 8px;
  font-weight: 800;
}

.ct-us .form-col h2 span {
  color: #FF2F53;
}

.ct-us .form-col .form-sub {
  font-size: 15px;
  line-height: 1.55;
  color: #EDEDED;
  opacity: 0.6;
  margin: 0 0 40px;
}

.ct-us .form-col .field-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.ct-us .form-col .field-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-us .form-col label {
  font-size: 15px;
  color: #EDEDED;
  opacity: 0.7;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
}

.ct-us .form-col input[type="text"],
.ct-us .form-col input[type="email"],
.ct-us .form-col input[type="tel"],
.ct-us .form-col select {
  width: 100%;
  background: rgba(237,237,237,0.07);
  border: 1px solid rgba(237,237,237,0.18);
  border-radius: 6px;
  color: #EDEDED;
  font-size: 16px;
  line-height: 1.55;
  padding: 16px;
  outline: none;
  transition: border-color 0.15s cubic-bezier(0.4,0,1,1), box-shadow 0.15s cubic-bezier(0.4,0,1,1);
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: inset 0 2px 2px 0 rgba(14,14,14,0.06);
}

.ct-us .form-col input[type="text"]::placeholder,
.ct-us .form-col input[type="email"]::placeholder,
.ct-us .form-col input[type="tel"]::placeholder {
  color: rgba(237,237,237,0.32);
  font-size: 15px;
}

.ct-us .form-col input[type="text"]:focus,
.ct-us .form-col input[type="email"]:focus,
.ct-us .form-col input[type="tel"]:focus,
.ct-us .form-col select:focus {
  border-color: #FF2F53;
  box-shadow: 0 0 0 2px rgba(255,47,83,0.18), inset 0 2px 2px 0 rgba(14,14,14,0.06);
}

.ct-us .form-col select option {
  background: #0E0E0E;
  color: #EDEDED;
}

.ct-us .form-col .slot-label {
  font-size: 15px;
  color: #EDEDED;
  opacity: 0.7;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 4px;
  display: block;
}

.ct-us .form-col .slot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.ct-us .form-col .slot-grid input[type="radio"] {
  display: none;
}

.ct-us .form-col .slot-grid .slot-opt {
  position: relative;
}

.ct-us .form-col .slot-grid .slot-opt label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(237,237,237,0.07);
  border: 1px solid rgba(237,237,237,0.18);
  border-radius: 6px;
  padding: 16px 8px;
  cursor: pointer;
  transition: border-color 0.12s cubic-bezier(0.4,0,1,1), background 0.12s cubic-bezier(0.4,0,1,1);
  text-transform: none;
  letter-spacing: 0;
  opacity: 1;
  font-size: 15px;
  color: #EDEDED;
  font-weight: 500;
  line-height: 1.35;
  min-height: 64px;
}

.ct-us .form-col .slot-grid .slot-opt label .slot-time {
  font-size: 16px;
  font-weight: 700;
  color: #EDEDED;
  line-height: 1.1;
}

.ct-us .form-col .slot-grid .slot-opt label .slot-desc {
  font-size: 15px;
  color: rgba(237,237,237,0.5);
  line-height: 1.35;
  margin-top: 4px;
}

.ct-us .form-col .slot-grid .slot-opt input[type="radio"]:checked + label {
  border-color: #FF2F53;
  background: rgba(255,47,83,0.13);
}

.ct-us .form-col .slot-grid .slot-opt label:hover {
  border-color: rgba(255,47,83,0.5);
  background: rgba(255,47,83,0.07);
}

.ct-us .form-col .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0;
}

.ct-us .form-col .privacy-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: #FF2F53;
  cursor: pointer;
  margin-top: 2px;
}

.ct-us .form-col .privacy-row .consent-text {
  font-size: 15px;
  color: rgba(237,237,237,0.6);
  line-height: 1.55;
}

.ct-us .form-col .privacy-row .consent-text a {
  color: #FF2F53;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.12s cubic-bezier(0.4,0,1,1);
}

.ct-us .form-col .privacy-row .consent-text a:hover {
  opacity: 0.75;
}

.ct-us .form-col .submit-btn {
  display: inline-block;
  background: #FF2F53;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  padding: 16px 40px;
  cursor: pointer;
  box-shadow: 0 2px 2px 0 rgba(255,47,83,0.06);
  transition: box-shadow 0.15s cubic-bezier(0.4,0,1,1), background 0.12s cubic-bezier(0.4,0,1,1);
  width: 100%;
  margin-top: 8px;
}

.ct-us .form-col .submit-btn:hover {
  box-shadow: 0 8px 36px 0 rgba(255,47,83,0.28);
  background: #e0002b;
}

.ct-us .form-col .submit-btn:focus {
  outline: 2px solid #FF2F53;
  outline-offset: 3px;
}

.ct-us .form-col .submit-btn:active {
  background: #c40025;
  box-shadow: 0 2px 2px 0 rgba(255,47,83,0.06);
}

.ct-us .info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-us .info-col .info-card {
  background: #EDEDED;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 20px 0 rgba(14,14,14,0.10);
  position: relative;
}

.ct-us .info-col .info-card h3 {
  font-size: 23px;
  line-height: 1.1;
  color: #0E0E0E;
  margin: 0 0 16px;
  font-weight: 800;
  padding-bottom: 8px;
  border-bottom: 2px solid #0E0E0E;
  display: inline-block;
}

.ct-us .info-col .info-card .detail-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.ct-us .info-col .info-card .detail-row:last-child {
  margin-bottom: 0;
}

.ct-us .info-col .info-card .detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #0E0E0E;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-us .info-col .info-card .detail-icon svg {
  width: 20px;
  height: 20px;
}

.ct-us .info-col .info-card .detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-us .info-col .info-card .detail-text strong {
  font-size: 15px;
  color: #0E0E0E;
  font-weight: 700;
  line-height: 1.35;
}

.ct-us .info-col .info-card .detail-text span {
  font-size: 15px;
  color: rgba(14,14,14,0.65);
  line-height: 1.55;
}

.ct-us .info-col .hours-card {
  background: linear-gradient(31deg, #0E0E0E 60%, #2a0a12 100%);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 8px 36px 0 rgba(255,47,83,0.13);
}

.ct-us .info-col .hours-card h4 {
  font-size: 23px;
  line-height: 1.1;
  color: #EDEDED;
  margin: 0 0 16px;
  font-weight: 800;
  padding-bottom: 8px;
  border-bottom: 2px solid #FF2F53;
  display: inline-block;
}

.ct-us .info-col .hours-card .hours-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(237,237,237,0.1);
}

.ct-us .info-col .hours-card .hours-row:last-child {
  border-bottom: none;
}

.ct-us .info-col .hours-card .hours-row .day {
  font-size: 15px;
  color: rgba(237,237,237,0.65);
  font-weight: 500;
  line-height: 1.35;
}

.ct-us .info-col .hours-card .hours-row .time {
  font-size: 15px;
  color: #EDEDED;
  font-weight: 700;
  line-height: 1.35;
}

.ct-us .info-col .hours-card .hours-row .time.closed {
  color: #FF2F53;
}

.ct-us .mesh-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(31deg, #0E0E0E 0%, #1a0008 40%, #FF2F53 100%);
  padding: 80px 40px;
  overflow: hidden;
}

.ct-us .mesh-strip::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 40% 40%, rgba(255,47,83,0.22) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 38px;
}

.ct-us .mesh-strip::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 5%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 60% 60%, rgba(237,237,237,0.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 38px;
}

.ct-us .mesh-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .ct-us .mesh-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ct-us .mesh-strip {
    padding: 40px 16px;
  }
}

.ct-us .mesh-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-us .mesh-item .metric-num {
  font-size: 43px;
  line-height: 1.1;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.ct-us .mesh-item .metric-num sup {
  font-size: 23px;
  color: #FF2F53;
  vertical-align: super;
  font-weight: 700;
}

.ct-us .mesh-item .metric-label {
  font-size: 16px;
  color: rgba(237,237,237,0.7);
  line-height: 1.55;
  font-weight: 500;
}

.ct-us .mesh-item .metric-desc {
  font-size: 15px;
  color: rgba(237,237,237,0.45);
  line-height: 1.55;
}

.ct-us .mesh-divider {
  width: 1px;
  background: rgba(237,237,237,0.12);
  align-self: stretch;
}

@media (max-width: 860px) {
  .ct-us .mesh-divider { display: none; }
  .ct-us .reach-block .reach-heading h1 { font-size: 43px; }
  .ct-us .form-col { padding: 16px; }
  .ct-us .info-col .info-card { padding: 16px; }
  .ct-us .info-col .hours-card { padding: 16px; }
  .ct-us .split-contact { gap: 16px; }
  .ct-us .form-col .slot-grid { grid-template-columns: 1fr; }
}

.ct-us .reach-block .pill-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.success-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 16px;
    background-color: #EDEDED;
}

.success-page .confirm-wrap {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.success-page .icon-mark {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.success-page .icon-mark svg {
    width: 100%;
    height: 100%;
}

.success-page .confirm-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 80px 80px;
    max-width: 640px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 36px 0 rgba(14,14,14,0.13);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.success-page .confirm-card .card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.success-page .confirm-card .status-label {
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FF2F53;
    font-weight: 600;
}

.success-page .confirm-card h1 {
    font-size: 43px;
    line-height: 1.1;
    color: #0E0E0E;
    margin: 0;
    font-weight: 700;
}

.success-page .confirm-card .confirm-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.success-page .confirm-card .lead-text {
    font-size: 16px;
    line-height: 1.55;
    color: #0E0E0E;
    margin: 0;
}

.success-page .confirm-card .sub-text {
    font-size: 15px;
    line-height: 1.55;
    color: #0E0E0E;
    opacity: 0.72;
    margin: 0;
}

.success-page .confirm-card .divider-line {
    width: 100%;
    height: 1px;
    background: #EDEDED;
}

.success-page .confirm-card .info-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.success-page .confirm-card .info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #EDEDED;
    border-radius: 6px;
}

.success-page .confirm-card .info-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 38px;
    background: #FF2F53;
    flex-shrink: 0;
}

.success-page .confirm-card .info-item span {
    font-size: 15px;
    line-height: 1.35;
    color: #0E0E0E;
}

.success-page .confirm-card .action-group {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.success-page .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: #0E0E0E;
    color: #EDEDED;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 2px 0 rgba(14,14,14,0.06);
    transition: box-shadow 0.15s cubic-bezier(0.4,0,1,1), background 0.12s ease-in;
}

.success-page .btn-primary:hover {
    background: #0E0E0E;
    box-shadow: 0 8px 36px 0 rgba(14,14,14,0.13);
}

.success-page .btn-primary:focus {
    outline: 2px solid #FF2F53;
    outline-offset: 3px;
}

.success-page .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: transparent;
    color: #0E0E0E;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid #0E0E0E;
    cursor: pointer;
    box-shadow: 0 2px 2px 0 rgba(14,14,14,0.06);
    transition: box-shadow 0.17s cubic-bezier(0.4,0,1,1), border-color 0.12s ease-in;
}

.success-page .btn-secondary:hover {
    box-shadow: 0 4px 20px 0 rgba(14,14,14,0.10);
    border-color: #FF2F53;
    color: #FF2F53;
}

.success-page .btn-secondary:focus {
    outline: 2px solid #FF2F53;
    outline-offset: 3px;
}

.success-page .contact-hint {
    font-size: 15px;
    line-height: 1.55;
    color: #0E0E0E;
    opacity: 0.6;
    text-align: center;
}

.success-page .contact-hint a {
    color: #0E0E0E;
    text-decoration: none;
    border-bottom: 1px solid #FF2F53;
    padding-bottom: 1px;
    transition: color 0.13s ease-in, border-color 0.13s ease-in;
}

.success-page .contact-hint a:hover {
    color: #FF2F53;
}

@media (max-width: 680px) {
    .success-page .confirm-card {
        padding: 40px 16px;
    }

    .success-page .confirm-card h1 {
        font-size: 31px;
    }

    .success-page .action-group {
        flex-direction: column;
        width: 100%;
    }

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