* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.site-head {
  position: relative;
  background: #084D5C;
  overflow: hidden;
}

.site-head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #084D5C 0%, #063d4a 60%, #052e38 100%);
  pointer-events: none;
}

.site-head::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(8, 235, 199, 0.06);
  pointer-events: none;
}

.head-plate {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 1;
}

.head-top-pod {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 0 10px;
  border-bottom: 1px solid rgba(8, 235, 199, 0.15);
}

.logo-cell {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-ring {
  width: 56px;
  height: 56px;
  border-radius: 44px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 4px 18px 0 rgba(8, 235, 199, 0.10);
  border: 2px solid rgba(8, 235, 199, 0.3);
  flex-shrink: 0;
}

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

.brand-label {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-name {
  font-family: 'Fira Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-sub {
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: rgba(8, 235, 199, 0.8);
  line-height: 1.35;
}

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

.phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fira Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #08EBC7;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid rgba(8, 235, 199, 0.35);
  transition: color 0.38s cubic-bezier(0.34,1.2,0.64,1), background 0.38s cubic-bezier(0.34,1.2,0.64,1), border-color 0.38s cubic-bezier(0.34,1.2,0.64,1);
  min-height: 44px;
}

.phone-link:hover {
  background: rgba(8, 235, 199, 0.12);
  border-color: #08EBC7;
  color: #ffffff;
}

.phone-link:focus {
  outline: none;
  filter: invert(1);
}

.phone-link .bi {
  font-size: 16px;
}

.head-nav-pod {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 0 20px;
}

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

.primary-nav li {
  display: flex;
}

.primary-nav a {
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.32s ease-in-out, background 0.32s ease-in-out;
  white-space: nowrap;
}

.primary-nav a:hover {
  color: #08EBC7;
  background: rgba(8, 235, 199, 0.08);
}

.primary-nav a:focus {
  outline: none;
  filter: invert(1);
}

.primary-nav a.active {
  color: #08EBC7;
  background: rgba(8, 235, 199, 0.1);
}

.nav-accent-dot {
  width: 4px;
  height: 4px;
  border-radius: 44px;
  background: rgba(8, 235, 199, 0.4);
  display: inline-block;
  margin: 0 10px;
}

.head-strip {
  background: linear-gradient(90deg, #08EBC7 0%, #06c9ac 50%, #F35A7E 100%);
  height: 3px;
  width: 100%;
}

@media (max-width: 1024px) {
  .head-plate {
    padding: 0 20px;
  }
  .head-top-pod {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .head-top-pod {
    flex-wrap: wrap;
    padding: 20px 0 10px;
  }
  .head-contact-pod {
    width: 100%;
    justify-content: flex-start;
  }
  .brand-name {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .head-plate {
    padding: 0 10px;
  }
  .primary-nav a {
    padding: 10px;
    font-size: 16px;
  }
  .brand-sub {
    display: none;
  }
}

.site-foot {
  background: #052e38;
  position: relative;
  overflow: hidden;
}

.site-foot::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(8, 235, 199, 0.04);
  pointer-events: none;
}

.foot-plate {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  position: relative;
  z-index: 1;
}

.foot-deck {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(8, 235, 199, 0.12);
}

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

.foot-logo-row {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.foot-logo-ring {
  width: 56px;
  height: 56px;
  border-radius: 44px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 1px 6px 0 rgba(8, 235, 199, 0.08);
  border: 2px solid rgba(8, 235, 199, 0.2);
  flex-shrink: 0;
}

.foot-logo-ring img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.foot-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.foot-brand-name {
  font-family: 'Fira Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.foot-brand-year {
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: rgba(8, 235, 199, 0.65);
  line-height: 1.35;
}

.foot-desc {
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  max-width: 360px;
}

.foot-address-cell {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.foot-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  text-decoration: none;
  transition: color 0.35s ease-in-out;
}

.foot-contact-item:hover {
  color: #08EBC7;
}

.foot-contact-item:focus {
  outline: none;
  filter: invert(1);
}

.foot-contact-item .bi {
  color: rgba(8, 235, 199, 0.6);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.foot-nav-cell {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.foot-nav-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-nav-label {
  font-family: 'Fira Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #08EBC7;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

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

.foot-nav-list a {
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.4s cubic-bezier(0.34,1.2,0.64,1);
  min-height: 44px;
}

.foot-nav-list a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 44px;
  background: rgba(8, 235, 199, 0.35);
  flex-shrink: 0;
  transition: background 0.4s cubic-bezier(0.34,1.2,0.64,1);
}

.foot-nav-list a:hover {
  color: #08EBC7;
}

.foot-nav-list a:hover::before {
  background: #08EBC7;
}

.foot-nav-list a:focus {
  outline: none;
  filter: invert(1);
}

.foot-bottom-pod {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.foot-copy {
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  line-height: 1.35;
}

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

.foot-policy-list a {
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.33s ease-in-out;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.foot-policy-list a:hover {
  color: rgba(8, 235, 199, 0.8);
}

.foot-policy-list a:focus {
  outline: none;
  filter: invert(1);
}

@media (max-width: 1024px) {
  .foot-plate {
    padding: 80px 20px 40px;
  }
  .foot-deck {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .foot-deck {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .foot-plate {
    padding: 40px 20px;
  }
}

@media (max-width: 640px) {
  .foot-plate {
    padding: 40px 10px;
  }
  .foot-bottom-pod {
    flex-direction: column;
    align-items: flex-start;
  }
  .foot-policy-list {
    gap: 10px;
  }
}

.cookie-tray {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 40px);
  max-width: 560px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 2px 9px 60px 0 rgba(8, 235, 199, 0.11);
  border: 1px solid rgba(8, 235, 199, 0.2);
  z-index: 8000;
  padding: 20px;
  font-family: 'PT Sans', sans-serif;
}

.cookie-tray-head {
  font-family: 'Fira Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #084D5C;
  line-height: 1.35;
  margin-bottom: 10px;
}

.cookie-tray-body {
  font-size: 16px;
  color: #084D5C;
  line-height: 1.55;
  margin-bottom: 20px;
  opacity: 0.8;
}

.cookie-expand-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: #08EBC7;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  min-height: 44px;
  transition: color 0.35s ease-in-out;
}

.cookie-expand-btn:hover {
  color: #084D5C;
}

.cookie-expand-btn:focus {
  outline: none;
  filter: invert(1);
}

.cookie-panel {
  display: none;
  border: 1px solid rgba(8, 235, 199, 0.2);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  background: rgba(8, 235, 199, 0.03);
}

.cookie-panel.open {
  display: block;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cookie-toggle-label {
  font-size: 16px;
  color: #084D5C;
  line-height: 1.35;
  font-family: 'Fira Sans', sans-serif;
}

.cookie-toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 235, 199, 0.2);
  border-radius: 44px;
  cursor: pointer;
  transition: background 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.cookie-toggle-track::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 44px;
  background: #ffffff;
  top: 3px;
  left: 3px;
  box-shadow: 2px 1px 6px 0 rgba(8, 235, 199, 0.08);
  transition: transform 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.cookie-toggle-switch input:checked + .cookie-toggle-track {
  background: #08EBC7;
  box-shadow: inset 0 1px 3px rgba(8, 235, 199, 0.3);
}

.cookie-toggle-switch input:checked + .cookie-toggle-track::after {
  transform: translateX(20px);
}

.cookie-toggle-switch input:focus + .cookie-toggle-track {
  outline: 2px solid #084D5C;
  outline-offset: 2px;
}

.cookie-btn-row {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  min-height: 44px;
  border-radius: 6px;
  font-family: 'Fira Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #08EBC7;
  transition: background 0.4s cubic-bezier(0.34,1.2,0.64,1), color 0.4s cubic-bezier(0.34,1.2,0.64,1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-btn-accept {
  background: #08EBC7;
  color: #084D5C;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #08EBC7 0%, #06c9ac 100%);
  color: #052e38;
}

.cookie-btn-accept:focus {
  outline: none;
  filter: invert(1);
}

.cookie-btn-decline {
  background: transparent;
  color: #084D5C;
}

.cookie-btn-decline:hover {
  background: rgba(8, 235, 199, 0.1);
}

.cookie-btn-decline:focus {
  outline: none;
  filter: invert(1);
}.terms-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
}

.terms-wrapper h1 {
    font-size: 70px;
    line-height: 1.1;
    color: #084D5C;
    margin-bottom: 40px;
    margin-top: 0;
}

.terms-wrapper h2 {
    font-size: 44px;
    line-height: 1.1;
    color: #084D5C;
    margin-top: 80px;
    margin-bottom: 20px;
}

.terms-wrapper h3 {
    font-size: 24px;
    line-height: 1.35;
    color: #084D5C;
    margin-top: 40px;
    margin-bottom: 20px;
}

.terms-wrapper h4 {
    font-size: 24px;
    line-height: 1.35;
    color: #084D5C;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 10px;
}

.terms-wrapper h5 {
    font-size: 16px;
    line-height: 1.55;
    color: #084D5C;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 40px;
    margin-bottom: 10px;
}

.terms-wrapper h6 {
    font-size: 16px;
    line-height: 1.55;
    color: #084D5C;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.terms-wrapper p {
    font-size: 16px;
    line-height: 1.55;
    color: #1b3a42;
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 72ch;
}

.terms-wrapper ul {
    margin: 0 0 20px 0;
    padding-left: 40px;
    list-style: none;
}

.terms-wrapper ol {
    margin: 0 0 20px 0;
    padding-left: 40px;
    list-style: none;
    counter-reset: policy-ol;
}

.terms-wrapper ul li {
    font-size: 16px;
    line-height: 1.55;
    color: #1b3a42;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.terms-wrapper ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 44px;
    background-color: #08EBC7;
}

.terms-wrapper ol li {
    font-size: 16px;
    line-height: 1.55;
    color: #1b3a42;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    counter-increment: policy-ol;
}

.terms-wrapper ol li::before {
    content: counter(policy-ol) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #08EBC7;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.55;
}

.terms-wrapper ul ul,
.terms-wrapper ol ol,
.terms-wrapper ul ol,
.terms-wrapper ol ul {
    margin-top: 10px;
    margin-bottom: 0;
}

.terms-wrapper a {
    color: #084D5C;
    text-decoration: underline;
    text-decoration-color: #08EBC7;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    transition: color 0.38s cubic-bezier(0.34,1.2,0.64,1), text-decoration-color 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.terms-wrapper a:hover {
    color: #F35A7E;
    text-decoration-color: #F35A7E;
}

.terms-wrapper a:focus-visible {
    outline: 2px solid #08EBC7;
    outline-offset: 2px;
    border-radius: 6px;
}

.terms-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.55;
    box-shadow: 2px 4px 18px 0 rgba(8, 235, 199, 0.10);
    border-radius: 6px;
    overflow: hidden;
}

.terms-wrapper thead {
    background-color: #084D5C;
}

.terms-wrapper thead th {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 20px;
    text-align: left;
}

.terms-wrapper tbody tr {
    border-bottom: 1px solid rgba(8, 235, 199, 0.15);
    transition: background-color 0.35s ease-in-out;
}

.terms-wrapper tbody tr:last-child {
    border-bottom: none;
}

.terms-wrapper tbody tr:nth-child(even) {
    background-color: rgba(8, 235, 199, 0.04);
}

.terms-wrapper tbody tr:hover {
    background-color: rgba(8, 235, 199, 0.09);
}

.terms-wrapper td {
    padding: 20px;
    color: #1b3a42;
    vertical-align: top;
}

.terms-wrapper th {
    padding: 20px;
    vertical-align: top;
}

.terms-wrapper hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, #08EBC7 0%, rgba(8, 235, 199, 0.15) 100%);
    margin: 80px 0;
}

.terms-wrapper div {
    font-size: 16px;
    line-height: 1.55;
    color: #1b3a42;
}

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

    .terms-wrapper h1 {
        font-size: 44px;
    }

    .terms-wrapper h2 {
        font-size: 44px;
    }
}

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

    .terms-wrapper h1 {
        font-size: 44px;
        margin-bottom: 20px;
    }

    .terms-wrapper h2 {
        font-size: 24px;
        margin-top: 40px;
    }

    .terms-wrapper h3 {
        font-size: 24px;
        margin-top: 40px;
    }

    .terms-wrapper table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 640px) {
    .terms-wrapper {
        padding: 40px 10px;
    }

    .terms-wrapper h1 {
        font-size: 44px;
    }

    .terms-wrapper h2 {
        font-size: 24px;
    }

    .terms-wrapper ul {
        padding-left: 20px;
    }

    .terms-wrapper ol {
        padding-left: 20px;
    }

    .terms-wrapper hr {
        margin: 40px 0;
    }
}
.lp-prog {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip;
}

.lp-prog .schema-data {
  display: none;
}


.lp-prog .tb {
  position: relative;
  padding: 80px 80px 80px 80px;
  background: linear-gradient(113deg, #e6fdf9 0%, #ffffff 55%, #fde8ee 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}

.lp-prog .tb::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 80px;
  width: 320px;
  height: 320px;
  background: linear-gradient(113deg, rgba(8,235,199,0.10) 0%, rgba(255,255,255,0) 70%);
  clip-path: polygon(20% 0%, 80% 5%, 100% 35%, 90% 80%, 60% 100%, 10% 85%, 0% 40%);
  pointer-events: none;
  z-index: 0;
}

.lp-prog .tb::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 40px;
  width: 180px;
  height: 180px;
  background: linear-gradient(113deg, rgba(243,90,126,0.07) 0%, rgba(255,255,255,0) 80%);
  clip-path: polygon(50% 0%, 95% 25%, 85% 80%, 30% 100%, 0% 60%, 15% 15%);
  pointer-events: none;
  z-index: 0;
}

.lp-prog .tb-left {
  flex: 1 1 0;
  position: relative;
  z-index: 1;
}

.lp-prog .tb-label {
  display: inline-block;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #084D5C;
  background: rgba(8,235,199,0.13);
  border-radius: 6px;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.lp-prog .tb-h1 {
  font-size: 70px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #084D5C;
  margin-bottom: 20px;
}

.lp-prog .tb-h1 .accent-inline {
  background: linear-gradient(113deg, #08EBC7 0%, #e6fdf9 100%);
  border-radius: 6px;
  padding: 0 10px;
  color: #084D5C;
}

.lp-prog .tb-sub {
  font-size: 24px;
  line-height: 1.55;
  color: #1a3a42;
  max-width: 520px;
  margin-bottom: 40px;
}

.lp-prog .tb-cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.35;
  color: #084D5C;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(113deg, #08EBC7 0%, #b2f7ee 100%);
  border-radius: 44px;
  padding: 20px 40px;
  box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
  transition: background-position 0.38s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.38s ease-in-out;
  background-size: 200% 200%;
  background-position: 0% 50%;
}

.lp-prog .tb-cta:hover {
  background-position: 100% 50%;
  box-shadow: 2px 9px 60px 0 rgba(8,235,199,0.11);
}

.lp-prog .tb-cta:focus {
  outline: 2px solid #08EBC7;
  outline-offset: 3px;
}

.lp-prog .tb-cta:active {
  box-shadow: inset 2px 1px 6px 0 rgba(8,235,199,0.18);
}

.lp-prog .tb-cta .arr {
  font-size: 24px;
  transition: transform 0.32s cubic-bezier(0.34,1.2,0.64,1);
}

.lp-prog .tb-cta:hover .arr {
  transform: translateX(6px);
}

.lp-prog .tb-right {
  flex: 0 0 420px;
  position: relative;
  z-index: 1;
}

.lp-prog .tb-img-wrap {
  width: 420px;
  height: 340px;
  border-radius: 44px;
  overflow: hidden;
  position: relative;
  box-shadow: 2px 9px 60px 0 rgba(8,235,199,0.11);
}

.lp-prog .tb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-prog .tb-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(113deg, rgba(8,235,199,0.38) 0%, rgba(8,77,92,0.22) 100%);
  border-radius: 44px;
  pointer-events: none;
}


@keyframes glowbuild {
  0% { opacity: 0; box-shadow: 0 0 0 0 rgba(8,235,199,0); }
  60% { opacity: 1; box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.18); }
  100% { opacity: 1; box-shadow: 2px 9px 60px 0 rgba(8,235,199,0.11); }
}

.lp-prog .tb-img-wrap {
  animation: glowbuild 0.85s cubic-bezier(0.34,1.2,0.64,1) both;
}


.lp-prog .svc {
  background: #ffffff;
  padding: 80px 80px;
  position: relative;
}

.lp-prog .svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.lp-prog .svc-intro {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 40px;
}

.lp-prog .svc-intro-text {
  flex: 1 1 0;
}

.lp-prog .svc-intro-img {
  flex: 0 0 340px;
}

.lp-prog .svc-intro-img-wrap {
  width: 340px;
  height: 260px;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
}

.lp-prog .svc-intro-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-prog .svc-eyebrow {
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #F35A7E;
  margin-bottom: 20px;
}

.lp-prog .svc-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #084D5C;
  margin-bottom: 20px;
}

.lp-prog .svc-body {
  font-size: 16px;
  line-height: 1.55;
  color: #2a4a52;
  max-width: 520px;
  margin-bottom: 0;
}

.lp-prog .svc-card {
  background: linear-gradient(113deg, #f4fffe 0%, #ffffff 100%);
  border-radius: 44px;
  padding: 40px;
  box-shadow: 2px 1px 6px 0 rgba(8,235,199,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.40s cubic-bezier(0.34,1.2,0.64,1), transform 0.40s cubic-bezier(0.34,1.2,0.64,1);
}

.lp-prog .svc-card:hover {
  box-shadow: 2px 9px 60px 0 rgba(8,235,199,0.11);
  transform: translateY(-4px);
}

.lp-prog .svc-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: linear-gradient(113deg, #08EBC7 0%, #e6fdf9 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #084D5C;
  flex-shrink: 0;
}

.lp-prog .svc-card-h {
  font-size: 24px;
  line-height: 1.35;
  color: #084D5C;
  margin: 0;
}

.lp-prog .svc-card-p {
  font-size: 16px;
  line-height: 1.55;
  color: #2a4a52;
  margin: 0;
}


.lp-prog .proc {
  padding: 80px 80px;
  position: relative;
  background: linear-gradient(113deg, #f0fffe 0%, #fde8ee 100%);
  background-color: #f0fffe;
}

.lp-prog .proc-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.lp-prog .proc-bg-pattern svg {
  width: 100%;
  height: 100%;
  opacity: 0.045;
}

.lp-prog .proc-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.lp-prog .proc-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.lp-prog .proc-top-text {
  flex: 1 1 0;
}

.lp-prog .proc-eyebrow {
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #08EBC7;
  margin-bottom: 20px;
}

.lp-prog .proc-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #084D5C;
  margin-bottom: 0;
}

.lp-prog .proc-top-desc {
  flex: 0 1 420px;
}

.lp-prog .proc-desc-p {
  font-size: 16px;
  line-height: 1.55;
  color: #2a4a52;
  margin: 0;
}

.lp-prog .proc-steps {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 80px;
}

.lp-prog .proc-step {
  flex: 1 1 0;
  background: #ffffff;
  border-radius: 44px;
  padding: 40px;
  box-shadow: 2px 1px 6px 0 rgba(8,235,199,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.35s ease-in-out;
}

.lp-prog .proc-step:hover {
  box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
}

.lp-prog .proc-step-num {
  font-size: 44px;
  line-height: 1.1;
  color: rgba(8,235,199,0.28);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.lp-prog .proc-step-h {
  font-size: 24px;
  line-height: 1.35;
  color: #084D5C;
  margin: 0;
}

.lp-prog .proc-step-p {
  font-size: 16px;
  line-height: 1.55;
  color: #2a4a52;
  margin: 0;
}

.lp-prog .proc-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #084D5C;
  border-radius: 44px;
  padding: 40px 80px;
}

.lp-prog .proc-bottom-text {
  flex: 1 1 0;
}

.lp-prog .proc-bottom-h {
  font-size: 24px;
  line-height: 1.35;
  color: #08EBC7;
  margin-bottom: 10px;
}

.lp-prog .proc-bottom-p {
  font-size: 16px;
  line-height: 1.55;
  color: #c8f5ef;
  margin: 0;
}

.lp-prog .proc-bottom-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-shrink: 0;
}

.lp-prog .proc-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 44px;
  padding: 20px 40px;
  transition: background-position 0.42s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.42s ease-in-out, color 0.32s ease-in-out;
  background-size: 200% 200%;
  background-position: 0% 50%;
}

.lp-prog .proc-link.prim {
  background: linear-gradient(113deg, #08EBC7 0%, #b2f7ee 100%);
  color: #084D5C;
  box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
}

.lp-prog .proc-link.prim:hover {
  background-position: 100% 50%;
  box-shadow: 2px 9px 60px 0 rgba(8,235,199,0.11);
}

.lp-prog .proc-link.prim:active {
  box-shadow: inset 2px 1px 6px 0 rgba(8,235,199,0.18);
}

.lp-prog .proc-link.sec {
  background: transparent;
  color: #08EBC7;
  border: 2px solid rgba(8,235,199,0.45);
}

.lp-prog .proc-link.sec:hover {
  background: rgba(8,235,199,0.10);
  border-color: #08EBC7;
}

.lp-prog .proc-link:focus {
  outline: 2px solid #08EBC7;
  outline-offset: 3px;
}

.lp-prog .proc-link .arr {
  font-size: 16px;
  transition: transform 0.30s cubic-bezier(0.34,1.2,0.64,1);
}

.lp-prog .proc-link:hover .arr {
  transform: translateX(5px);
}


@media (max-width: 1024px) {
  .lp-prog .tb {
    padding: 80px 40px;
    gap: 40px;
  }
  .lp-prog .tb-right {
    flex: 0 0 320px;
  }
  .lp-prog .tb-img-wrap {
    width: 320px;
    height: 260px;
  }
  .lp-prog .tb-h1 {
    font-size: 44px;
  }
  .lp-prog .svc {
    padding: 80px 40px;
  }
  .lp-prog .svc-intro {
    gap: 40px;
  }
  .lp-prog .svc-intro-img {
    flex: 0 0 260px;
  }
  .lp-prog .svc-intro-img-wrap {
    width: 260px;
    height: 200px;
  }
  .lp-prog .proc {
    padding: 80px 40px;
  }
  .lp-prog .proc-bottom {
    padding: 40px 40px;
  }
}

@media (max-width: 768px) {
  .lp-prog .tb {
    flex-direction: column;
    padding: 80px 20px;
    gap: 40px;
  }
  .lp-prog .tb-right {
    flex: 0 0 auto;
    width: 100%;
  }
  .lp-prog .tb-img-wrap {
    width: 100%;
    height: 240px;
  }
  .lp-prog .tb-h1 {
    font-size: 44px;
  }
  .lp-prog .svc {
    padding: 80px 20px;
  }
  .lp-prog .svc-grid {
    grid-template-columns: 1fr;
  }
  .lp-prog .svc-intro {
    flex-direction: column;
    gap: 40px;
  }
  .lp-prog .svc-intro-img {
    flex: 0 0 auto;
    width: 100%;
  }
  .lp-prog .svc-intro-img-wrap {
    width: 100%;
    height: 220px;
  }
  .lp-prog .proc {
    padding: 80px 20px;
  }
  .lp-prog .proc-top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  .lp-prog .proc-steps {
    flex-direction: column;
  }
  .lp-prog .proc-bottom {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
  }
  .lp-prog .proc-bottom-links {
    flex-direction: column;
    width: 100%;
  }
  .lp-prog .proc-link {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .lp-prog .tb-h1 {
    font-size: 44px;
  }
  .lp-prog .tb-sub {
    font-size: 16px;
  }
  .lp-prog .svc-h2,
  .lp-prog .proc-h2 {
    font-size: 24px;
  }
  .lp-prog .proc-step-num {
    font-size: 24px;
  }
}

.ctus-pg {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip;
}

.ctus-pg .band-top {
    width: 3px;
    height: 80px;
    background: linear-gradient(180deg, #08EBC7, #F35A7E);
    margin-left: 80px;
}

.ctus-pg .title-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 80px;
    position: relative;
}

.ctus-pg .title-strip::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #08EBC7 0%, transparent 100%);
}

.ctus-pg .title-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.ctus-pg .title-left .page-label {
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #084D5C;
}

.ctus-pg .title-left .pg-heading {
    font-size: 44px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #084D5C;
    margin: 0;
}

.ctus-pg .title-left .pg-heading .accent-dot {
    color: #F35A7E;
}

.ctus-pg .title-left .sub-note {
    font-size: 16px;
    line-height: 1.55;
    color: #2a4a52;
    max-width: 400px;
}

.ctus-pg .title-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
}

.ctus-pg .mosaic-cell {
    border-radius: 6px;
    overflow: hidden;
}

.ctus-pg .mosaic-cell.tall {
    grid-row: span 2;
}

.ctus-pg .mosaic-cell .cell-inner {
    height: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    position: relative;
}

.ctus-pg .mosaic-cell.tall .cell-inner {
    min-height: 260px;
}

.ctus-pg .cell-bg1 {
    background: linear-gradient(113deg, #084D5C 0%, #08EBC7 100%);
}

.ctus-pg .cell-bg2 {
    background: linear-gradient(113deg, #F35A7E 0%, #084D5C 100%);
}

.ctus-pg .cell-bg3 {
    background: linear-gradient(113deg, #08EBC7 0%, #084D5C 100%);
}

.ctus-pg .cell-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(8,77,92,0.7) 0%, transparent 100%);
    border-radius: 0 0 6px 6px;
    pointer-events: none;
}

.ctus-pg .cell-label {
    font-size: 16px;
    line-height: 1.35;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.ctus-pg .cell-num {
    font-size: 44px;
    line-height: 1.1;
    color: #08EBC7;
    position: relative;
    z-index: 1;
}

.ctus-pg .form-area {
    padding: 80px;
    background: linear-gradient(113deg, #f0fdfa 0%, #ffffff 60%, #fff5f7 100%);
    position: relative;
}

.ctus-pg .form-area::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent 0%, #F35A7E 50%, transparent 100%);
}

.ctus-pg .form-grid {
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: 80px;
    align-items: start;
}

.ctus-pg .form-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ctus-pg .form-col .col-heading {
    font-size: 24px;
    line-height: 1.35;
    color: #084D5C;
    margin: 0 0 10px 0;
}

.ctus-pg .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ctus-pg .field-grp {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ctus-pg .field-grp.full {
    grid-column: span 2;
}

.ctus-pg .field-grp label {
    font-size: 16px;
    line-height: 1.35;
    color: #084D5C;
}

.ctus-pg .field-grp input,
.ctus-pg .field-grp select {
    padding: 10px 20px;
    border: 1.5px solid rgba(8,77,92,0.2);
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.55;
    color: #084D5C;
    background: #ffffff;
    box-shadow: 2px 1px 6px 0 rgba(8,235,199,0.08);
    transition: border-color 0.38s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.38s cubic-bezier(0.34,1.2,0.64,1);
    outline: none;
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.ctus-pg .field-grp input::placeholder {
    color: rgba(8,77,92,0.4);
    font-size: 16px;
}

.ctus-pg .field-grp input:focus,
.ctus-pg .field-grp select:focus {
    border-color: #08EBC7;
    box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
}

.ctus-pg .field-grp select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23084D5C' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.ctus-pg .time-pref {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ctus-pg .time-pref .pref-label {
    font-size: 16px;
    line-height: 1.35;
    color: #084D5C;
}

.ctus-pg .time-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ctus-pg .time-slot-opt {
    position: relative;
}

.ctus-pg .time-slot-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ctus-pg .time-slot-opt label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1.5px solid rgba(8,77,92,0.2);
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.35;
    color: #084D5C;
    cursor: pointer;
    transition: border-color 0.35s ease-in-out, background 0.35s ease-in-out;
    background: #ffffff;
}

.ctus-pg .time-slot-opt label::before {
    content: '';
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 44px;
    border: 2px solid rgba(8,77,92,0.3);
    transition: border-color 0.35s ease-in-out, background 0.35s ease-in-out;
    display: block;
}

.ctus-pg .time-slot-opt input[type="radio"]:checked + label {
    border-color: #08EBC7;
    background: rgba(8,235,199,0.06);
    box-shadow: inset 0 1px 4px 0 rgba(8,235,199,0.12);
}

.ctus-pg .time-slot-opt input[type="radio"]:checked + label::before {
    border-color: #08EBC7;
    background: #08EBC7;
}

.ctus-pg .time-slot-opt input[type="radio"]:focus + label {
    outline: 2px solid #08EBC7;
    outline-offset: 2px;
}

.ctus-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
}

.ctus-pg .privacy-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1.5px solid rgba(8,77,92,0.3);
    border-radius: 6px;
    cursor: pointer;
    accent-color: #08EBC7;
    margin-top: 2px;
}

.ctus-pg .privacy-row input[type="checkbox"]:focus {
    outline: 2px solid #08EBC7;
    outline-offset: 2px;
}

.ctus-pg .privacy-row input[type="checkbox"]:checked {
    box-shadow: inset 0 1px 4px 0 rgba(8,235,199,0.18);
}

.ctus-pg .privacy-row .privacy-text {
    font-size: 16px;
    line-height: 1.55;
    color: #2a4a52;
}

.ctus-pg .privacy-row .privacy-text a {
    color: #084D5C;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: letter-spacing 0.4s ease-in-out, color 0.4s ease-in-out;
}

.ctus-pg .privacy-row .privacy-text a:hover {
    letter-spacing: 0.04em;
    color: #F35A7E;
}

.ctus-pg .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 40px;
    background: linear-gradient(113deg, #084D5C 0%, #08EBC7 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.55;
    cursor: pointer;
    box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
    transition: background-position 0.42s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.42s cubic-bezier(0.34,1.2,0.64,1);
    background-size: 200% 200%;
    background-position: 0% 50%;
    align-self: flex-start;
}

.ctus-pg .submit-btn:hover {
    background-position: 100% 50%;
    box-shadow: 2px 9px 60px 0 rgba(8,235,199,0.11);
}

.ctus-pg .submit-btn:active {
    box-shadow: inset 0 2px 6px 0 rgba(8,235,199,0.18);
}

.ctus-pg .submit-btn:focus {
    outline: 2px solid #08EBC7;
    outline-offset: 3px;
}

.ctus-pg .submit-btn .btn-arrow {
    font-size: 16px;
    transition: transform 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.ctus-pg .submit-btn:hover .btn-arrow {
    transform: translateX(6px);
}

.ctus-pg .side-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 10px;
}

.ctus-pg .info-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
    position: relative;
}

.ctus-pg .info-card .num-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 44px;
    background: linear-gradient(113deg, #F35A7E, #084D5C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.1;
}

.ctus-pg .info-card .ic-icon {
    font-size: 24px;
    color: #08EBC7;
}

.ctus-pg .info-card .ic-lbl {
    font-size: 16px;
    line-height: 1.35;
    color: #084D5C;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ctus-pg .info-card .ic-val {
    font-size: 16px;
    line-height: 1.55;
    color: #2a4a52;
    text-decoration: none;
    transition: letter-spacing 0.4s ease-in-out, color 0.4s ease-in-out;
}

.ctus-pg .info-card a.ic-val:hover {
    letter-spacing: 0.04em;
    color: #F35A7E;
}

.ctus-pg .details-area {
    padding: 80px;
    background: #ffffff;
    position: relative;
}

.ctus-pg .details-area::after {
    content: '';
    position: absolute;
    right: 0;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(180deg, transparent 0%, #08EBC7 50%, transparent 100%);
}

.ctus-pg .details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.ctus-pg .detail-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ctus-pg .detail-main .dm-heading {
    font-size: 24px;
    line-height: 1.35;
    color: #084D5C;
    margin: 0;
}

.ctus-pg .detail-main .dm-text {
    font-size: 16px;
    line-height: 1.55;
    color: #2a4a52;
    margin: 0;
    padding: 0 80px 0 0;
}

.ctus-pg .checklist-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(113deg, #f0fdfa 0%, #ffffff 100%);
    border-radius: 6px;
    box-shadow: 2px 1px 6px 0 rgba(8,235,199,0.08);
}

.ctus-pg .checklist-block .cl-title {
    font-size: 16px;
    line-height: 1.35;
    color: #084D5C;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 10px 0;
}

.ctus-pg .cl-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(8,77,92,0.1);
    border-radius: 44px;
    margin-bottom: 10px;
    overflow: hidden;
}

.ctus-pg .cl-progress-fill {
    height: 100%;
    width: 60%;
    background: linear-gradient(113deg, #08EBC7, #084D5C);
    border-radius: 44px;
    transition: width 0.45s cubic-bezier(0.34,1.2,0.64,1);
}

.ctus-pg .cl-count {
    font-size: 16px;
    line-height: 1.35;
    color: #F35A7E;
    margin-bottom: 10px;
}

.ctus-pg .cl-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.55;
    color: #2a4a52;
}

.ctus-pg .cl-item .cl-check {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.ctus-pg .cl-item.done .cl-check {
    background: #08EBC7;
    color: #084D5C;
}

.ctus-pg .cl-item.pending .cl-check {
    background: rgba(8,77,92,0.1);
    color: rgba(8,77,92,0.3);
}

.ctus-pg .cl-item.done {
    color: #084D5C;
}

.ctus-pg .cl-item.pending {
    color: rgba(8,77,92,0.5);
}

.ctus-pg .hours-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: #084D5C;
    border-radius: 6px;
    box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
}

.ctus-pg .hours-block .hb-title {
    font-size: 16px;
    line-height: 1.35;
    color: #08EBC7;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 10px 0;
}

.ctus-pg .hours-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.ctus-pg .hours-row .hr-day {
    font-size: 16px;
    line-height: 1.35;
    color: rgba(255,255,255,0.7);
}

.ctus-pg .hours-row .hr-time {
    font-size: 16px;
    line-height: 1.35;
    color: #ffffff;
}

.ctus-pg .hours-row.active .hr-day {
    color: #08EBC7;
}

.ctus-pg .hours-row.active .hr-time {
    color: #08EBC7;
}

.ctus-pg .divider-wave {
    height: 3px;
    background: linear-gradient(113deg, #08EBC7 0%, #F35A7E 50%, #084D5C 100%);
    margin: 0 80px;
    border-radius: 44px;
}

@keyframes col-appear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ctus-pg .form-grid .form-col {
    animation: col-appear 0.42s cubic-bezier(0.34,1.2,0.64,1) both;
}

.ctus-pg .form-grid .side-info {
    animation: col-appear 0.42s cubic-bezier(0.34,1.2,0.64,1) 0.18s both;
}

.ctus-pg .details-grid .detail-main {
    animation: col-appear 0.42s cubic-bezier(0.34,1.2,0.64,1) 0.08s both;
}

.ctus-pg .details-grid .checklist-block {
    animation: col-appear 0.42s cubic-bezier(0.34,1.2,0.64,1) 0.18s both;
}

.ctus-pg .details-grid .hours-block {
    animation: col-appear 0.42s cubic-bezier(0.34,1.2,0.64,1) 0.28s both;
}

@media (max-width: 1280px) {
    .ctus-pg .title-strip {
        padding: 40px;
    }
    .ctus-pg .form-area {
        padding: 80px 40px;
    }
    .ctus-pg .details-area {
        padding: 80px 40px;
    }
    .ctus-pg .band-top {
        margin-left: 40px;
    }
    .ctus-pg .divider-wave {
        margin: 0 40px;
    }
    .ctus-pg .detail-main .dm-text {
        padding-right: 40px;
    }
}

@media (max-width: 1024px) {
    .ctus-pg .form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ctus-pg .details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .ctus-pg .detail-main {
        grid-column: span 2;
    }
    .ctus-pg .detail-main .dm-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .ctus-pg .title-strip {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 20px;
    }
    .ctus-pg .title-mosaic {
        grid-template-columns: 1fr 1fr;
    }
    .ctus-pg .mosaic-cell.tall .cell-inner {
        min-height: 160px;
    }
    .ctus-pg .form-area {
        padding: 40px 20px;
    }
    .ctus-pg .details-area {
        padding: 40px 20px;
    }
    .ctus-pg .band-top {
        margin-left: 20px;
    }
    .ctus-pg .divider-wave {
        margin: 0 20px;
    }
    .ctus-pg .pg-heading {
        font-size: 44px;
    }
    .ctus-pg .details-grid {
        grid-template-columns: 1fr;
    }
    .ctus-pg .detail-main {
        grid-column: span 1;
    }
    .ctus-pg .field-row {
        grid-template-columns: 1fr;
    }
    .ctus-pg .field-grp.full {
        grid-column: span 1;
    }
    .ctus-pg .time-slots {
        grid-template-columns: 1fr;
    }
    .ctus-pg .title-strip::after {
        display: none;
    }
    .ctus-pg .form-area::before {
        display: none;
    }
    .ctus-pg .details-area::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .ctus-pg .title-left .pg-heading {
        font-size: 44px;
    }
    .ctus-pg .title-mosaic {
        grid-template-columns: 1fr;
    }
    .ctus-pg .mosaic-cell.tall {
        grid-row: span 1;
    }
    .ctus-pg .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

.strt {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip;
}

.strt .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,235,199,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,235,199,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridpulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gridpulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.strt .wavy-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  z-index: 0;
}

.strt .wavy-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  z-index: 0;
}

.strt ::selection {
  background: #08EBC7;
  color: #084D5C;
}

.strt a {
  color: #084D5C;
  text-decoration: none;
  letter-spacing: 0;
  transition: letter-spacing 0.38s cubic-bezier(0.34,1.2,0.64,1), color 0.35s ease-in-out;
}

.strt a:hover {
  letter-spacing: 0.04em;
  color: #08EBC7;
}

.strt .btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(113deg, #08EBC7, #084D5C);
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-position 0.42s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.38s ease-in-out;
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
  text-decoration: none;
}

.strt .btn-arrow:hover {
  background-position: 100% 50%;
  box-shadow: 2px 9px 60px 0 rgba(8,235,199,0.11);
  color: #fff;
  letter-spacing: 0;
}

.strt .btn-arrow:active {
  box-shadow: inset 2px 1px 6px 0 rgba(8,235,199,0.08);
}

.strt .btn-arrow i {
  font-size: 16px;
  transition: transform 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.strt .btn-arrow:hover i {
  transform: translateX(4px);
}



.strt .title-blk {
  position: relative;
  padding: 80px 80px 40px 80px;
  background: #fff;
  overflow: hidden;
}

.strt .title-blk .edge-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(113deg, #08EBC7 0%, transparent 70%);
}

.strt .title-blk .tb-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.strt .title-blk .tb-img-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
  position: relative;
  height: 380px;
}

.strt .title-blk .tb-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strt .title-blk .tb-img-card .img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,77,92,0.55) 0%, transparent 60%);
}

.strt .title-blk .tb-text {
  padding: 40px 0 0 20px;
}

.strt .title-blk .tb-eyebrow {
  font-size: 16px;
  line-height: 1.35;
  color: #084D5C;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.strt .title-blk .tb-h1 {
  font-size: 70px;
  line-height: 1.1;
  color: #084D5C;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.strt .title-blk .tb-h1 .punct {
  color: #08EBC7;
}

.strt .title-blk .tb-sub {
  font-size: 24px;
  line-height: 1.55;
  color: #084D5C;
  margin-bottom: 40px;
  max-width: 520px;
}

.strt .title-blk .tb-sub strong {
  color: #084D5C;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .strt .title-blk {
    padding: 80px 40px 40px 40px;
  }
  .strt .title-blk .tb-inner {
    grid-template-columns: 260px 1fr;
    gap: 20px;
  }
  .strt .title-blk .tb-h1 {
    font-size: 44px;
  }
  .strt .title-blk .tb-img-card {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .strt .title-blk {
    padding: 40px 20px 40px 20px;
  }
  .strt .title-blk .tb-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .strt .title-blk .tb-img-card {
    height: 220px;
  }
  .strt .title-blk .tb-h1 {
    font-size: 44px;
  }
  .strt .title-blk .tb-text {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .strt .title-blk .tb-h1 {
    font-size: 44px;
  }
}



.strt .obj-blk {
  position: relative;
  background: linear-gradient(113deg, #08EBC7 0%, #e8fdfb 100%);
  padding: 80px 80px;
}

.strt .obj-blk .wavy-bottom svg {
  display: block;
}

.strt .obj-blk .obj-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.strt .obj-blk .obj-left {
  padding-right: 40px;
}

.strt .obj-blk .obj-label {
  display: inline-block;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #084D5C;
  margin-bottom: 20px;
  font-weight: 600;
}

.strt .obj-blk .obj-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #084D5C;
  margin-bottom: 20px;
}

.strt .obj-blk .obj-body {
  font-size: 16px;
  line-height: 1.55;
  color: #084D5C;
}

.strt .obj-blk .obj-body p {
  margin-bottom: 20px;
}

.strt .obj-blk .obj-body p:last-child {
  margin-bottom: 0;
}

.strt .obj-blk .obj-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.strt .obj-blk .obj-card {
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow 0.4s ease-in-out, transform 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.strt .obj-blk .obj-card:hover {
  box-shadow: 2px 9px 60px 0 rgba(8,235,199,0.11);
  transform: translateY(-2px);
}

.strt .obj-blk .obj-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strt .obj-blk .obj-num svg {
  position: absolute;
  inset: 0;
  width: 44px;
  height: 44px;
}

.strt .obj-blk .obj-num span {
  font-size: 16px;
  font-weight: 700;
  color: #084D5C;
  position: relative;
  z-index: 1;
}

.strt .obj-blk .obj-card-body h5 {
  font-size: 16px;
  line-height: 1.35;
  color: #084D5C;
  font-weight: 700;
  margin-bottom: 10px;
}

.strt .obj-blk .obj-card-body p {
  font-size: 16px;
  line-height: 1.55;
  color: #084D5C;
  margin: 0;
}

@media (max-width: 1024px) {
  .strt .obj-blk {
    padding: 80px 40px;
  }
  .strt .obj-blk .obj-left {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .strt .obj-blk {
    padding: 40px 20px;
  }
  .strt .obj-blk .obj-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}



.strt .notdo-blk {
  position: relative;
  background: #fff;
  padding: 80px 80px;
}

.strt .notdo-blk .notdo-narrow {
  max-width: 680px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.strt .notdo-blk .notdo-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #084D5C;
  margin-bottom: 20px;
}

.strt .notdo-blk .notdo-lead {
  font-size: 16px;
  line-height: 1.55;
  color: #084D5C;
}

.strt .notdo-blk .notdo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.strt .notdo-blk .notdo-item {
  border-radius: 6px;
  padding: 40px 20px;
  background: #f4fdfb;
  box-shadow: 2px 1px 6px 0 rgba(8,235,199,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.42s cubic-bezier(0.34,1.2,0.64,1);
}

.strt .notdo-blk .notdo-item:hover {
  box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
}

.strt .notdo-blk .notdo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F35A7E;
  font-size: 24px;
}

.strt .notdo-blk .notdo-item h5 {
  font-size: 16px;
  line-height: 1.35;
  color: #084D5C;
  font-weight: 700;
  margin: 0;
}

.strt .notdo-blk .notdo-item p {
  font-size: 16px;
  line-height: 1.55;
  color: #084D5C;
  margin: 0;
}

.strt .notdo-blk .notdo-wide-note {
  margin: 40px auto 0 auto;
  max-width: 560px;
  text-align: center;
  font-size: 16px;
  line-height: 1.55;
  color: #084D5C;
  padding: 20px;
  border-radius: 44px;
  background: linear-gradient(113deg, rgba(8,235,199,0.12), rgba(8,77,92,0.06));
}

@media (max-width: 1024px) {
  .strt .notdo-blk {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .strt .notdo-blk {
    padding: 40px 20px;
  }
  .strt .notdo-blk .notdo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .strt .notdo-blk .notdo-grid {
    grid-template-columns: 1fr;
  }
}



.strt .who-blk {
  position: relative;
  background: #084D5C;
  padding: 80px 80px;
  overflow: hidden;
}

.strt .who-blk .grid-bg {
  background-image:
    linear-gradient(rgba(8,235,199,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,235,199,0.1) 1px, transparent 1px);
}

.strt .who-blk .who-inner {
  position: relative;
  z-index: 1;
}

.strt .who-blk .who-top {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.strt .who-blk .who-label {
  display: inline-block;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #08EBC7;
  margin-bottom: 20px;
  font-weight: 600;
}

.strt .who-blk .who-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.strt .who-blk .who-lead {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
}

.strt .who-blk .who-img {
  border-radius: 6px;
  overflow: hidden;
  height: 280px;
  box-shadow: 2px 9px 60px 0 rgba(8,235,199,0.11);
}

.strt .who-blk .who-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.strt .who-blk .who-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(8,235,199,0.2);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.4s ease-in-out, border-color 0.38s ease-in-out;
}

.strt .who-blk .who-card:hover {
  background: rgba(8,235,199,0.1);
  border-color: rgba(8,235,199,0.5);
}

.strt .who-blk .who-card .who-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strt .who-blk .who-card .who-num svg {
  position: absolute;
  inset: 0;
  width: 44px;
  height: 44px;
}

.strt .who-blk .who-card .who-num span {
  font-size: 16px;
  font-weight: 700;
  color: #08EBC7;
  position: relative;
  z-index: 1;
}

.strt .who-blk .who-card h5 {
  font-size: 16px;
  line-height: 1.35;
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.strt .who-blk .who-card p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

@media (max-width: 1024px) {
  .strt .who-blk {
    padding: 80px 40px;
  }
  .strt .who-blk .who-top {
    grid-template-columns: 1fr;
  }
  .strt .who-blk .who-img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .strt .who-blk {
    padding: 40px 20px;
  }
  .strt .who-blk .who-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .strt .who-blk .who-cards {
    grid-template-columns: 1fr;
  }
}



.strt .rel-blk {
  position: relative;
  background: linear-gradient(113deg, rgba(8,235,199,0.06) 0%, #fff 100%);
  padding: 80px 80px;
}

.strt .rel-blk .rel-inner {
  position: relative;
  z-index: 1;
}

.strt .rel-blk .rel-top {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.strt .rel-blk .rel-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #084D5C;
  margin-bottom: 20px;
}

.strt .rel-blk .rel-body {
  font-size: 16px;
  line-height: 1.55;
  color: #084D5C;
}

.strt .rel-blk .rel-body p {
  margin-bottom: 20px;
}

.strt .rel-blk .rel-body p:last-child {
  margin-bottom: 0;
}

.strt .rel-blk .rel-img {
  border-radius: 6px;
  overflow: hidden;
  height: 320px;
  box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
}

.strt .rel-blk .rel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease-in-out;
}

.strt .rel-blk .rel-img:hover img {
  transform: scale(1.03);
}

.strt .rel-blk .rel-partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.strt .rel-blk .rel-partner {
  border-radius: 6px;
  padding: 20px;
  background: #fff;
  box-shadow: 2px 1px 6px 0 rgba(8,235,199,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.4s cubic-bezier(0.34,1.2,0.64,1), transform 0.38s ease-in-out;
}

.strt .rel-blk .rel-partner:hover {
  box-shadow: 2px 9px 60px 0 rgba(8,235,199,0.11);
  transform: translateY(-3px);
}

.strt .rel-blk .rel-partner i {
  font-size: 24px;
  color: #08EBC7;
}

.strt .rel-blk .rel-partner h6 {
  font-size: 16px;
  line-height: 1.35;
  color: #084D5C;
  font-weight: 700;
  margin: 0;
}

.strt .rel-blk .rel-partner p {
  font-size: 16px;
  line-height: 1.55;
  color: #084D5C;
  margin: 0;
}

.strt .rel-blk .wavy-top svg {
  display: block;
}

@media (max-width: 1024px) {
  .strt .rel-blk {
    padding: 80px 40px;
  }
  .strt .rel-blk .rel-top {
    grid-template-columns: 1fr;
  }
  .strt .rel-blk .rel-partners {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .strt .rel-blk {
    padding: 40px 20px;
  }
  .strt .rel-blk .rel-img {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .strt .rel-blk .rel-partners {
    grid-template-columns: 1fr;
  }
}

.abus {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip;
}

.abus .pg-wrap {
  width: 100%;
}

.abus .split-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative;
}

.abus .split-left {
  background: linear-gradient(113deg, #08EBC7 0%, #f0fffe 100%);
  padding: 80px 40px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.abus .split-left::after {
  content: "";
  position: absolute;
  right: -48px;
  top: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(113deg, #08EBC7 0%, #f0fffe 100%);
  clip-path: polygon(0 0, 40% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.abus .split-right {
  position: relative;
  overflow: hidden;
}

.abus .split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: wipe-in 1.1s cubic-bezier(0.34,1.2,0.64,1) forwards;
  clip-path: inset(0 100% 0 0);
}

@keyframes wipe-in {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0% 0 0); }
}

.abus .split-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8,77,92,0.18);
  pointer-events: none;
}

.abus .top-label {
  font-size: 16px;
  color: #084D5C;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.abus .top-head {
  font-size: 44px;
  line-height: 1.1;
  color: #084D5C;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 20px;
}

.abus .top-sub {
  font-size: 16px;
  line-height: 1.55;
  color: #084D5C;
  max-width: 380px;
  margin: 0;
}

.abus .deco-shape {
  position: absolute;
  pointer-events: none;
}

.abus .deco-circle {
  width: 120px;
  height: 120px;
  border-radius: 44px;
  border: 2px dashed rgba(8,77,92,0.22);
  top: 40px;
  left: 40px;
}

.abus .deco-dot {
  width: 20px;
  height: 20px;
  border-radius: 44px;
  background: #F35A7E;
  opacity: 0.5;
  bottom: 60px;
  left: 60px;
}

.abus .wave-div {
  width: 100%;
  line-height: 0;
  display: block;
}

.abus .wave-div svg {
  display: block;
  width: 100%;
}

.abus .about-body {
  background: #fff;
  padding: 0;
}

.abus .body-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 80px 80px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.abus .body-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.abus .about-para-head {
  font-size: 24px;
  line-height: 1.35;
  color: #084D5C;
  margin: 0 0 20px;
}

.abus .about-para {
  font-size: 16px;
  line-height: 1.55;
  color: #1a3540;
  margin: 0 0 20px;
  padding: 0 80px;
}

.abus .about-para:last-child {
  margin-bottom: 0;
}

.abus .sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.abus .img-card {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
}

.abus .img-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.42s cubic-bezier(0.34,1.2,0.64,1);
}

.abus .img-card:hover img {
  transform: scale(1.04);
}

.abus .img-card .clip-reveal {
  position: absolute;
  inset: 0;
  background: linear-gradient(113deg, rgba(8,235,199,0.18) 0%, rgba(8,77,92,0.12) 100%);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.38s cubic-bezier(0.34,1.2,0.64,1);
  pointer-events: none;
}

.abus .img-card:hover .clip-reveal {
  clip-path: inset(0 0% 0 0);
}

.abus .compare-block {
  background: linear-gradient(113deg, #f0fffe 0%, #fff 100%);
  border-radius: 6px;
  padding: 40px;
  box-shadow: 2px 9px 60px 0 rgba(8,235,199,0.11);
}

.abus .compare-head {
  font-size: 16px;
  line-height: 1.35;
  color: #084D5C;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
  font-weight: 700;
}

.abus .compare-table {
  width: 100%;
  border-collapse: collapse;
}

.abus .compare-table th {
  font-size: 16px;
  color: #084D5C;
  padding: 10px;
  text-align: center;
  font-weight: 700;
  border-bottom: 2px solid #08EBC7;
}

.abus .compare-table th:first-child {
  text-align: left;
}

.abus .compare-table td {
  font-size: 16px;
  color: #1a3540;
  padding: 10px;
  border-bottom: 1px solid rgba(8,235,199,0.18);
  vertical-align: middle;
}

.abus .compare-table td:first-child {
  font-weight: 500;
}

.abus .compare-table td:not(:first-child) {
  text-align: center;
}

.abus .check-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 44px;
  background: #08EBC7;
  color: #084D5C;
  font-size: 14px;
}

.abus .check-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 44px;
  background: rgba(243,90,126,0.12);
  color: #F35A7E;
  font-size: 14px;
}

.abus .sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.abus .sidebar-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
}

.abus .sidebar-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.abus .accent-box {
  border-radius: 6px;
  border: 2px dashed #08EBC7;
  padding: 40px 20px;
  text-align: center;
  background: #fff;
}

.abus .accent-box-head {
  font-size: 16px;
  color: #084D5C;
  font-weight: 700;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.abus .accent-box-num {
  font-size: 44px;
  line-height: 1.1;
  color: #08EBC7;
  font-weight: 800;
  margin: 0 0 10px;
  display: block;
}

.abus .accent-box-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #084D5C;
  margin: 0;
}

.abus .sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #084D5C;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: letter-spacing 0.35s ease-in-out, color 0.35s ease-in-out;
  margin-top: 10px;
}

.abus .sidebar-link:hover {
  letter-spacing: 0.08em;
  color: #08EBC7;
}

.abus .sidebar-link i {
  font-size: 20px;
}

.abus .bg-section {
  position: relative;
  padding: 80px 80px;
  overflow: hidden;
}

.abus .bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./graphics_bank/DSCN6959.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.abus .bg-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8,77,92,0.82);
  z-index: 1;
}

.abus .bg-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.abus .bg-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.abus .bg-head {
  font-size: 44px;
  line-height: 1.1;
  color: #08EBC7;
  margin: 0;
}

.abus .bg-para {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.abus .bg-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #08EBC7;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: gap 0.38s cubic-bezier(0.34,1.2,0.64,1), color 0.38s ease-in-out;
}

.abus .bg-link:hover {
  gap: 20px;
  color: #fff;
}

.abus .subscribe-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 2px solid #08EBC7;
  border-radius: 6px;
  padding: 40px;
}

.abus .form-head {
  font-size: 24px;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 10px;
}

.abus .form-sub {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin: 0 0 20px;
}

.abus .form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.abus .form-field label {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.abus .form-field input,
.abus .form-field select {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(8,235,199,0.5);
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  outline: none;
  transition: border-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
}

.abus .form-field input::placeholder {
  color: rgba(255,255,255,0.4);
}

.abus .form-field input:focus,
.abus .form-field select:focus {
  border-color: #08EBC7;
  box-shadow: 2px 1px 6px 0 rgba(8,235,199,0.08);
}

.abus .form-field select {
  cursor: pointer;
}

.abus .form-field select option {
  background: #084D5C;
  color: #fff;
}

.abus .form-unsub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 20px;
  line-height: 1.55;
}

.abus .form-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(113deg, #08EBC7 0%, #08EBC7 100%);
  color: #084D5C;
  border: none;
  border-radius: 6px;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.42s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.42s ease-in-out;
  width: 100%;
  justify-content: center;
}

.abus .form-btn:hover {
  background: linear-gradient(293deg, #08EBC7 0%, #06c8a9 100%);
  box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
}

.abus .form-btn:active {
  box-shadow: inset 2px 1px 6px 0 rgba(8,235,199,0.08);
}

.abus .form-btn:focus-visible {
  outline: 2px solid #08EBC7;
  outline-offset: 2px;
}

.abus .inner-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.abus .inner-img-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 1px 6px 0 rgba(8,235,199,0.08);
}

.abus .inner-img-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.44s cubic-bezier(0.34,1.2,0.64,1);
}

.abus .inner-img-card:hover img {
  transform: scale(1.05);
}

.abus .bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 40px 80px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.abus .stat-card {
  border-radius: 6px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 2px 1px 6px 0 rgba(8,235,199,0.08);
  border: 1.5px solid rgba(8,235,199,0.18);
  background: #fff;
  transition: box-shadow 0.38s ease-in-out, border-color 0.38s ease-in-out;
}

.abus .stat-card:hover {
  box-shadow: 2px 4px 18px 0 rgba(8,235,199,0.10);
  border-color: #08EBC7;
}

.abus .stat-icon {
  font-size: 24px;
  color: #08EBC7;
  margin-bottom: 10px;
  display: block;
}

.abus .stat-val {
  font-size: 44px;
  line-height: 1.1;
  color: #084D5C;
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
}

.abus .stat-label {
  font-size: 16px;
  line-height: 1.55;
  color: #1a3540;
  margin: 0;
}

@media (max-width: 1024px) {
  .abus .split-top {
    grid-template-columns: 1fr;
  }
  .abus .split-left::after {
    display: none;
  }
  .abus .split-right {
    height: 320px;
  }
  .abus .body-grid {
    grid-template-columns: 1fr;
    padding: 40px 40px 20px;
  }
  .abus .about-para {
    padding: 0 20px;
  }
  .abus .bg-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .abus .bg-section {
    padding: 80px 40px;
  }
  .abus .bottom-row {
    padding: 20px 40px 80px;
  }
  .abus .split-left {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .abus .sub-grid {
    grid-template-columns: 1fr;
  }
  .abus .inner-sub-grid {
    grid-template-columns: 1fr;
  }
  .abus .bottom-row {
    grid-template-columns: 1fr;
    padding: 20px 20px 80px;
  }
  .abus .body-grid {
    padding: 40px 20px 20px;
  }
  .abus .about-para {
    padding: 0;
  }
  .abus .bg-section {
    padding: 80px 20px;
  }
  .abus .subscribe-form-wrap {
    padding: 20px;
  }
  .abus .top-head {
    font-size: 44px;
  }
  .abus .split-left {
    padding: 80px 20px;
  }
}

@media (max-width: 640px) {
  .abus .top-head {
    font-size: 44px;
  }
  .abus .bg-head {
    font-size: 24px;
  }
  .abus .split-right {
    height: 220px;
  }
}

.success-pg {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(113deg, #f0fdfb 0%, #ffffff 60%, #fff0f4 100%);
}

.success-pg .success-wrap {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 80px 40px;
    background: #ffffff;
    border-radius: 44px;
    box-shadow: 2px 9px 60px 0 rgba(8, 235, 199, 0.11);
}

.success-pg .success-wrap .icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 44px;
    background: linear-gradient(113deg, #08EBC7 0%, #e0fff9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px auto;
    box-shadow: 2px 4px 18px 0 rgba(8, 235, 199, 0.10);
}

.success-pg .success-wrap .icon-ring svg {
    width: 36px;
    height: 36px;
    display: block;
}

.success-pg .success-wrap .success-label {
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #08EBC7;
    margin-bottom: 20px;
    display: block;
}

.success-pg .success-wrap .success-heading {
    font-size: 44px;
    line-height: 1.1;
    color: #084D5C;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.success-pg .success-wrap .success-body {
    font-size: 16px;
    line-height: 1.55;
    color: #2a5060;
    margin: 0 0 40px 0;
}

.success-pg .success-wrap .divider-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(113deg, #08EBC7, #F35A7E);
    border-radius: 6px;
    margin: 0 auto 40px auto;
}

.success-pg .success-wrap .back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.35;
    color: #084D5C;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    border: 1.5px solid rgba(8, 235, 199, 0.35);
    background: transparent;
    transition: color 0.38s cubic-bezier(0.34,1.2,0.64,1), border-color 0.42s ease-in-out, background 0.35s cubic-bezier(0.34,1.2,0.64,1);
}

.success-pg .success-wrap .back-link:hover {
    color: #084D5C;
    border-color: #08EBC7;
    background: rgba(8, 235, 199, 0.07);
}

.success-pg .success-wrap .back-link:focus-visible {
    outline: 2px solid #08EBC7;
    outline-offset: 3px;
}

.success-pg .success-wrap .back-link .arrow-icon {
    display: flex;
    align-items: center;
    transition: transform 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.success-pg .success-wrap .back-link:hover .arrow-icon {
    transform: translateX(-4px);
}

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

    .success-pg .success-wrap {
        padding: 40px 20px;
        border-radius: 44px;
    }

    .success-pg .success-wrap .success-heading {
        font-size: 24px;
    }
}
