@charset "UTF-8";

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Literata', Georgia, serif;
}

.pg-wrap {
  box-sizing: border-box;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.site-head {
  background: #006A79;
  position: relative;
}

.head-strip {
  background: rgba(0, 40, 46, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.head-strip .pg-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
}

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

.strip-contact__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(251, 251, 251, 0.78);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.strip-contact__item:focus {
  outline: none;
  border-bottom: 4px solid #FF5D6F;
}

@media (min-width: 992px) {
  .strip-contact__item:hover {
    color: #FBFBFB;
    background: rgba(255, 255, 255, 0.08);
  }
}

.strip-contact__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
}

.head-body {
  padding-top: 20px;
  padding-bottom: 20px;
}

.head-body .pg-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-block__img-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 36px;
  border-radius: 36px;
  background: #FBFBFB;
  box-shadow:
    1px 1px 6px 1px rgba(255, 93, 111, 0.05),
    1px 7px 18px 1px rgba(255, 93, 111, 0.10),
    0 0 0 2px rgba(255, 255, 255, 0.35);
  padding: 4px 8px;
}

.brand-block__img-ring img {
  width: 50px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.brand-block__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #FBFBFB;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.site-nav {
  display: flex;
  align-items: center;
}

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

.nav-list__item {
  position: relative;
}

.nav-list__link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(251, 251, 251, 0.88);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 7px;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition: color 0.40s cubic-bezier(0.16, 1, 0.3, 1), background 0.40s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.40s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-list__link:focus {
  outline: none;
  border-bottom: 4px solid #FF5D6F;
}

@media (min-width: 992px) {
  .nav-list__link:hover {
    color: #FBFBFB;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.14);
  }
}

.nav-list__link--has-sub .nav-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
  flex-shrink: 0;
  opacity: 0.7;
}

.nav-sub {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: #004F5C;
  border-radius: 12px;
  box-shadow: 1px 9px 36px 1px rgba(0, 106, 121, 0.10);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200;
}

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

.nav-sub__link {
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(251, 251, 251, 0.85);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 7px;
  letter-spacing: 0.02em;
  transition: background 0.38s ease-in-out, color 0.38s ease-in-out;
}

.nav-sub__link:focus {
  outline: none;
  border-bottom: 4px solid #FF5D6F;
}

@media (min-width: 992px) {
  .nav-sub__link:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #FBFBFB;
  }
}

.nav-list__item--active .nav-list__link {
  color: #FBFBFB;
  background: rgba(255, 93, 111, 0.20);
  border-color: rgba(255, 93, 111, 0.30);
}

@media (max-width: 575px) {
  .head-body .pg-wrap {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .strip-contact {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .strip-contact__item {
    font-size: 15px;
    padding: 4px 8px;
  }

  .nav-list {
    justify-content: center;
    gap: 4px;
  }

  .nav-list__link {
    padding: 12px 12px;
    font-size: 15px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .head-body .pg-wrap {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .nav-list {
    justify-content: center;
  }
}

.site-foot {
  background: #006A79;
  color: rgba(251, 251, 251, 0.80);
}

.foot-top {
  padding-top: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.foot-top .pg-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.foot-brand__logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-brand__ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 32px;
  border-radius: 36px;
  background: #FBFBFB;
  box-shadow:
    1px 1px 6px 1px rgba(0, 106, 121, 0.05),
    1px 7px 18px 1px rgba(0, 106, 121, 0.10),
    0 0 0 2px rgba(255, 255, 255, 0.25);
  padding: 4px 8px;
  flex-shrink: 0;
}

.foot-brand__ring img {
  width: 42px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.foot-brand__year-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.foot-brand__name {
  font-size: 18px;
  font-weight: 700;
  color: #FBFBFB;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.foot-brand__since {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(251, 251, 251, 0.55);
  letter-spacing: 0.04em;
}

.foot-brand__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(251, 251, 251, 0.65);
  max-width: 280px;
}

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

.foot-brand__contact-label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(251, 251, 251, 0.50);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foot-brand__contact-link {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(251, 251, 251, 0.80);
  text-decoration: none;
  transition: color 0.42s ease-in-out;
  display: block;
}

.foot-brand__contact-link:focus {
  outline: none;
  border-bottom: 4px solid #FF5D6F;
}

@media (min-width: 992px) {
  .foot-brand__contact-link:hover {
    color: #FBFBFB;
  }
}

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

.foot-col__heading {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #FBFBFB;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

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

.foot-col__list-link {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(251, 251, 251, 0.72);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  border-radius: 4px;
  transition: color 0.42s ease-in-out;
}

.foot-col__list-link:focus {
  outline: none;
  border-bottom: 4px solid #FF5D6F;
}

@media (min-width: 992px) {
  .foot-col__list-link:hover {
    color: #FBFBFB;
  }
}

.foot-col__addr {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(251, 251, 251, 0.65);
  font-style: normal;
}

.foot-bottom {
  padding-top: 20px;
  padding-bottom: 40px;
}

.foot-bottom .pg-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-copy {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(251, 251, 251, 0.45);
}

.foot-policy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.foot-policy__link {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(251, 251, 251, 0.55);
  text-decoration: none;
  transition: color 0.42s ease-in-out;
  border-radius: 4px;
}

.foot-policy__link:focus {
  outline: none;
  border-bottom: 4px solid #FF5D6F;
}

@media (min-width: 992px) {
  .foot-policy__link:hover {
    color: #FBFBFB;
  }
}

.foot-pref-btn {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(251, 251, 251, 0.55);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  border-radius: 4px;
  transition: color 0.42s ease-in-out;
}

.foot-pref-btn:focus {
  outline: none;
  border-bottom: 4px solid #FF5D6F;
}

@media (min-width: 992px) {
  .foot-pref-btn:hover {
    color: #FBFBFB;
  }
}

@media (max-width: 991px) {
  .foot-top .pg-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

@media (max-width: 575px) {
  .foot-top .pg-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .foot-brand {
    grid-column: auto;
  }

  .foot-bottom .pg-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .foot-policy {
    gap: 12px;
  }
}

.rules-x-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #2d3a3f;
  line-height: 1.6;
  font-size: 18px;
}

.rules-x-section h1 {
  font-size: 52px;
  line-height: 1.2;
  color: #006A79;
  margin-bottom: 40px;
  margin-top: 0;
  letter-spacing: -0.5px;
}

.rules-x-section h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #006A79;
  margin-top: 80px;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.rules-x-section h3 {
  font-size: 18px;
  line-height: 1.6;
  color: #2d3a3f;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rules-x-section h4 {
  font-size: 18px;
  line-height: 1.6;
  color: #006A79;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
}

.rules-x-section h5 {
  font-size: 15px;
  line-height: 1.6;
  color: #2d3a3f;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rules-x-section h6 {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7078;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}

.rules-x-section ul,
.rules-x-section ol {
  margin-top: 12px;
  margin-bottom: 20px;
  padding-left: 40px;
}

.rules-x-section ul {
  list-style: none;
  padding-left: 20px;
}

.rules-x-section ul li {
  position: relative;
  padding-left: 20px;
}

.rules-x-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FF5D6F;
}

.rules-x-section ol {
  list-style: decimal;
}

.rules-x-section ol li {
  padding-left: 8px;
}

.rules-x-section ol li::marker {
  color: #FF5D6F;
  font-weight: 600;
}

.rules-x-section li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #2d3a3f;
}

.rules-x-section li:last-child {
  margin-bottom: 0;
}

.rules-x-section ul ul,
.rules-x-section ol ol,
.rules-x-section ul ol,
.rules-x-section ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.rules-x-section em,
.rules-x-section i {
  font-style: italic;
  color: #3d5057;
}

.rules-x-section a {
  color: #006A79;
  text-decoration: underline;
  text-decoration-color: rgba(0, 106, 121, 0.35);
  text-underline-offset: 3px;
  transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1), text-decoration-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.rules-x-section a:hover {
  color: #FF5D6F;
  text-decoration-color: rgba(255, 93, 111, 0.5);
}

.rules-x-section a:focus-visible {
  outline: 2px solid #FF5D6F;
  outline-offset: 2px;
  border-radius: 4px;
}

.rules-x-section table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 7px 18px 1px rgba(0, 106, 121, 0.10);
}

.rules-x-section thead {
  background-color: #006A79;
}

.rules-x-section thead th {
  color: #FBFBFB;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 20px;
  text-align: left;
  border: none;
}

.rules-x-section tbody tr {
  border-bottom: 1px solid rgba(0, 106, 121, 0.1);
  transition: background-color 0.4s ease-in-out;
}

.rules-x-section tbody tr:last-child {
  border-bottom: none;
}

.rules-x-section tbody tr:nth-child(even) {
  background-color: rgba(0, 106, 121, 0.04);
}

.rules-x-section tbody tr:hover {
  background-color: rgba(255, 93, 111, 0.05);
}

.rules-x-section td {
  padding: 12px 20px;
  color: #2d3a3f;
  font-size: 15px;
  line-height: 1.6;
  vertical-align: top;
  border: none;
}

.rules-x-section th {
  padding: 12px 20px;
  vertical-align: middle;
}

.rules-x-section hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 106, 121, 0.25), rgba(255, 93, 111, 0.2), transparent);
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .rules-x-section {
    padding: 80px 40px;
    font-size: 18px;
  }

  .rules-x-section h1 {
    font-size: 38px;
  }

  .rules-x-section h2 {
    font-size: 38px;
    margin-top: 40px;
  }

  .rules-x-section table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 576px) {
  .rules-x-section {
    padding: 40px 20px;
    font-size: 15px;
  }

  .rules-x-section h1 {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .rules-x-section h2 {
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 12px;
  }

  .rules-x-section h3 {
    font-size: 15px;
    margin-top: 20px;
  }

  .rules-x-section h4,
  .rules-x-section h5,
  .rules-x-section h6 {
    font-size: 15px;
    margin-top: 20px;
  }

  .rules-x-section li {
    font-size: 15px;
  }

  .rules-x-section ul,
  .rules-x-section ol {
    padding-left: 20px;
  }

  .rules-x-section ul {
    padding-left: 12px;
  }

  .rules-x-section td,
  .rules-x-section thead th {
    padding: 8px 12px;
    font-size: 15px;
  }

  .rules-x-section hr {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.hiw-pg {
  overflow-x: hidden;
}

.hiw-pg .ttl-band {
  background: linear-gradient(162deg, #e8f4f6 0%, #fff 100%);
  padding: 80px 20px;
  position: relative;
}

.hiw-pg .ttl-band::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
  height: 56px;
  background: #fff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}

.hiw-pg .ttl-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}

.hiw-pg .ttl-left {
  flex: 1 1 0;
  min-width: 0;
}

.hiw-pg .ttl-eyebrow {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #006A79;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hiw-pg .ttl-h1 {
  font-size: 52px;
  line-height: 1.2;
  color: #1b2e32;
  margin: 0 0 20px;
}

.hiw-pg .ttl-h1 .acc {
  color: #FF5D6F;
}

.hiw-pg .ttl-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #2e4a50;
  margin: 0;
  max-width: 480px;
}

.hiw-pg .ttl-dots {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 40px;
  align-items: center;
}

.hiw-pg .ttl-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 36px;
  background: #006A79;
  opacity: 0.25;
}

.hiw-pg .ttl-dots .dot.active {
  opacity: 1;
  width: 24px;
}

.hiw-pg .ttl-dots .dot-line {
  width: 32px;
  height: 1px;
  background: #006A79;
  opacity: 0.2;
}

.hiw-pg .ttl-right {
  flex: 0 0 420px;
  position: relative;
}

.hiw-pg .ttl-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 9px 36px 1px rgba(0, 106, 121, 0.10);
  position: relative;
}

.hiw-pg .ttl-img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  filter: saturate(0.55) brightness(1.05);
}

.hiw-pg .ttl-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 7px;
  padding: 12px 20px;
  box-shadow: 1px 7px 18px 1px rgba(255, 93, 111, 0.10);
}

.hiw-pg .ttl-img-badge .badge-num {
  font-size: 38px;
  line-height: 1.2;
  color: #FF5D6F;
  display: block;
}

.hiw-pg .ttl-img-badge .badge-lbl {
  font-size: 15px;
  color: #2e4a50;
  line-height: 1.6;
}

.hiw-pg .bg-anim-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(162deg, rgba(255, 93, 111, 0.04) 0%, rgba(0, 106, 121, 0.03) 100%);
  animation: hiw-fade-bg 6s ease-in-out infinite alternate;
  pointer-events: none;
  border-radius: 12px;
}

@keyframes hiw-fade-bg {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hiw-pg .steps-band {
  padding: 100px 20px 80px;
  background: #fff;
  position: relative;
}

.hiw-pg .steps-band::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
  height: 56px;
  background: #f0f7f8;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 1;
}

.hiw-pg .steps-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.hiw-pg .sec-label {
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #006A79;
  margin-bottom: 12px;
  display: block;
}

.hiw-pg .steps-h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1b2e32;
  margin: 0 0 8px;
  padding-left: 16px;
  border-left: 3px solid #FF5D6F;
}

.hiw-pg .steps-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #3a5a62;
  margin: 0 0 80px;
  max-width: 560px;
}

.hiw-pg .steps-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 3fr;
  gap: 20px;
  align-items: stretch;
}

.hiw-pg .step-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 1px 7px 18px 1px rgba(0, 106, 121, 0.10);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hiw-pg .step-card:hover {
  box-shadow: 1px 9px 36px 1px rgba(0, 106, 121, 0.10);
}

.hiw-pg .step-card .snum {
  font-size: 68px;
  line-height: 1.2;
  color: #006A79;
  opacity: 0.10;
  position: absolute;
  top: 12px;
  right: 20px;
  pointer-events: none;
}

.hiw-pg .step-card .stitle {
  font-size: 18px;
  line-height: 1.6;
  color: #1b2e32;
  margin: 0;
}

.hiw-pg .step-card .sbody {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5a62;
  margin: 0;
}

.hiw-pg .step-card .step-ico {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: linear-gradient(135deg, #e8f4f6 0%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hiw-pg .step-card .step-ico svg {
  width: 22px;
  height: 22px;
}

.hiw-pg .step-card.wide {
  padding: 40px;
}

.hiw-pg .step-card.wide .sbody {
  font-size: 18px;
}

.hiw-pg .step-connector {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.hiw-pg .step-connector .conn-dot {
  width: 6px;
  height: 6px;
  border-radius: 36px;
  background: #FF5D6F;
  opacity: 0.5;
}

.hiw-pg .step-connector .conn-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #FF5D6F 0%, transparent 100%);
  opacity: 0.3;
}

.hiw-pg .metric-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 40px;
}

.hiw-pg .metric-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #e8f4f6 0%, #fff 100%);
  border-radius: 7px;
  padding: 12px 20px;
}

.hiw-pg .metric-item .m-val {
  font-size: 38px;
  line-height: 1.2;
  color: #006A79;
}

.hiw-pg .metric-item .m-arrow {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #FF5D6F;
  opacity: 0.85;
}

.hiw-pg .metric-item .m-txt {
  font-size: 15px;
  line-height: 1.6;
  color: #2e4a50;
}

.hiw-pg .faq-band {
  padding: 100px 20px 80px;
  background: #f0f7f8;
  position: relative;
}

.hiw-pg .faq-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.hiw-pg .faq-left {
  flex: 0 0 340px;
}

.hiw-pg .faq-h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1b2e32;
  margin: 0 0 20px;
  padding-left: 16px;
  border-left: 3px solid #006A79;
}

.hiw-pg .faq-intro {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5a62;
  margin: 0 0 40px;
}

.hiw-pg .funnel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hiw-pg .funnel-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.hiw-pg .funnel-bar {
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.hiw-pg .funnel-bar .fb-lbl {
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hiw-pg .funnel-bar.fb1 {
  width: 100%;
  background: #006A79;
}

.hiw-pg .funnel-bar.fb2 {
  width: 82%;
  background: #1a8a9b;
}

.hiw-pg .funnel-bar.fb3 {
  width: 64%;
  background: #FF5D6F;
  opacity: 0.85;
}

.hiw-pg .funnel-bar.fb4 {
  width: 46%;
  background: #FF5D6F;
}

.hiw-pg .funnel-bar .fb-pct {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-left: auto;
}

.hiw-pg .faq-right {
  flex: 1 1 0;
  min-width: 0;
}

.hiw-pg .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hiw-pg .faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 1px 1px 6px 1px rgba(0, 106, 121, 0.05);
}

.hiw-pg .faq-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.hiw-pg .faq-item .fq-lbl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
  gap: 12px;
}

.hiw-pg .faq-item .fq-q {
  font-size: 15px;
  line-height: 1.6;
  color: #1b2e32;
}

.hiw-pg .faq-item .fq-ico {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 36px;
  border: 1.5px solid #006A79;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hiw-pg .faq-item .fq-ico svg {
  width: 14px;
  height: 14px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hiw-pg .faq-item .fq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hiw-pg .faq-item .fq-body-in {
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #3a5a62;
}

.hiw-pg .faq-item input:checked~.fq-lbl .fq-ico {
  background: #006A79;
  transform: rotate(45deg);
}

.hiw-pg .faq-item input:checked~.fq-lbl .fq-ico svg path {
  stroke: #fff;
}

.hiw-pg .faq-item input:checked~.fq-body {
  max-height: 300px;
}

.hiw-pg .faq-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 1px 7px 18px 1px rgba(255, 93, 111, 0.10);
}

.hiw-pg .faq-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: saturate(0.6) brightness(1.05);
}

.hiw-pg .dashed-bg {
  background-image: repeating-linear-gradient(0deg, rgba(0, 106, 121, 0.06) 0px, rgba(0, 106, 121, 0.06) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(90deg, rgba(0, 106, 121, 0.06) 0px, rgba(0, 106, 121, 0.06) 1px, transparent 1px, transparent 28px);
}

@media (max-width: 992px) {
  .hiw-pg .ttl-inner {
    flex-direction: column;
    gap: 40px;
  }

  .hiw-pg .ttl-right {
    flex: 0 0 auto;
    width: 100%;
  }

  .hiw-pg .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hiw-pg .steps-grid .step-card:last-child {
    grid-column: 1 / -1;
  }

  .hiw-pg .faq-inner {
    flex-direction: column;
    gap: 40px;
  }

  .hiw-pg .faq-left {
    flex: 0 0 auto;
    width: 100%;
  }

  .hiw-pg .metric-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .hiw-pg .ttl-h1 {
    font-size: 38px;
  }

  .hiw-pg .steps-h2,
  .hiw-pg .faq-h2 {
    font-size: 38px;
  }

  .hiw-pg .steps-grid {
    grid-template-columns: 1fr;
  }

  .hiw-pg .steps-grid .step-card:last-child {
    grid-column: auto;
  }

  .hiw-pg .ttl-band,
  .hiw-pg .steps-band,
  .hiw-pg .faq-band {
    padding: 60px 20px;
  }
}

@media (min-width: 993px) {
  .hiw-pg .step-card {
    transition: box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hiw-pg .step-card:hover {
    transform: translateY(-4px);
  }

  .hiw-pg .faq-item .fq-lbl {
    transition: background 0.4s ease-in-out;
  }

  .hiw-pg .faq-item .fq-lbl:hover {
    background: #f8fdfd;
    border-radius: 12px;
  }
}

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

.abt-us .pg-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.abt-us .narrow-col {
  max-width: 720px;
  margin: 0 auto;
}

/* ── TITLE BLOCK ── */
.abt-us .lead-blk {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0) 0%, rgba(0, 106, 121, 0.12) 100%);
  overflow: hidden;
}

.abt-us .lead-blk::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -80px;
  width: 340px;
  height: 340px;
  background: rgba(255, 93, 111, 0.10);
  border-radius: 36px;
  filter: blur(60px);
  pointer-events: none;
}

.abt-us .lead-blk::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(0, 106, 121, 0.09);
  border-radius: 36px;
  filter: blur(50px);
  pointer-events: none;
}

.abt-us .lead-blk .diag-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.abt-us .lead-blk .diag-line::before {
  content: '';
  position: absolute;
  top: -20px;
  right: 18%;
  width: 1px;
  height: 140%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 106, 121, 0.18) 50%, transparent 100%);
  transform: rotate(12deg);
  transform-origin: top center;
}

.abt-us .lead-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.abt-us .lead-text {
  flex: 1 1 0;
}

.abt-us .lead-eyebrow {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #006A79;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.abt-us .lead-h1 {
  font-size: 52px;
  line-height: 1.2;
  color: #1b2d32;
  margin: 0 0 20px;
}

.abt-us .lead-h1 .accent-phrase {
  color: #FF5D6F;
  background: rgba(255, 93, 111, 0.09);
  border-radius: 4px;
  padding: 0 8px;
}

.abt-us .lead-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #2e4a50;
  margin: 0;
}

.abt-us .lead-img-wrap {
  flex: 0 0 420px;
  position: relative;
}

.abt-us .lead-img-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  background: radial-gradient(ellipse at 30% 30%, rgba(255, 93, 111, 0.13) 0%, transparent 70%);
  border-radius: 12px;
  pointer-events: none;
}

.abt-us .lead-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 1px 9px 36px 1px rgba(0, 106, 121, 0.10);
}

/* ── SECTION 2: STORY / PROCESS ── */
.abt-us .story-blk {
  padding: 80px 20px;
  background: #FBFBFB;
  position: relative;
}

.abt-us .story-blk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 106, 121, 0.03) 0%, rgba(255, 93, 111, 0.04) 100%);
  pointer-events: none;
}

.abt-us .story-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.abt-us .story-top {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.abt-us .story-top-img {
  flex: 0 0 360px;
}

.abt-us .story-top-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 1px 7px 18px 1px rgba(0, 106, 121, 0.10);
}

.abt-us .story-top-text {
  flex: 1 1 0;
}

.abt-us .sec-label {
  font-size: 15px;
  letter-spacing: 0.10em;
  color: #FF5D6F;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.abt-us .sec-h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1b2d32;
  margin: 0 0 20px;
  padding-left: 12px;
  border-left: 3px solid #FF5D6F;
}

.abt-us .body-p {
  font-size: 18px;
  line-height: 1.6;
  color: #2e4a50;
  margin: 0 0 20px;
}

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

/* Steps with arrows */
.abt-us .steps-row {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: stretch;
}

.abt-us .step-item {
  flex: 1 1 0;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 1px 1px 6px 1px rgba(0, 106, 121, 0.05);
  position: relative;
  transition: box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.abt-us .step-item:hover {
  box-shadow: 1px 7px 18px 1px rgba(0, 106, 121, 0.10);
}

.abt-us .step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  flex-shrink: 0;
}

.abt-us .step-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #006A79;
  stroke-width: 2;
  opacity: 0.5;
}

.abt-us .step-num {
  font-size: 38px;
  line-height: 1.2;
  color: rgba(0, 106, 121, 0.12);
  font-weight: 700;
  margin-bottom: 8px;
}

.abt-us .step-title {
  font-size: 15px;
  font-weight: 600;
  color: #1b2d32;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}

.abt-us .step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #2e4a50;
  margin: 0;
}

/* ── SECTION 3: TEAM + CONTACT ── */
.abt-us .team-blk {
  padding: 80px 20px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.abt-us .team-blk .bg-anim {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(0, 106, 121, 0.025) 0px,
      rgba(0, 106, 121, 0.025) 1px,
      transparent 1px,
      transparent 60px);
  background-size: 60px 60px;
  animation: diag-drift 18s linear infinite;
  pointer-events: none;
}

@keyframes diag-drift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

.abt-us .team-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.abt-us .team-head {
  max-width: 600px;
  margin-bottom: 40px;
}

.abt-us .team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.abt-us .team-cards-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.abt-us .person-card {
  background: #FBFBFB;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 1px 1px 6px 1px rgba(255, 93, 111, 0.05);
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.abt-us .person-card:hover {
  box-shadow: 1px 7px 18px 1px rgba(255, 93, 111, 0.10);
}

.abt-us .person-img {
  width: 80px;
  height: 80px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 1px 1px 6px 1px rgba(0, 106, 121, 0.05);
}

.abt-us .person-info {
  flex: 1 1 0;
}

.abt-us .person-name {
  font-size: 18px;
  line-height: 1.2;
  color: #1b2d32;
  margin: 0 0 4px;
}

.abt-us .person-role {
  font-size: 15px;
  color: #006A79;
  margin: 0 0 8px;
  letter-spacing: 0.05em;
}

.abt-us .person-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #2e4a50;
  margin: 0;
}

.abt-us .team-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.abt-us .side-img-wrap {
  position: relative;
}

.abt-us .side-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 1px 7px 18px 1px rgba(0, 106, 121, 0.10);
}

.abt-us .connect-box {
  background: linear-gradient(160deg, rgba(0, 106, 121, 0.07) 0%, rgba(255, 93, 111, 0.05) 100%);
  border-radius: 12px;
  padding: 40px;
  box-shadow: inset 0 2px 8px rgba(0, 106, 121, 0.06);
}

.abt-us .connect-box .sec-h3 {
  font-size: 18px;
  line-height: 1.2;
  color: #1b2d32;
  margin: 0 0 12px;
  padding-left: 12px;
  border-left: 3px solid #006A79;
}

.abt-us .connect-box .body-p {
  margin-bottom: 20px;
}

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

.abt-us .contact-list li {
  font-size: 15px;
  line-height: 1.6;
  color: #2e4a50;
}

.abt-us .contact-list li strong {
  color: #1b2d32;
}

.abt-us .cta-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 15px;
  color: #FF5D6F;
  border: 1.5px solid #FF5D6F;
  border-radius: 7px;
  padding: 12px 20px;
  text-decoration: none;
  background: transparent;
  transition: background 0.42s cubic-bezier(0.16, 1, 0.3, 1), color 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.abt-us .cta-link:hover {
  background: #FF5D6F;
  color: #fff;
}

.abt-us .cta-link:active {
  transform: scale(0.97);
}

.abt-us .how-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 15px;
  color: #006A79;
  border: 1.5px solid #006A79;
  border-radius: 7px;
  padding: 12px 20px;
  text-decoration: none;
  background: transparent;
  transition: background 0.48s cubic-bezier(0.16, 1, 0.3, 1), color 0.48s cubic-bezier(0.16, 1, 0.3, 1);
}

.abt-us .how-link:hover {
  background: #006A79;
  color: #fff;
}

.abt-us .how-link:active {
  transform: scale(0.97);
}

/* Responsive */
@media (max-width: 992px) {
  .abt-us .lead-inner {
    flex-direction: column;
    gap: 40px;
  }

  .abt-us .lead-img-wrap {
    flex: 0 0 auto;
    width: 100%;
  }

  .abt-us .lead-h1 {
    font-size: 38px;
  }

  .abt-us .story-top {
    flex-direction: column;
    gap: 40px;
  }

  .abt-us .story-top-img {
    flex: 0 0 auto;
    width: 100%;
  }

  .abt-us .steps-row {
    flex-direction: column;
    gap: 12px;
  }

  .abt-us .step-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }

  .abt-us .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .abt-us .lead-blk {
    padding: 40px 20px;
  }

  .abt-us .lead-h1 {
    font-size: 38px;
  }

  .abt-us .story-blk,
  .abt-us .team-blk {
    padding: 40px 20px;
  }

  .abt-us .story-blk .story-top {
    margin-bottom: 40px;
  }

  .abt-us .sec-h2 {
    font-size: 38px;
  }

  .abt-us .person-card {
    flex-direction: column;
  }

  .abt-us .person-img {
    width: 64px;
    height: 64px;
  }

  .abt-us .connect-box {
    padding: 20px;
  }
}

@media (min-width: 993px) {

  .abt-us .step-item,
  .abt-us .person-card,
  .abt-us .cta-link,
  .abt-us .how-link {
    transition-property: box-shadow, background, color;
  }
}

@media (max-width: 992px) {

  .abt-us .step-item,
  .abt-us .person-card {
    transition: none;
  }

  .abt-us .cta-link,
  .abt-us .how-link {
    transition: none;
  }
}

.ld-lead {
  max-width: 100%;
  overflow-x: hidden;
}

.ld-lead .pg-wrap {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.ld-lead .s1-root {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #FBFBFB;
  position: relative;
}

.ld-lead .s1-root::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(158deg, rgba(0, 106, 121, 0.07) 0%, #FBFBFB 100%);
  pointer-events: none;
}

.ld-lead .s1-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.ld-lead .s1-img-col {
  flex: 0 0 320px;
  width: 320px;
}

.ld-lead .s1-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 9px 36px 1px rgba(0, 106, 121, 0.10);
  opacity: 0;
  animation: fadeImg 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.ld-lead .s1-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

@keyframes fadeImg {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.ld-lead .s1-text-col {
  flex: 1;
  min-width: 0;
  position: relative;
}

.ld-lead .s1-deco {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(255, 93, 111, 0.12);
  border-radius: 12px;
  animation: rotSlow 18s linear infinite;
  pointer-events: none;
}

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

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

.ld-lead .s1-label {
  display: inline-block;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #006A79;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ld-lead .s1-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #FF5D6F;
  vertical-align: middle;
  margin-right: 8px;
}

.ld-lead .s1-h1 {
  font-size: 52px;
  line-height: 1.2;
  color: #1b2e32;
  margin-bottom: 20px;
  margin-top: 0;
}

.ld-lead .s1-h1 .acc {
  color: #FF5D6F;
}

.ld-lead .s1-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #2d4a50;
  margin-bottom: 40px;
  max-width: 480px;
}

.ld-lead .s1-cta {
  display: inline-block;
  padding: 12px 40px;
  border: 2px solid #006A79;
  border-radius: 7px;
  color: #006A79;
  font-size: 15px;
  line-height: 1.6;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.ld-lead .s1-cta:hover {
  background: #006A79;
  color: #FBFBFB;
}

.ld-lead .s1-cta:active {
  transform: scale(0.97);
}

.ld-lead .s2-root {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
}

.ld-lead .s2-inner {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.ld-lead .s2-text {
  flex: 1;
  min-width: 0;
}

.ld-lead .s2-aside {
  flex: 0 0 340px;
  width: 340px;
}

.ld-lead .sec-eyebrow {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.07em;
  color: #FF5D6F;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.ld-lead .sec-h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1b2e32;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 12px;
  border-top: none;
  position: relative;
}

.ld-lead .sec-h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: #FF5D6F;
  border-radius: 4px;
}

.ld-lead .s2-body {
  font-size: 18px;
  line-height: 1.6;
  color: #2d4a50;
  margin-bottom: 20px;
}

.ld-lead .s2-scenario {
  background: linear-gradient(135deg, rgba(0, 106, 121, 0.05) 0%, #FBFBFB 100%);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 1px 7px 18px 1px rgba(0, 106, 121, 0.10);
}

.ld-lead .s2-scenario-label {
  font-size: 15px;
  line-height: 1.6;
  color: #006A79;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.ld-lead .s2-scenario-h {
  font-size: 18px;
  line-height: 1.2;
  color: #1b2e32;
  margin-top: 0;
  margin-bottom: 20px;
}

.ld-lead .s2-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-c;
}

.ld-lead .s2-steps li {
  counter-increment: step-c;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 20px;
  position: relative;
  opacity: 0;
  animation: fadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ld-lead .s2-steps li:nth-child(1) {
  animation-delay: 0.1s;
}

.ld-lead .s2-steps li:nth-child(2) {
  animation-delay: 0.2s;
}

.ld-lead .s2-steps li:nth-child(3) {
  animation-delay: 0.3s;
}

.ld-lead .s2-steps li:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.ld-lead .s2-steps li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 1px;
  background: rgba(0, 106, 121, 0.2);
}

.ld-lead .s2-num {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 36px;
  background: #006A79;
  color: #FBFBFB;
  font-size: 15px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.ld-lead .s2-step-txt {
  font-size: 15px;
  line-height: 1.6;
  color: #2d4a50;
  padding-top: 4px;
}

.ld-lead .s3-root {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.ld-lead .s3-bg-split {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ld-lead .s3-bg-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #FBFBFB;
}

.ld-lead .s3-bg-split::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(155deg, rgba(255, 93, 111, 0.06) 0%, #FBFBFB 80%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.ld-lead .s3-inner {
  position: relative;
  z-index: 1;
}

.ld-lead .s3-top {
  max-width: 560px;
  margin-bottom: 40px;
}

.ld-lead .s3-cards {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.ld-lead .s3-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 1px 7px 18px 1px rgba(255, 93, 111, 0.10);
  transition: box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.ld-lead .s3-card:hover {
  box-shadow: 1px 9px 36px 1px rgba(255, 93, 111, 0.10);
  transform: translateY(-4px);
}

.ld-lead .s3-card.feat {
  background: #006A79;
  color: #FBFBFB;
}

.ld-lead .s3-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 7px;
  background: rgba(255, 93, 111, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ld-lead .s3-card.feat .s3-card-icon {
  background: rgba(255, 255, 255, 0.15);
}

.ld-lead .s3-icon-shape {
  width: 20px;
  height: 20px;
}

.ld-lead .s3-card-h {
  font-size: 18px;
  line-height: 1.2;
  color: #1b2e32;
  margin-top: 0;
  margin-bottom: 12px;
}

.ld-lead .s3-card.feat .s3-card-h {
  color: #FBFBFB;
}

.ld-lead .s3-card-p {
  font-size: 15px;
  line-height: 1.6;
  color: #2d4a50;
  margin: 0;
}

.ld-lead .s3-card.feat .s3-card-p {
  color: rgba(251, 251, 251, 0.82);
}

.ld-lead .s4-root {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #1b2e32;
}

.ld-lead .s4-top {
  max-width: 560px;
  margin-bottom: 40px;
}

.ld-lead .s4-top .sec-h2 {
  color: #FBFBFB;
}

.ld-lead .s4-top .sec-eyebrow {
  color: rgba(255, 93, 111, 0.9);
}

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

.ld-lead .s4-item {
  border-radius: 12px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ld-lead .s4-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ld-lead .s4-quote-mark {
  width: 28px;
  height: 20px;
  margin-bottom: 20px;
}

.ld-lead .s4-quote-mark svg rect,
.ld-lead .s4-quote-mark svg path {
  fill: #FF5D6F;
}

.ld-lead .s4-quote {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(251, 251, 251, 0.88);
  margin-bottom: 20px;
  font-style: italic;
}

.ld-lead .s4-author {
  font-size: 15px;
  line-height: 1.2;
  color: #006A79;
  letter-spacing: 0.05em;
}

.ld-lead .s4-author-role {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(251, 251, 251, 0.45);
  display: block;
  margin-top: 4px;
}

.ld-lead .s5-root {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
}

.ld-lead .s5-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ld-lead .s5-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 9px 36px 1px rgba(0, 106, 121, 0.10);
  position: relative;
}

.ld-lead .s5-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.ld-lead .s5-img-wrap:hover img {
  transform: scale(1.04);
}

.ld-lead .s5-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(27, 46, 50, 0.72) 0%, transparent 100%);
  border-radius: 0 0 12px 12px;
}

.ld-lead .s5-overlay-txt {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(251, 251, 251, 0.9);
  margin: 0;
}

.ld-lead .s5-body {
  font-size: 18px;
  line-height: 1.6;
  color: #2d4a50;
  margin-bottom: 20px;
}

.ld-lead .s5-phases {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
  counter-reset: ph-c;
}

.ld-lead .s5-phases li {
  counter-increment: ph-c;
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding-bottom: 20px;
  align-items: flex-start;
}

.ld-lead .s5-phases li:last-child {
  padding-bottom: 0;
}

.ld-lead .s5-ph-num {
  flex: 0 0 28px;
  font-size: 15px;
  line-height: 1.6;
  color: #FF5D6F;
  font-weight: 700;
  padding-top: 0;
}

.ld-lead .s5-ph-txt {
  font-size: 15px;
  line-height: 1.6;
  color: #2d4a50;
}

.ld-lead .s6-root {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #FBFBFB;
  position: relative;
}

.ld-lead .s6-deco-geo {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  border: 1.5px solid rgba(255, 93, 111, 0.10);
  border-radius: 12px;
  animation: rotSlow 22s linear infinite;
  pointer-events: none;
}

.ld-lead .s6-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.ld-lead .s6-body {
  font-size: 18px;
  line-height: 1.6;
  color: #2d4a50;
  margin-bottom: 20px;
}

.ld-lead .s6-accent {
  display: inline;
  color: #FF5D6F;
}

.ld-lead .s6-box {
  border-radius: 12px;
  padding: 40px;
  background: #fff;
  box-shadow: 1px 7px 18px 1px rgba(0, 106, 121, 0.10);
  margin-top: 40px;
}

.ld-lead .s6-box-h {
  font-size: 18px;
  line-height: 1.2;
  color: #1b2e32;
  margin-top: 0;
  margin-bottom: 12px;
}

.ld-lead .s6-box-p {
  font-size: 15px;
  line-height: 1.6;
  color: #2d4a50;
  margin: 0;
}

.ld-lead .s7-root {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
}

.ld-lead .s7-inner {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.ld-lead .s7-left {
  flex: 1;
  min-width: 0;
}

.ld-lead .s7-right {
  flex: 0 0 360px;
  width: 360px;
}

.ld-lead .s7-body {
  font-size: 18px;
  line-height: 1.6;
  color: #2d4a50;
  margin-bottom: 20px;
}

.ld-lead .s7-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 9px 36px 1px rgba(255, 93, 111, 0.10);
  position: relative;
}

.ld-lead .s7-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ld-lead .s7-img-wrap:hover img {
  transform: scale(1.03);
}

.ld-lead .s7-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #FF5D6F;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.ld-lead .s7-stat-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 40px;
}

.ld-lead .s7-stat {
  flex: 1;
  background: #FBFBFB;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 1px 1px 6px 1px rgba(0, 106, 121, 0.05);
  text-align: center;
}

.ld-lead .s7-stat-val {
  font-size: 38px;
  line-height: 1.2;
  color: #006A79;
  display: block;
  font-weight: 700;
}

.ld-lead .s7-stat-lbl {
  font-size: 15px;
  line-height: 1.6;
  color: #2d4a50;
  display: block;
  margin-top: 4px;
}

@media (max-width: 992px) {
  .ld-lead .s1-grid {
    flex-direction: column;
    gap: 40px;
  }

  .ld-lead .s1-img-col {
    flex: none;
    width: 100%;
  }

  .ld-lead .s1-img-wrap img {
    height: 280px;
  }

  .ld-lead .s1-h1 {
    font-size: 38px;
  }

  .ld-lead .s1-deco {
    display: none;
  }

  .ld-lead .s2-inner {
    flex-direction: column;
    gap: 40px;
  }

  .ld-lead .s2-aside {
    flex: none;
    width: 100%;
  }

  .ld-lead .s3-cards {
    grid-template-columns: 1fr 1fr;
  }

  .ld-lead .s4-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ld-lead .s5-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ld-lead .s7-inner {
    flex-direction: column;
    gap: 40px;
  }

  .ld-lead .s7-right {
    flex: none;
    width: 100%;
  }

  .ld-lead .s6-deco-geo {
    display: none;
  }
}

@media (max-width: 576px) {
  .ld-lead .s1-h1 {
    font-size: 38px;
  }

  .ld-lead .sec-h2 {
    font-size: 38px;
  }

  .ld-lead .s3-cards {
    grid-template-columns: 1fr;
  }

  .ld-lead .s7-stat-row {
    flex-direction: column;
    gap: 12px;
  }

  .ld-lead .s1-root,
  .ld-lead .s2-root,
  .ld-lead .s3-root,
  .ld-lead .s4-root,
  .ld-lead .s5-root,
  .ld-lead .s6-root,
  .ld-lead .s7-root {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ld-lead .s2-scenario {
    padding: 20px;
  }

  .ld-lead .s3-card {
    padding: 20px;
  }

  .ld-lead .s4-item {
    padding: 20px;
  }

  .ld-lead .s6-box {
    padding: 20px;
  }
}

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

.ct-us .pg-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.ct-us .reach-band {
  background: #FBFBFB;
  padding: 80px 20px;
  position: relative;
}

.ct-us .reach-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(160deg, rgba(255, 93, 111, 0.06) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.ct-us .reach-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
}

.ct-us .reach-left {
  flex: 1 1 340px;
  min-width: 0;
}

.ct-us .reach-eyebrow {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #006A79;
  margin-bottom: 20px;
  display: block;
}

.ct-us .reach-h1 {
  font-size: 52px;
  line-height: 1.2;
  color: #1b2a2d;
  margin-bottom: 20px;
}

.ct-us .reach-h1 .acc {
  color: #FF5D6F;
}

.ct-us .reach-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #2d4145;
  margin-bottom: 40px;
}

.ct-us .reach-deco {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-us .reach-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.ct-us .stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 36px;
  background: #FF5D6F;
  flex-shrink: 0;
}

.ct-us .stat-dot.teal {
  background: #006A79;
}

.ct-us .stat-label {
  font-size: 15px;
  color: #2d4145;
  line-height: 1.6;
}

.ct-us .reach-right {
  flex: 1 1 400px;
  min-width: 0;
  position: relative;
}

.ct-us .reach-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 9px 36px 1px rgba(255, 93, 111, 0.10);
  position: relative;
}

.ct-us .reach-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: filter 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.ct-us .reach-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, 0) 40%, rgba(0, 106, 121, 0.28) 100%);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  border-radius: 12px;
}

.ct-us .reach-img-wrap:hover::after {
  opacity: 1;
}

.ct-us .reach-img-wrap:hover img {
  filter: brightness(0.92) saturate(1.08);
}

.ct-us .deco-circles {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  pointer-events: none;
  z-index: 0;
}

.ct-us .deco-circles span {
  position: absolute;
  border-radius: 36px;
  border: 1.5px solid rgba(255, 93, 111, 0.15);
}

.ct-us .deco-circles span:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 50px;
  left: 50px;
}

.ct-us .deco-circles span:nth-child(2) {
  width: 130px;
  height: 130px;
  top: 25px;
  left: 25px;
  border-color: rgba(0, 106, 121, 0.10);
}

.ct-us .deco-circles span:nth-child(3) {
  width: 180px;
  height: 180px;
  top: 0;
  left: 0;
  border-color: rgba(255, 93, 111, 0.07);
}

.ct-us .form-band {
  background: #fff;
  padding: 80px 20px;
  position: relative;
}

.ct-us .form-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 106, 121, 0.04) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  animation: glow-pulse 5s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

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

.ct-us .form-aside {
  flex: 0 0 300px;
  min-width: 0;
}

.ct-us .aside-label {
  font-size: 15px;
  letter-spacing: 0.10em;
  color: #FF5D6F;
  margin-bottom: 12px;
  display: block;
}

.ct-us .aside-h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1b2a2d;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 3px solid #FF5D6F;
}

.ct-us .aside-body {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5258;
  margin-bottom: 40px;
}

.ct-us .metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ct-us .metric-card {
  background: #FBFBFB;
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  box-shadow: 1px 1px 6px 1px rgba(0, 106, 121, 0.05);
}

.ct-us .metric-val {
  font-size: 38px;
  line-height: 1.2;
  color: #006A79;
  display: block;
}

.ct-us .metric-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5258;
  display: block;
  margin-top: 4px;
}

.ct-us .form-col {
  flex: 1 1 0;
  min-width: 0;
}

.ct-us .cf {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-us .cf-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-us .cf-label {
  font-size: 15px;
  color: #1b2a2d;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ct-us .cf-input {
  border: 1.5px solid #c9d8db;
  border-radius: 7px;
  padding: 12px 20px;
  font-size: 18px;
  color: #1b2a2d;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 4px rgba(0, 106, 121, 0.04);
}

.ct-us .cf-input::placeholder {
  color: #8aacb1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ct-us .cf-input:focus {
  border-color: #006A79;
  box-shadow: inset 0 2px 4px rgba(0, 106, 121, 0.04), 1px 7px 18px 1px rgba(0, 106, 121, 0.10);
}

.ct-us .cf-channel-label {
  font-size: 15px;
  color: #1b2a2d;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  display: block;
}

.ct-us .cf-channels {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.ct-us .ch-opt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.ct-us .ch-opt input[type="radio"] {
  accent-color: #006A79;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.ct-us .ch-opt-text {
  font-size: 15px;
  color: #2d4145;
  line-height: 1.6;
}

.ct-us .cf-select {
  border: 1.5px solid #c9d8db;
  border-radius: 7px;
  padding: 12px 20px;
  font-size: 18px;
  color: #1b2a2d;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 4px rgba(0, 106, 121, 0.04);
}

.ct-us .cf-select:focus {
  border-color: #006A79;
}

.ct-us .cf-select-wrap {
  position: relative;
}

.ct-us .cf-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: #006A79;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

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

.ct-us .cf-privacy input[type="checkbox"] {
  accent-color: #FF5D6F;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.ct-us .cf-privacy-text {
  font-size: 15px;
  color: #3a5258;
  line-height: 1.6;
}

.ct-us .cf-privacy-text a {
  color: #006A79;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ct-us .cf-submit {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 7px;
  border: 2px solid #FF5D6F;
  background: transparent;
  color: #FF5D6F;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.42s cubic-bezier(0.16, 1, 0.3, 1), color 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  align-self: flex-start;
}

.ct-us .cf-submit:hover {
  background: #FF5D6F;
  color: #fff;
}

.ct-us .cf-submit:active {
  transform: scale(0.97);
}

.ct-us .cf-submit:focus-visible {
  outline: 3px solid #006A79;
  outline-offset: 3px;
}

.ct-us .details-band {
  background: #FBFBFB;
  padding: 80px 20px;
  position: relative;
}

.ct-us .details-band::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF5D6F 0%, #006A79 100%);
  opacity: 0.18;
  pointer-events: none;
}

.ct-us .details-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.ct-us .det-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ct-us .det-tag {
  font-size: 15px;
  letter-spacing: 0.10em;
  color: #006A79;
  display: block;
}

.ct-us .det-h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1b2a2d;
  line-height: 1.2;
  padding-left: 12px;
  border-left: 3px solid #006A79;
}

.ct-us .det-body {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5258;
}

.ct-us .det-link {
  font-size: 15px;
  color: #FF5D6F;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-block;
  border-bottom: 1.5px solid rgba(255, 93, 111, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.38s ease-in-out, color 0.38s ease-in-out;
}

.ct-us .det-link:hover {
  color: #006A79;
  border-color: #006A79;
}

.ct-us .det-img-col {
  position: relative;
}

.ct-us .det-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 7px 18px 1px rgba(255, 93, 111, 0.10);
  position: relative;
}

.ct-us .det-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: filter 0.50s cubic-bezier(0.16, 1, 0.3, 1);
}

.ct-us .det-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 106, 121, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
  opacity: 0;
  transition: opacity 0.50s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.ct-us .det-img-wrap:hover::after {
  opacity: 1;
}

.ct-us .det-img-wrap:hover img {
  filter: brightness(0.94) saturate(1.1);
}

.ct-us .det-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.ct-us .det-ci-dot {
  width: 8px;
  height: 8px;
  border-radius: 36px;
  background: #FF5D6F;
  flex-shrink: 0;
  margin-top: 6px;
}

.ct-us .det-ci-dot.sec {
  background: #006A79;
}

.ct-us .det-ci-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-us .det-ci-type {
  font-size: 15px;
  color: #8aacb1;
  letter-spacing: 0.08em;
}

.ct-us .det-ci-val {
  font-size: 18px;
  color: #1b2a2d;
  font-weight: 700;
  line-height: 1.2;
}

.ct-us .det-ci-val a {
  color: #1b2a2d;
  text-decoration: none;
  transition: color 0.38s ease-in-out;
}

.ct-us .det-ci-val a:hover {
  color: #FF5D6F;
}

@media (max-width: 992px) {
  .ct-us .reach-inner {
    flex-direction: column;
    gap: 40px;
  }

  .ct-us .reach-right {
    width: 100%;
  }

  .ct-us .reach-h1 {
    font-size: 38px;
  }

  .ct-us .form-inner {
    flex-direction: column;
    gap: 40px;
  }

  .ct-us .form-aside {
    flex: none;
    width: 100%;
  }

  .ct-us .details-inner {
    grid-template-columns: 1fr 1fr;
  }

  .ct-us .det-img-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {

  .ct-us .reach-band,
  .ct-us .form-band,
  .ct-us .details-band {
    padding: 40px 20px;
  }

  .ct-us .reach-h1 {
    font-size: 38px;
  }

  .ct-us .aside-h2 {
    font-size: 38px;
  }

  .ct-us .details-inner {
    grid-template-columns: 1fr;
  }

  .ct-us .det-img-col {
    grid-column: auto;
  }

  .ct-us .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ct-us .cf-channels {
    flex-direction: column;
  }

  .ct-us .deco-circles {
    display: none;
  }
}

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

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

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

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

.success-page .success-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 1px 9px 36px 1px rgba(0, 106, 121, 0.10);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.success-page .success-card .success-label {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #006A79;
  text-transform: uppercase;
}

.success-page .success-card .success-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1b2b2d;
  margin: 0;
}

.success-page .success-card .success-text {
  font-size: 18px;
  line-height: 1.6;
  color: #3a4f52;
  max-width: 420px;
}

.success-page .success-card .success-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(105deg, #FF5D6F, #FBFBFB);
  border-radius: 4px;
  align-self: center;
}

.success-page .success-card .success-note {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7275;
  max-width: 380px;
}

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

.success-page .success-actions .btn-primary {
  font-size: 15px;
  line-height: 1.6;
  padding: 12px 40px;
  border-radius: 7px;
  border: 2px solid #006A79;
  background: transparent;
  color: #006A79;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-page .success-actions .btn-primary:hover {
  background: #006A79;
  color: #fff;
}

.success-page .success-actions .btn-primary:active {
  transform: scale(0.97);
}

.success-page .success-actions .btn-secondary {
  font-size: 15px;
  line-height: 1.6;
  padding: 12px 40px;
  border-radius: 7px;
  border: 2px solid #FF5D6F;
  background: transparent;
  color: #FF5D6F;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.55s cubic-bezier(0.16, 1, 0.3, 1), color 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-page .success-actions .btn-secondary:hover {
  background: #FF5D6F;
  color: #fff;
}

.success-page .success-actions .btn-secondary:active {
  transform: scale(0.97);
}

.success-page .success-contact {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7275;
  text-align: center;
}

.success-page .success-contact a {
  color: #006A79;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

  .success-page .success-card {
    padding: 40px 20px;
  }

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

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

  .success-page .success-actions .btn-primary,
  .success-page .success-actions .btn-secondary {
    text-align: center;
  }
}

.page-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: #FBFBFB;
  text-align: center;
}

.page-404 .err-wrap {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-404 .err-code {
  position: relative;
  display: inline-block;
}

.page-404 .err-code__num {
  font-size: 68px;
  line-height: 1.2;
  font-weight: 800;
  color: #006A79;
  letter-spacing: -2px;
  display: block;
}

.page-404 .err-code__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(255, 93, 111, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
  pointer-events: none;
}

.page-404 .err-code__num {
  position: relative;
  z-index: 1;
}

.page-404 .err-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 520px;
}

.page-404 .err-title {
  font-size: 38px;
  line-height: 1.2;
  color: #1b2e32;
  font-weight: 700;
  margin: 0;
}

.page-404 .err-title span {
  color: #FF5D6F;
}

.page-404 .err-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #3a5459;
  margin: 0;
}

.page-404 .err-divider {
  width: 48px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, #FF5D6F 0%, rgba(255, 93, 111, 0.2) 100%);
}

.page-404 .err-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-404 .btn-primary {
  display: inline-block;
  padding: 12px 40px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  color: #FF5D6F;
  border: 2px solid #FF5D6F;
  border-radius: 7px;
  background: transparent;
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow: 1px 7px 18px 1px rgba(255, 93, 111, 0.10);
  transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-404 .btn-primary:hover {
  background: #FF5D6F;
  color: #fff;
}

.page-404 .btn-primary:active {
  transform: scale(0.97);
}

.page-404 .btn-secondary {
  display: inline-block;
  padding: 12px 40px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  color: #006A79;
  border: 2px solid #006A79;
  border-radius: 7px;
  background: transparent;
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow: 1px 7px 18px 1px rgba(0, 106, 121, 0.10);
  transition: background 0.55s cubic-bezier(0.16, 1, 0.3, 1), color 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-404 .btn-secondary:hover {
  background: #006A79;
  color: #fff;
}

.page-404 .btn-secondary:active {
  transform: scale(0.97);
}

.page-404 .err-hint {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7a80;
  margin: 0;
}

.page-404 .err-hint a {
  color: #FF5D6F;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-404 .err-graphic {
  width: 100%;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-404 .err-graphic svg {
  width: 100%;
  height: auto;
}

@media (max-width: 576px) {
  .page-404 {
    padding: 80px 20px;
  }

  .page-404 .err-code__num {
    font-size: 52px;
  }

  .page-404 .err-title {
    font-size: 38px;
  }

  .page-404 .err-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-404 .btn-primary,
  .page-404 .btn-secondary {
    text-align: center;
  }
}