@import url('https://cdn.jsdelivr.net/npm/@fontsource/montserrat@latest/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/montserrat@latest/400-italic.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/montserrat@latest/700.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/montserrat@latest/700-italic.css');

html, body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  background: #fff;
  color: #1b1b2e;
  overflow-x: hidden;
}

.skip-guard {
  display: none;
}

.pg-header {
  position: relative;
  z-index: 100;
  background: #fff;
}

.top-bar {
  background: linear-gradient(90deg, #F6858F 0%, #4681FC 60%, #56E290 100%);
  padding: 0 40px;
}

.top-bar-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.top-contact-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s ease-out;
}

.top-contact-item:hover {
  opacity: 0.82;
}

.top-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: #fff;
}

.top-msg-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-msg-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
  transition: background 0.18s ease-out, opacity 0.18s ease-out;
}

.top-msg-link:hover {
  background: rgba(255,255,255,0.28);
}

.top-msg-link svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
}

.brand-bar {
  padding: 0 40px;
  border-bottom: 1px solid rgba(246,133,143,0.18);
  box-shadow: 0 6px 18px -1px rgba(246,133,143,0.09);
}

.brand-bar-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 16px 0;
}

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

.brand-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border: 2px dashed #F6858F;
  background: #fff;
  box-shadow: 0 1px 5px -1px rgba(246,133,143,0.06), 0 6px 18px -1px rgba(246,133,143,0.09);
}

.brand-frame img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brand-tagline {
  font-size: 15px;
  font-weight: 700;
  color: #4681FC;
  line-height: 1.35;
  letter-spacing: 0;
  max-width: 160px;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}

.nav-link {
  font-size: 15px;
  font-weight: 700;
  color: #1b1b2e;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.2s ease-out, border-color 0.2s ease-out;
  z-index: 1;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #F6858F, #4681FC);
  transform: translateX(100%);
  transition: transform 0.22s ease-out;
  z-index: -1;
  border-radius: 6px;
}

.nav-link:hover {
  color: #fff;
  border-color: transparent;
  letter-spacing: 0.02em;
}

.nav-link:hover::before {
  transform: translateX(0);
}

.nav-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(246,133,143,0.38);
}

.nav-link.active {
  color: #F6858F;
  border-color: rgba(246,133,143,0.35);
}

.nav-sep {
  width: 1px;
  height: 24px;
  background: rgba(70,129,252,0.2);
  flex-shrink: 0;
}

.region-pick {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid rgba(246,133,143,0.35);
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1b1b2e;
  cursor: pointer;
  transition: border-color 0.18s ease-out, box-shadow 0.18s ease-out;
  flex-shrink: 0;
}

.region-pick:hover {
  border-color: #4681FC;
  box-shadow: 0 1px 5px -1px rgba(246,133,143,0.06);
}

.region-pick:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(70,129,252,0.28);
}

.region-pick svg {
  width: 16px;
  height: 16px;
  fill: #4681FC;
  flex-shrink: 0;
}

.pg-footer {
  position: relative;
  background: #1b1b2e;
  color: #fff;
}

.footer-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 56px;
}

.footer-body {
  padding: 40px 40px 24px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.footer-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px dashed rgba(246,133,143,0.55);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 1px 5px -1px rgba(86,226,144,0.06);
  flex-shrink: 0;
}

.footer-logo-frame img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: none;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.footer-brand-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.35;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: color 0.18s ease-out, border-color 0.18s ease-out, background 0.18s ease-out;
}

.footer-link:hover {
  color: #fff;
  border-color: rgba(246,133,143,0.5);
  background: rgba(246,133,143,0.1);
  letter-spacing: 0.02em;
}

.footer-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(246,133,143,0.38);
}

.footer-contacts {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.15s ease-out;
}

.footer-contact-link svg {
  width: 16px;
  height: 16px;
  fill: #56E290;
  flex-shrink: 0;
}

.footer-contact-link:hover {
  color: #fff;
}

.footer-contact-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(86,226,144,0.35);
  border-radius: 1px;
}

.footer-bottom {
  max-width: 1500px;
  margin: 0 auto;
  padding: 16px 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copy {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.35;
}

.footer-addr {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.35;
}

.cookie-bar {
  display: none;
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 92%;
  max-width: 760px;
  z-index: 2000;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 9px 40px -1px rgba(246,133,143,0.13);
  border: 1px solid rgba(246,133,143,0.22);
  padding: 24px;
  opacity: 0;
  transition: opacity 0.18s ease-out;
}

.cookie-bar.visible {
  opacity: 1;
}

.cookie-headline {
  font-size: 18px;
  font-weight: 700;
  color: #1b1b2e;
  line-height: 1.35;
  margin: 0 0 8px 0;
}

.cookie-desc {
  font-size: 15px;
  color: #3a3a52;
  line-height: 1.55;
  margin: 0 0 16px 0;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-accept {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: #F6858F;
  border: none;
  border-radius: 6px;
  padding: 8px 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.18s ease-out;
  min-height: 44px;
}

.cookie-accept:hover {
  box-shadow: 0 6px 18px -1px rgba(246,133,143,0.28);
}

.cookie-accept:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(246,133,143,0.42);
}

.cookie-decline {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1b1b2e;
  background: transparent;
  border: 1px solid rgba(246,133,143,0.4);
  border-radius: 6px;
  padding: 8px 24px;
  cursor: pointer;
  transition: border-color 0.18s ease-out, background 0.18s ease-out;
  min-height: 44px;
}

.cookie-decline:hover {
  border-color: #F6858F;
  background: rgba(246,133,143,0.06);
}

.cookie-decline:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(246,133,143,0.32);
}

@media (max-width: 768px) {
  .top-bar {
    padding: 0 16px;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
  }

  .top-contact-row {
    gap: 16px;
  }

  .brand-bar {
    padding: 0 16px;
  }

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

  .main-nav {
    justify-content: flex-start;
    gap: 8px;
  }

  .footer-body {
    padding: 40px 16px 16px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

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

  .cookie-bar {
    width: 96%;
    padding: 16px;
  }
}

@media (max-width: 375px) {
  .top-contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .top-msg-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .brand-frame {
    width: 72px;
    height: 72px;
  }

  .brand-frame img {
    width: 64px;
    height: 64px;
  }

  .nav-link {
    padding: 8px 12px;
  }

  .footer-contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}.agreement-text {
    max-width: 1500px;
    margin: 0 auto;
    padding: 72px 40px;
    color: #2a2a35;
    line-height: 1.8;
    font-size: 18px;
}

.agreement-text h1 {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 800;
    color: #1b1b26;
    margin: 0 0 40px 0;
    padding-bottom: 24px;
    border-bottom: 3px solid #F6858F;
}

.agreement-text h2 {
    font-size: 43px;
    line-height: 1.1;
    font-weight: 700;
    color: #1b1b26;
    margin: 72px 0 24px 0;
}

.agreement-text h3 {
    font-size: 31px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b1b26;
    margin: 40px 0 16px 0;
}

.agreement-text h4 {
    font-size: 23px;
    line-height: 1.35;
    font-weight: 600;
    color: #2a2a35;
    margin: 40px 0 16px 0;
}

.agreement-text h5 {
    font-size: 18px;
    line-height: 1.55;
    font-weight: 600;
    color: #2a2a35;
    margin: 24px 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.agreement-text h6 {
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
    color: #4a4a5a;
    margin: 24px 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.agreement-text strong,
.agreement-text b {
    font-weight: 700;
    color: #1b1b26;
}

.agreement-text em,
.agreement-text i {
    font-style: italic;
    color: #3a3a4a;
}

.agreement-text a {
    color: #4681FC;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.18s ease-out, text-decoration-color 0.12s ease-out;
}

.agreement-text a:hover {
    color: #F6858F;
    text-decoration-color: #F6858F;
    letter-spacing: 0.01em;
}

.agreement-text hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #F6858F 0%, #56E290 50%, #4681FC 100%);
    margin: 72px 0;
    border-radius: 1px;
    opacity: 0.45;
}

.agreement-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 15px;
    line-height: 1.55;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 5px -1px rgba(246, 133, 143, 0.06), 0 6px 18px -1px rgba(246, 133, 143, 0.09);
}

.agreement-text thead {
    background: linear-gradient(135deg, rgba(246, 133, 143, 0.12) 0%, rgba(70, 129, 252, 0.1) 100%);
}

.agreement-text thead th {
    padding: 16px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #1b1b26;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(246, 133, 143, 0.3);
}

.agreement-text tbody tr {
    border-bottom: 1px solid rgba(70, 129, 252, 0.1);
    transition: background-color 0.15s ease-out;
}

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

.agreement-text tbody tr:hover {
    background-color: rgba(86, 226, 144, 0.06);
}

.agreement-text tbody tr:nth-child(even) {
    background-color: rgba(246, 133, 143, 0.03);
}

.agreement-text tbody tr:nth-child(even):hover {
    background-color: rgba(86, 226, 144, 0.06);
}

.agreement-text td {
    padding: 16px 24px;
    color: #2a2a35;
    vertical-align: top;
}

.agreement-text th {
    padding: 16px 24px;
    vertical-align: middle;
}

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

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

    .agreement-text h2 {
        font-size: 31px;
        margin: 40px 0 16px 0;
    }

    .agreement-text h3 {
        font-size: 23px;
    }

    .agreement-text h4 {
        font-size: 18px;
    }

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

@media (max-width: 375px) {
    .agreement-text {
        padding: 24px 16px;
    }

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

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

    .agreement-text h3 {
        font-size: 18px;
    }

    .agreement-text h4,
    .agreement-text h5,
    .agreement-text h6 {
        font-size: 15px;
    }

    .agreement-text td,
    .agreement-text th {
        padding: 8px 16px;
    }
}
.srv {
  background: #fff;
  overflow-x: clip;
  position: relative;
}

.srv .sr-schema { display: none; }

.srv .sr-block1 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 72px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 24px;
  align-items: start;
  position: relative;
}

.srv .sr-block1::after {
  content: '';
  position: absolute;
  right: 0;
  top: 72px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #F6858F 30%, #F6858F 70%, transparent);
  pointer-events: none;
}

.srv .sr-overline {
  display: inline-block;
  font-size: 15px;
  line-height: 1.35;
  background: #F6858F;
  color: #fff;
  padding: 4px 16px;
  border-radius: 38px;
  margin-bottom: 16px;
  font-weight: 600;
}

.srv .sr-col-a {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.srv .sr-col-a .sr-stat {
  background: #fff;
  border: 1.5px solid #F6858F22;
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 1px 5px -1px rgba(246,133,143,0.06), 0 6px 18px -1px rgba(246,133,143,0.09);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srv .sr-stat .sr-stat-bar {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  height: 10px;
}

.srv .sr-stat .sr-stat-bar span {
  display: block;
  height: 10px;
  border-radius: 1px;
  flex: 1;
  transition: opacity 0.18s ease-out;
}

.srv .sr-stat .sr-stat-bar span.lvl-low { background: #56E290; }
.srv .sr-stat .sr-stat-bar span.lvl-mid { background: #F6858F; }
.srv .sr-stat .sr-stat-bar span.lvl-high { background: #4681FC; }
.srv .sr-stat .sr-stat-bar span.lvl-off { background: #eee; }

.srv .sr-stat-label {
  font-size: 15px;
  line-height: 1.35;
  color: #2a2a2a;
  font-weight: 600;
}

.srv .sr-stat-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #444;
}

.srv .sr-col-b {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.srv .sr-badge-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.srv .sr-badge-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: #2a2a2a;
  position: relative;
}

.srv .sr-badge-list li .sr-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 1px;
  background: #4681FC;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.srv .sr-badge-list li .sr-num.alt { background: #56E290; color: #1a2a1a; }
.srv .sr-badge-list li .sr-num.acc { background: #F6858F; color: #fff; }

.srv .sr-col-b .sr-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  box-shadow: 0 6px 18px -1px rgba(246,133,143,0.09), 0 9px 40px -1px rgba(246,133,143,0.13);
  position: relative;
}

.srv .sr-col-b .sr-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  display: block;
  transition: opacity 0.22s ease-out;
}

.srv .sr-col-b .sr-img-wrap:hover img { opacity: 0.92; }

.srv .sr-col-c {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.srv .sr-heading {
  font-size: 60px;
  line-height: 1.1;
  color: #1b1b1b;
  margin: 0;
  font-weight: 800;
}

.srv .sr-heading .hl {
  background: #F6858F;
  color: #fff;
  border-radius: 1px;
  padding: 0 8px;
  display: inline;
}

.srv .sr-heading .hl-green {
  background: #56E290;
  color: #1b2a1b;
  border-radius: 1px;
  padding: 0 8px;
  display: inline;
}

.srv .sr-tagline {
  font-size: 23px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0;
  max-width: 560px;
}

.srv .sr-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.srv .sr-btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: letter-spacing 0.15s ease-out, color 0.12s ease-out;
  background: #F6858F;
  color: #fff;
  box-shadow: 0 6px 18px -1px rgba(246,133,143,0.09);
  z-index: 1;
}

.srv .sr-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #4681FC;
  transform: translateX(100%);
  transition: transform 0.22s ease-out;
  z-index: -1;
  border-radius: 6px;
}

.srv .sr-btn:hover::before { transform: translateX(0); }
.srv .sr-btn:hover { letter-spacing: 0.03em; }

.srv .sr-btn-sec {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  border-radius: 6px;
  border: 2px solid #4681FC;
  cursor: pointer;
  text-decoration: none;
  color: #4681FC;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: letter-spacing 0.18s ease-out, color 0.14s ease-out;
  z-index: 1;
}

.srv .sr-btn-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #4681FC;
  transform: translateX(100%);
  transition: transform 0.25s ease-out;
  z-index: -1;
}

.srv .sr-btn-sec:hover::before { transform: translateX(0); }
.srv .sr-btn-sec:hover { color: #fff; letter-spacing: 0.03em; }

.srv .sr-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
  margin-top: 8px;
}

.srv .sr-mosaic .sr-img-main {
  grid-column: 1 / 3;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  height: 200px;
  box-shadow: 0 6px 18px -1px rgba(246,133,143,0.09), 0 9px 40px -1px rgba(246,133,143,0.13);
}

.srv .sr-mosaic .sr-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  display: block;
}

.srv .sr-mosaic .sr-img-sm {
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  height: 120px;
  box-shadow: 0 1px 5px -1px rgba(246,133,143,0.06), 0 6px 18px -1px rgba(246,133,143,0.09);
}

.srv .sr-mosaic .sr-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.65;
  display: block;
}

.srv .sr-deco-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #F6858F 35%, #56E290 65%, transparent 100%);
  pointer-events: none;
}

.srv .sr-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 8px 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.srv .sr-divider .sr-div-line {
  flex: 1;
  height: 1.5px;
  background: #F6858F33;
}

.srv .sr-divider .sr-div-cross {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  margin: 0 8px;
}

.srv .sr-divider .sr-div-cross::before,
.srv .sr-divider .sr-div-cross::after {
  content: '';
  position: absolute;
  background: #F6858F;
  border-radius: 1px;
}

.srv .sr-divider .sr-div-cross::before {
  width: 2px;
  height: 20px;
  left: 9px;
  top: 0;
}

.srv .sr-divider .sr-div-cross::after {
  width: 20px;
  height: 2px;
  top: 9px;
  left: 0;
}

.srv .sr-block2 {
  background: #f4f0ff;
  position: relative;
  padding: 72px 40px 40px;
}

.srv .sr-block2-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.srv .sr-block2-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.srv .sr-block2-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srv .sr-h2 {
  font-size: 43px;
  line-height: 1.1;
  color: #1b1b1b;
  margin: 0;
  font-weight: 800;
}

.srv .sr-h2 .hl { background: #56E290; color: #1b2a1b; border-radius: 1px; padding: 0 8px; }

.srv .sr-body {
  font-size: 18px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0;
}

.srv .sr-body .kw {
  background: #4681FC22;
  color: #1b3a8a;
  border-radius: 1px;
  padding: 0 4px;
  font-weight: 600;
}

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

.srv .sr-cards-grid:has(.sr-card:hover) .sr-card:not(:hover) {
  opacity: 0.55;
  transition: opacity 0.18s ease-out;
}

.srv .sr-card {
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 1px 5px -1px rgba(246,133,143,0.06), 0 6px 18px -1px rgba(246,133,143,0.09);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: opacity 0.18s ease-out, box-shadow 0.2s ease-out;
  box-sizing: border-box;
  clip-path: inset(0 0 0 0);
  animation: sr-reveal 0.42s ease-out both;
}

.srv .sr-card:nth-child(1) { animation-delay: 0.05s; }
.srv .sr-card:nth-child(2) { animation-delay: 0.12s; }
.srv .sr-card:nth-child(3) { animation-delay: 0.19s; }
.srv .sr-card:nth-child(4) { animation-delay: 0.26s; }
.srv .sr-card:nth-child(5) { animation-delay: 0.33s; }
.srv .sr-card:nth-child(6) { animation-delay: 0.40s; }

@keyframes sr-reveal {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  to { clip-path: inset(0 0% 0 0); opacity: 1; }
}

.srv .sr-card:hover {
  box-shadow: 0 6px 18px -1px rgba(246,133,143,0.09), 0 9px 40px -1px rgba(246,133,143,0.13);
}

.srv .sr-card .sr-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv .sr-card .sr-card-icon svg {
  width: 22px;
  height: 22px;
}

.srv .sr-card h4 {
  font-size: 18px;
  line-height: 1.35;
  color: #1b1b1b;
  margin: 0;
  font-weight: 700;
}

.srv .sr-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #444;
  margin: 0;
}

.srv .sr-card .sr-pill {
  display: inline-block;
  font-size: 15px;
  line-height: 1.35;
  padding: 2px 12px;
  border-radius: 38px;
  font-weight: 600;
  background: #F6858F22;
  color: #b83a45;
  align-self: flex-start;
}

.srv .sr-card .sr-pill.green { background: #56E29022; color: #1a6a3a; }
.srv .sr-card .sr-pill.blue { background: #4681FC22; color: #1a3a8a; }

.srv .sr-block2-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: center;
}

.srv .sr-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srv .sr-faq-item {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 5px -1px rgba(246,133,143,0.06);
  overflow: hidden;
}

.srv .sr-faq-item summary {
  font-size: 18px;
  line-height: 1.35;
  color: #1b1b1b;
  font-weight: 700;
  padding: 16px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.15s ease-out, background 0.15s ease-out;
}

.srv .sr-faq-item summary::-webkit-details-marker { display: none; }

.srv .sr-faq-item summary:hover {
  color: #F6858F;
  background: #F6858F08;
}

.srv .sr-faq-item summary .sr-faq-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease-out;
}

.srv .sr-faq-item[open] summary .sr-faq-arrow {
  transform: rotate(90deg);
}

.srv .sr-faq-item .sr-faq-body {
  padding: 0 24px 16px;
  font-size: 15px;
  line-height: 1.55;
  color: #444;
}

.srv .sr-aside-card {
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 6px 18px -1px rgba(86,226,144,0.09), 0 9px 40px -1px rgba(86,226,144,0.13), inset 0 2px 8px 0 rgba(86,226,144,0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srv .sr-aside-card h5 {
  font-size: 23px;
  line-height: 1.35;
  color: #1b1b1b;
  margin: 0;
  font-weight: 800;
}

.srv .sr-aside-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #444;
  margin: 0;
}

.srv .sr-aside-card .sr-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.srv .sr-aside-card .sr-steps li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0;
  position: relative;
  font-size: 15px;
  line-height: 1.55;
  color: #2a2a2a;
}

.srv .sr-aside-card .sr-steps li::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 32px;
  bottom: -8px;
  width: 2px;
  background: #56E29044;
}

.srv .sr-aside-card .sr-steps li:last-child::before { display: none; }

.srv .sr-aside-card .sr-steps li .sr-step-num {
  min-width: 24px;
  height: 24px;
  border-radius: 38px;
  background: #56E290;
  color: #1b2a1b;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 1366px) {
  .srv .sr-block1 {
    grid-template-columns: 1fr 1fr;
    padding: 72px 24px 40px;
  }
  .srv .sr-col-c { grid-column: 1 / 3; }
  .srv .sr-heading { font-size: 43px; }
  .srv .sr-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .srv .sr-block2 { padding: 72px 24px 40px; }
  .srv .sr-block2-top { grid-template-columns: 1fr; }
  .srv .sr-block2-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .srv .sr-block1 {
    grid-template-columns: 1fr;
    padding: 40px 16px 24px;
  }
  .srv .sr-col-c { grid-column: auto; }
  .srv .sr-heading { font-size: 31px; }
  .srv .sr-h2 { font-size: 31px; }
  .srv .sr-block1::after { display: none; }
  .srv .sr-cards-grid { grid-template-columns: 1fr; }
  .srv .sr-block2 { padding: 40px 16px 24px; }
  .srv .sr-mosaic .sr-img-main { height: 140px; }
  .srv .sr-mosaic .sr-img-sm { height: 90px; }
  .srv .sr-actions { flex-direction: column; align-items: flex-start; }
  .srv .sr-btn, .srv .sr-btn-sec { width: 100%; text-align: center; }
  .srv .sr-divider { padding: 8px 16px; }
}

@media (max-width: 375px) {
  .srv .sr-block1 { padding: 24px 8px 16px; }
  .srv .sr-block2 { padding: 24px 8px 16px; }
  .srv .sr-heading { font-size: 23px; }
  .srv .sr-h2 { font-size: 23px; }
  .srv .sr-tagline { font-size: 18px; }
}

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

.rt * {
  box-sizing: border-box;
}

.rt .schema-data {
  display: none;
}

.rt .overline {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F6858F;
  margin-bottom: 16px;
  padding: 4px 12px;
  background: rgba(246, 133, 143, 0.1);
  border-radius: 38px;
}

.rt .overline.teal {
  color: #56E290;
  background: rgba(86, 226, 144, 0.1);
}

.rt .overline.blue {
  color: #4681FC;
  background: rgba(70, 129, 252, 0.1);
}

/* ===================== SECTION 1: TITLE BLOCK ===================== */

.rt .title-blk {
  text-align: center;
  padding: 72px 24px 0;
  position: relative;
}

.rt .title-blk .tx-area {
  max-width: 1500px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.rt .title-blk .badge-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.rt .title-blk h1 {
  font-size: 72px;
  line-height: 1.1;
  color: #111;
  margin: 0 0 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.rt .title-blk .sub {
  font-size: 23px;
  line-height: 1.55;
  color: #444;
  max-width: 640px;
  margin: 0 auto 40px;
}

.rt .title-blk .cta-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.rt .btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: #F6858F;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.18s ease-out, letter-spacing 0.12s ease-out;
  z-index: 1;
}

.rt .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #d96870;
  transform: translateX(100%);
  transition: transform 0.22s ease-out;
  z-index: -1;
}

.rt .btn-primary:hover::before {
  transform: translateX(0);
}

.rt .btn-primary:hover {
  letter-spacing: 0.03em;
}

.rt .btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: #4681FC;
  font-size: 18px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid #4681FC;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.18s ease-out, letter-spacing 0.12s ease-out;
  z-index: 1;
}

.rt .btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #4681FC;
  transform: translateX(100%);
  transition: transform 0.22s ease-out;
  z-index: -1;
}

.rt .btn-secondary:hover::before {
  transform: translateX(0);
}

.rt .btn-secondary:hover {
  color: #fff;
  letter-spacing: 0.03em;
}

.rt .img-panorama {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  height: 480px;
}

.rt .img-panorama img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.rt .img-panorama .grad-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7) 0%, transparent 40%);
  pointer-events: none;
}

.rt .img-panorama .deco-circles {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  pointer-events: none;
  opacity: 0.12;
}

.rt .img-panorama .deco-circles circle {
  fill: none;
  stroke: #F6858F;
  stroke-width: 1;
}

/* ===================== SECTION 2: LONG-TERM VALUE ===================== */

.rt .value-blk {
  background: #111;
  padding: 72px 24px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: 120px;
}

.rt .value-blk .deco-corner {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 160px;
  height: 160px;
  pointer-events: none;
  opacity: 0.08;
}

.rt .value-blk .deco-corner circle {
  fill: none;
  stroke: #56E290;
  stroke-width: 1;
}

.rt .value-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.rt .value-left h2 {
  font-size: 60px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 24px;
}

.rt .value-left .desc {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0 0 40px;
}

.rt .value-left .img-wrap {
  border-radius: 6px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 9px 40px -1px rgba(86, 226, 144, 0.13);
}

.rt .value-left .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.rt .value-right {
  padding-top: 40px;
}

.rt .value-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.rt .value-steps::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 36px;
  bottom: 36px;
  width: 1px;
  background: linear-gradient(to bottom, #56E290, transparent);
}

.rt .step-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.rt .step-item:last-child {
  margin-bottom: 0;
}

.rt .step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 38px;
  background: #56E290;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.rt .step-body h5 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.rt .step-body p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ===================== SECTION 3: WHAT IS AVAILABLE ===================== */

.rt .avail-blk {
  padding: 72px 24px 72px;
  background: #f4f4f2;
  position: relative;
  margin-top: -1px;
}

.rt .avail-blk .deco-corner {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 140px;
  height: 140px;
  pointer-events: none;
  opacity: 0.09;
}

.rt .avail-blk .deco-corner circle {
  fill: none;
  stroke: #4681FC;
  stroke-width: 1;
}

.rt .avail-top {
  max-width: 1500px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.rt .avail-top h2 {
  font-size: 43px;
  line-height: 1.1;
  color: #111;
  margin: 0;
  max-width: 560px;
}

.rt .avail-top .side-note {
  font-size: 18px;
  line-height: 1.55;
  color: #555;
  max-width: 380px;
}

.rt .avail-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rt .avail-card {
  background: #fff;
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 6px 18px -1px rgba(246, 133, 143, 0.09);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.22s ease-out;
}

.rt .avail-card:hover {
  box-shadow: 0 9px 40px -1px rgba(246, 133, 143, 0.13);
}

.rt .avail-card .card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #F6858F;
  border-radius: 6px 6px 0 0;
}

.rt .avail-card .card-accent.green {
  background: #56E290;
}

.rt .avail-card .card-accent.blue {
  background: #4681FC;
}

.rt .avail-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.rt .avail-card .card-icon.pink {
  background: rgba(246, 133, 143, 0.12);
}

.rt .avail-card .card-icon.green {
  background: rgba(86, 226, 144, 0.12);
}

.rt .avail-card .card-icon.blue {
  background: rgba(70, 129, 252, 0.12);
}

.rt .avail-card h4 {
  font-size: 23px;
  font-weight: 700;
  color: #111;
  margin: 0 0 16px;
  line-height: 1.35;
}

.rt .avail-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #555;
  margin: 0 0 24px;
}

.rt .avail-card .card-detail {
  font-size: 15px;
  color: #888;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rt .avail-card .detail-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.rt .avail-card .dot {
  width: 6px;
  height: 6px;
  border-radius: 38px;
  flex-shrink: 0;
}

.rt .avail-card .dot.pink { background: #F6858F; }
.rt .avail-card .dot.green { background: #56E290; }
.rt .avail-card .dot.blue { background: #4681FC; }

.rt .avail-card .img-thumb {
  width: 100%;
  height: 180px;
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 24px;
}

.rt .avail-card .img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Connection diagram */
.rt .diagram-row {
  max-width: 1500px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 1px 5px -1px rgba(246, 133, 143, 0.06);
}

.rt .diagram-row h5 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin: 0 0 24px;
}

.rt .diagram-nodes {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.rt .d-node {
  flex: 1;
  min-width: 100px;
  text-align: center;
}

.rt .d-node .nd-circle {
  width: 64px;
  height: 64px;
  border-radius: 38px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: 800;
}

.rt .d-node .nd-circle.pink { background: rgba(246,133,143,0.15); color: #F6858F; }
.rt .d-node .nd-circle.green { background: rgba(86,226,144,0.15); color: #56E290; }
.rt .d-node .nd-circle.blue { background: rgba(70,129,252,0.15); color: #4681FC; }
.rt .d-node .nd-circle.dark { background: rgba(17,17,17,0.08); color: #111; }

.rt .d-node .nd-label {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.rt .d-connector {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.rt .d-connector .conn-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, #F6858F, #4681FC);
}

.rt .d-connector .conn-label {
  font-size: 15px;
  color: #aaa;
}

/* ===================== SECTION 4: TEAM ===================== */

.rt .team-blk {
  padding: 72px 24px;
  background: #fff;
  position: relative;
}

.rt .team-blk .deco-corner {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 150px;
  height: 150px;
  pointer-events: none;
  opacity: 0.07;
}

.rt .team-blk .deco-corner circle {
  fill: none;
  stroke: #F6858F;
  stroke-width: 1;
}

.rt .team-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.rt .team-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 72px;
}

.rt .team-head h2 {
  font-size: 60px;
  line-height: 1.1;
  color: #111;
  margin: 0;
}

.rt .team-head .right-col {
  padding-top: 16px;
}

.rt .team-head .right-col p {
  font-size: 18px;
  line-height: 1.55;
  color: #555;
  margin: 0 0 16px;
}

.rt .team-head .right-col p:last-child {
  margin-bottom: 0;
}

.rt .team-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.rt .tm-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  background: #f4f4f2;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 5px -1px rgba(246, 133, 143, 0.06);
  transition: box-shadow 0.28s ease-out;
}

.rt .tm-card:hover {
  box-shadow: 0 9px 40px -1px rgba(246, 133, 143, 0.13);
}

.rt .tm-card .tm-img {
  width: 240px;
  height: 280px;
  flex-shrink: 0;
  overflow: hidden;
}

.rt .tm-card .tm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.rt .tm-card .tm-body {
  padding: 40px 24px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rt .tm-card .tm-name {
  font-size: 23px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px;
}

.rt .tm-card .tm-role {
  font-size: 15px;
  font-weight: 600;
  color: #F6858F;
  margin: 0 0 16px;
}

.rt .tm-card .tm-bio {
  font-size: 15px;
  line-height: 1.55;
  color: #555;
  margin: 0;
}

.rt .tm-card .tm-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.rt .tm-card .tag {
  font-size: 15px;
  padding: 4px 12px;
  border-radius: 38px;
  background: rgba(70, 129, 252, 0.1);
  color: #4681FC;
  font-weight: 600;
}

/* Accordion for team extra info */
.rt .tm-extra {
  margin-top: 40px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(246,133,143,0.15);
}

.rt .tm-extra summary {
  padding: 24px 40px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background 0.15s ease-out;
}

.rt .tm-extra summary:hover {
  background: rgba(246,133,143,0.04);
  letter-spacing: 0.01em;
}

.rt .tm-extra summary::-webkit-details-marker {
  display: none;
}

.rt .tm-extra .sum-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.rt .tm-extra[open] summary .sum-arrow {
  transform: rotate(180deg);
}

.rt .tm-extra .extra-body {
  padding: 24px 40px 40px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.rt .tm-extra .extra-body p {
  font-size: 15px;
  line-height: 1.55;
  color: #555;
  margin: 0;
}

/* ===================== ANIMATIONS ===================== */

@keyframes reveal-up {
  from { opacity: 0; transform: scale(0.96) translateY(24px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.rt .title-blk .tx-area {
  animation: reveal-up 0.45s ease-out both;
}

.rt .title-blk .img-panorama {
  animation: reveal-up 0.45s 0.12s ease-out both;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1366px) {
  .rt .title-blk h1 {
    font-size: 60px;
  }
  .rt .value-left h2 {
    font-size: 43px;
  }
  .rt .team-head h2 {
    font-size: 43px;
  }
  .rt .avail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rt .tm-card {
    grid-template-columns: 180px 1fr;
  }
  .rt .tm-card .tm-img {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .rt .title-blk h1 {
    font-size: 43px;
  }
  .rt .title-blk .sub {
    font-size: 18px;
  }
  .rt .img-panorama {
    height: 280px;
  }
  .rt .value-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rt .value-left h2 {
    font-size: 31px;
  }
  .rt .avail-grid {
    grid-template-columns: 1fr;
  }
  .rt .avail-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .rt .avail-top h2 {
    font-size: 31px;
  }
  .rt .team-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .rt .team-head h2 {
    font-size: 31px;
  }
  .rt .team-cards {
    grid-template-columns: 1fr;
  }
  .rt .tm-card {
    grid-template-columns: 1fr;
  }
  .rt .tm-card .tm-img {
    width: 100%;
    height: 220px;
  }
  .rt .tm-card .tm-body {
    padding: 24px;
  }
  .rt .tm-extra .extra-body {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .rt .tm-extra summary {
    padding: 16px 24px;
  }
  .rt .diagram-nodes {
    flex-direction: column;
    align-items: stretch;
  }
  .rt .d-connector {
    transform: rotate(90deg);
    margin: 8px auto;
  }
}

@media (max-width: 375px) {
  .rt .title-blk h1 {
    font-size: 31px;
  }
  .rt .title-blk {
    padding: 40px 16px 0;
  }
  .rt .value-blk {
    padding: 40px 16px 80px;
  }
  .rt .avail-blk {
    padding: 40px 16px;
  }
  .rt .team-blk {
    padding: 40px 16px;
  }
  .rt .avail-card {
    padding: 24px;
  }
  .rt .cta-row {
    flex-direction: column;
    align-items: center;
  }
  .rt .diagram-row {
    padding: 24px 16px;
  }
}

.lp {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: clip;
}

.lp .overline-label {
  display: inline-block;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4681FC;
  padding: 4px 16px;
  border: 1px solid rgba(70,129,252,0.28);
  border-radius: 38px;
  margin-bottom: 16px;
  background: rgba(70,129,252,0.06);
}

.lp .grad-rule {
  width: 100%;
  height: 2px;
  border: none;
  background: linear-gradient(90deg, #F6858F 0%, #56E290 40%, rgba(246,133,143,0) 100%);
  margin: 0;
}

.lp .tag-pill {
  display: inline-block;
  font-size: 15px;
  line-height: 1.35;
  padding: 4px 16px;
  border-radius: 38px;
  background: rgba(246,133,143,0.12);
  color: #c0424d;
  border: 1px solid rgba(246,133,143,0.3);
}

.lp .tag-pill.green {
  background: rgba(86,226,144,0.12);
  color: #1a7a46;
  border-color: rgba(86,226,144,0.3);
}

.lp .tag-pill.blue {
  background: rgba(70,129,252,0.1);
  color: #1a3fa8;
  border-color: rgba(70,129,252,0.25);
}

/* ── SECTION 1: TITLE BLOCK ── */
.lp .prog-title {
  position: relative;
  background: linear-gradient(135deg, #fff8f8 0%, #f0f6ff 55%, #f0fff7 100%);
  padding: 72px 40px;
  overflow: hidden;
}

.lp .prog-title-bg-accent {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 420px;
  height: 420px;
  border-radius: 38px;
  background: rgba(246,133,143,0.07);
  transform: rotate(18deg);
  pointer-events: none;
}

.lp .prog-title-bg-accent2 {
  position: absolute;
  bottom: -30px;
  left: 30%;
  width: 280px;
  height: 280px;
  border-radius: 38px;
  background: rgba(70,129,252,0.05);
  transform: rotate(-12deg);
  pointer-events: none;
}

.lp .prog-title-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.lp .prog-title-text {
  padding-right: 40px;
}

.lp .prog-title-text h1 {
  font-size: 60px;
  line-height: 1.1;
  color: #111827;
  margin: 16px 0 24px;
}

.lp .prog-title-text h1 em {
  font-style: normal;
  color: #F6858F;
}

.lp .prog-manifesto {
  font-size: 18px;
  line-height: 1.55;
  color: #374151;
  margin-bottom: 24px;
}

.lp .prog-manifesto-sub {
  font-size: 15px;
  line-height: 1.55;
  color: #4b5563;
  margin-bottom: 40px;
}

.lp .prog-title-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.lp .btn-primary {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: #fff;
  background: #F6858F;
  border: none;
  border-radius: 6px;
  padding: 16px 40px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.18s ease-out, box-shadow 0.22s ease-out, letter-spacing 0.15s ease-out;
  box-shadow: 0 6px 18px -1px rgba(246,133,143,0.09);
  text-decoration: none;
}

.lp .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #4681FC;
  transform: translateX(100%);
  transition: transform 0.22s ease-out;
  border-radius: 6px;
  z-index: 0;
}

.lp .btn-primary:hover::before {
  transform: translateX(0);
}

.lp .btn-primary:hover {
  letter-spacing: 0.04em;
  box-shadow: 0 9px 40px -1px rgba(246,133,143,0.13);
}

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

.lp .btn-outline {
  display: inline-block;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: #4681FC;
  background: transparent;
  border: 1px solid rgba(70,129,252,0.5);
  border-radius: 6px;
  padding: 16px 40px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease-out, color 0.18s ease-out, letter-spacing 0.15s ease-out, border-color 0.18s ease-out;
}

.lp .btn-outline:hover {
  background: rgba(70,129,252,0.08);
  border-color: #4681FC;
  letter-spacing: 0.04em;
}

.lp .prog-title-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lp .prog-img-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 9px 40px -1px rgba(246,133,143,0.13);
  border: 1px solid rgba(246,133,143,0.18);
}

.lp .prog-img-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.15) contrast(1.05);
}

.lp .prog-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(70,129,252,0.18) 0%, rgba(246,133,143,0.12) 100%);
  border-radius: 38px;
  pointer-events: none;
}

.lp .prog-stat-strip {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 24px;
  width: 100%;
  max-width: 520px;
}

.lp .prog-stat-card {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(246,133,143,0.15);
  box-shadow: 0 1px 5px -1px rgba(246,133,143,0.06);
  padding: 16px;
  text-align: center;
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

.lp .prog-stat-card:hover {
  box-shadow: 0 6px 18px -1px rgba(246,133,143,0.09);
  transform: translateY(-2px);
}

.lp .prog-stat-num {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 700;
  color: #F6858F;
  display: block;
}

.lp .prog-stat-label {
  font-size: 15px;
  line-height: 1.35;
  color: #6b7280;
  display: block;
  margin-top: 8px;
}

/* ── SECTION 2: PROGRAM DETAIL ── */
.lp .prog-detail {
  background: #fff;
  padding: 72px 40px;
  position: relative;
}

.lp .prog-detail-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.lp .prog-detail-top {
  display: flex;
  flex-direction: row;
  gap: 72px;
  margin-bottom: 72px;
  align-items: flex-start;
}

.lp .prog-detail-lead {
  flex: 1.2;
}

.lp .prog-detail-lead h2 {
  font-size: 43px;
  line-height: 1.1;
  color: #111827;
  margin: 16px 0 24px;
}

.lp .prog-detail-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}

.lp .prog-detail-body p {
  font-size: 15px;
  line-height: 1.55;
  color: #374151;
  margin: 0;
}

.lp .prog-detail-aside {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp .aside-quote {
  background: linear-gradient(135deg, rgba(86,226,144,0.08) 0%, rgba(70,129,252,0.06) 100%);
  border-radius: 6px;
  border: 1px solid rgba(86,226,144,0.25);
  padding: 24px;
  box-shadow: inset 0 2px 8px rgba(86,226,144,0.06), 0 1px 5px -1px rgba(86,226,144,0.06);
}

.lp .aside-quote blockquote {
  font-size: 18px;
  line-height: 1.55;
  color: #1a4731;
  font-style: italic;
  margin: 0 0 16px;
}

.lp .aside-quote cite {
  font-size: 15px;
  line-height: 1.35;
  color: #4b5563;
  font-style: normal;
}

.lp .aside-facts {
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(70,129,252,0.15);
  box-shadow: 0 1px 5px -1px rgba(70,129,252,0.06);
  padding: 24px;
}

.lp .aside-facts h5 {
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4681FC;
  margin: 0 0 16px;
}

.lp .fact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp .fact-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(70,129,252,0.08);
  position: relative;
}

.lp .fact-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lp .fact-num {
  font-size: 23px;
  line-height: 1.1;
  font-weight: 700;
  color: #4681FC;
  min-width: 40px;
}

.lp .fact-text {
  font-size: 15px;
  line-height: 1.55;
  color: #374151;
}

.lp .prog-modules {
  margin-bottom: 72px;
}

.lp .prog-modules h3 {
  font-size: 31px;
  line-height: 1.1;
  color: #111827;
  margin: 0 0 40px;
}

.lp .modules-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 16px;
  align-items: start;
}

.lp .mod-card {
  border-radius: 6px;
  border: 1px solid rgba(246,133,143,0.15);
  background: #fff;
  box-shadow: 0 1px 5px -1px rgba(246,133,143,0.06);
  padding: 24px;
  transition: box-shadow 0.25s ease-out, transform 0.25s ease-out;
  position: relative;
  overflow: hidden;
}

.lp .mod-card:hover {
  box-shadow: 0 9px 40px -1px rgba(246,133,143,0.13);
  transform: translateY(-3px);
}

.lp .mod-card.center {
  padding: 40px 24px;
  border-color: rgba(86,226,144,0.3);
  background: linear-gradient(160deg, rgba(86,226,144,0.06) 0%, rgba(70,129,252,0.04) 100%);
  box-shadow: 0 6px 18px -1px rgba(86,226,144,0.09);
}

.lp .mod-card.center:hover {
  box-shadow: 0 9px 40px -1px rgba(86,226,144,0.13);
}

.lp .mod-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: rgba(246,133,143,0.08);
  border-radius: 0 6px 0 38px;
  pointer-events: none;
}

.lp .mod-card.center .mod-card-accent {
  background: rgba(86,226,144,0.12);
}

.lp .mod-step-num {
  font-size: 43px;
  line-height: 1.1;
  font-weight: 700;
  color: rgba(246,133,143,0.25);
  margin-bottom: 8px;
}

.lp .mod-card.center .mod-step-num {
  color: rgba(86,226,144,0.4);
}

.lp .mod-card h4 {
  font-size: 18px;
  line-height: 1.35;
  color: #111827;
  margin: 0 0 16px;
}

.lp .mod-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #374151;
  margin: 0 0 16px;
}

.lp .mod-card .tag-pill {
  margin-right: 8px;
  margin-bottom: 8px;
}

.lp .prog-steps {
  margin-bottom: 0;
}

.lp .prog-steps h3 {
  font-size: 31px;
  line-height: 1.1;
  color: #111827;
  margin: 0 0 40px;
}

.lp .steps-row {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: flex-start;
  position: relative;
}

.lp .steps-row::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, #F6858F 0%, #56E290 50%, #4681FC 100%);
  z-index: 0;
}

.lp .step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.lp .step-dot {
  width: 56px;
  height: 56px;
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px -1px rgba(246,133,143,0.09);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.lp .step-item:hover .step-dot {
  transform: scale(1.1);
  box-shadow: 0 9px 40px -1px rgba(246,133,143,0.13);
}

.lp .step-dot.s1 { background: #F6858F; }
.lp .step-dot.s2 { background: #56E290; }
.lp .step-dot.s3 { background: #4681FC; }
.lp .step-dot.s4 { background: #F6858F; }

.lp .step-item h6 {
  font-size: 15px;
  line-height: 1.35;
  color: #111827;
  font-weight: 600;
  margin: 0 0 8px;
}

.lp .step-item p {
  font-size: 15px;
  line-height: 1.55;
  color: #4b5563;
  margin: 0;
}

.lp .prog-detail-footer {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(246,133,143,0.15);
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.lp .detail-footer-text {
  flex: 1;
}

.lp .detail-footer-text h4 {
  font-size: 23px;
  line-height: 1.35;
  color: #111827;
  margin: 0 0 8px;
}

.lp .detail-footer-text p {
  font-size: 15px;
  line-height: 1.55;
  color: #374151;
  margin: 0;
}

.lp .detail-footer-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.lp .detail-footer-meta {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.lp .meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lp .meta-item-val {
  font-size: 23px;
  line-height: 1.1;
  font-weight: 700;
  color: #56E290;
}

.lp .meta-item-key {
  font-size: 15px;
  line-height: 1.35;
  color: #6b7280;
}

@media (max-width: 1366px) {
  .lp .prog-title-inner {
    gap: 40px;
  }
  .lp .prog-title-text h1 {
    font-size: 43px;
  }
  .lp .prog-detail-top {
    gap: 40px;
  }
  .lp .modules-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .lp .prog-title {
    padding: 40px 24px;
  }
  .lp .prog-title-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp .prog-title-text {
    padding-right: 0;
  }
  .lp .prog-title-text h1 {
    font-size: 43px;
  }
  .lp .prog-stat-strip {
    max-width: 100%;
  }
  .lp .prog-detail {
    padding: 40px 24px;
  }
  .lp .prog-detail-top {
    flex-direction: column;
    gap: 40px;
  }
  .lp .prog-detail-body {
    grid-template-columns: 1fr;
  }
  .lp .modules-grid {
    grid-template-columns: 1fr;
  }
  .lp .steps-row {
    flex-direction: column;
    gap: 24px;
  }
  .lp .steps-row::before {
    display: none;
  }
  .lp .step-item {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    padding: 0;
  }
  .lp .step-dot {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .lp .prog-detail-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .lp .detail-footer-meta {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 375px) {
  .lp .prog-title-text h1 {
    font-size: 31px;
  }
  .lp .prog-title {
    padding: 40px 16px;
  }
  .lp .prog-detail {
    padding: 40px 16px;
  }
  .lp .prog-stat-strip {
    flex-direction: column;
  }
  .lp .prog-title-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .lp .detail-footer-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .lp .prog-detail-lead h2 {
    font-size: 31px;
  }
  .lp .prog-modules h3,
  .lp .prog-steps h3 {
    font-size: 23px;
  }
  .lp .detail-footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cu-pg {
  display: block;
  width: 100%;
  overflow-x: hidden;
}

.cu-pg .schema-block {
  display: none;
}

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

.cu-pg .split-top::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 60%;
  background: rgba(246, 133, 143, 0.18);
  pointer-events: none;
}

.cu-pg .split-left {
  background: #111318;
  padding: 72px 40px 72px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cu-pg .split-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/photo_files/10-highlight.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  filter: saturate(0.4) brightness(0.7);
  pointer-events: none;
  transition: opacity 0.35s ease-out;
}

.cu-pg .split-left:hover::before {
  opacity: 0.2;
}

.cu-pg .frame-corner {
  position: absolute;
  pointer-events: none;
}

.cu-pg .frame-corner.tl {
  top: 24px;
  left: 24px;
  border-top: 1px solid rgba(246, 133, 143, 0.45);
  border-left: 1px solid rgba(246, 133, 143, 0.45);
  width: 40px;
  height: 40px;
}

.cu-pg .frame-corner.br {
  bottom: 24px;
  right: 24px;
  border-bottom: 1px solid rgba(86, 226, 144, 0.45);
  border-right: 1px solid rgba(86, 226, 144, 0.45);
  width: 40px;
  height: 40px;
}

.cu-pg .overline-label {
  display: inline-block;
  font-size: 15px;
  line-height: 1.35;
  color: #F6858F;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 12px;
  background: rgba(246, 133, 143, 0.12);
  border-radius: 38px;
}

.cu-pg .split-left .pg-h1 {
  font-size: 60px;
  line-height: 1.1;
  color: #f5f0ee;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 1;
}

.cu-pg .split-left .pg-h1 em {
  font-style: normal;
  color: #56E290;
}

.cu-pg .split-left .sub-desc {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245, 240, 238, 0.72);
  max-width: 440px;
  position: relative;
  z-index: 1;
  margin: 0;
}

.cu-pg .contact-chips {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.cu-pg .chip-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cu-pg .chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: rgba(246, 133, 143, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s ease-out;
}

.cu-pg .chip-row:hover .chip-icon {
  background: rgba(246, 133, 143, 0.28);
}

.cu-pg .chip-icon svg {
  width: 18px;
  height: 18px;
}

.cu-pg .chip-text {
  font-size: 15px;
  line-height: 1.35;
  color: rgba(245, 240, 238, 0.82);
}

.cu-pg .chip-text a {
  color: #56E290;
  text-decoration: none;
  transition: letter-spacing 0.2s ease-out, color 0.15s ease-out;
}

.cu-pg .chip-text a:hover {
  letter-spacing: 0.03em;
  color: #F6858F;
}

.cu-pg .split-right {
  background: #f4f0ed;
  padding: 72px 40px 72px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.cu-pg .split-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 133, 143, 0.06) 0%, transparent 45%),
    linear-gradient(270deg, rgba(70, 129, 252, 0.05) 0%, transparent 45%);
  pointer-events: none;
}

.cu-pg .form-head {
  margin-bottom: 24px;
}

.cu-pg .form-head .form-label-top {
  font-size: 15px;
  line-height: 1.35;
  color: #4681FC;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: block;
  margin-bottom: 8px;
}

.cu-pg .form-head h2 {
  font-size: 31px;
  line-height: 1.1;
  color: #111318;
  margin: 0;
}

.cu-pg .reach-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.cu-pg .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cu-pg .field-group label {
  font-size: 15px;
  line-height: 1.35;
  color: #2a2530;
  font-weight: 600;
}

.cu-pg .field-group input,
.cu-pg .field-group select,
.cu-pg .field-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(17, 19, 24, 0.18);
  border-radius: 6px;
  background: #fff;
  font-size: 15px;
  line-height: 1.55;
  color: #111318;
  outline: none;
  box-sizing: border-box;
  box-shadow: 0 1px 5px -1px rgba(246, 133, 143, 0.06);
  transition: border-color 0.18s ease-out, box-shadow 0.22s ease-out;
  appearance: none;
  -webkit-appearance: none;
}

.cu-pg .field-group input::placeholder,
.cu-pg .field-group textarea::placeholder {
  color: rgba(17, 19, 24, 0.38);
}

.cu-pg .field-group input:focus,
.cu-pg .field-group select:focus,
.cu-pg .field-group textarea:focus {
  border-color: #4681FC;
  box-shadow: 0 6px 18px -1px rgba(246, 133, 143, 0.09);
}

.cu-pg .field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23111318' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.cu-pg .field-group textarea {
  resize: vertical;
  min-height: 100px;
}

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

.cu-pg .method-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cu-pg .method-group label.group-label {
  font-size: 15px;
  line-height: 1.35;
  color: #2a2530;
  font-weight: 600;
}

.cu-pg .method-opts {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}

.cu-pg .method-opts input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cu-pg .method-opts .mopt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(17, 19, 24, 0.18);
  border-radius: 38px;
  font-size: 15px;
  line-height: 1.35;
  color: #2a2530;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s ease-out, background 0.15s ease-out, color 0.15s ease-out;
  position: relative;
  overflow: hidden;
}

.cu-pg .method-opts input[type="radio"]:checked + .mopt {
  border-color: #F6858F;
  background: rgba(246, 133, 143, 0.1);
  color: #111318;
}

.cu-pg .method-opts .mopt:hover {
  border-color: #4681FC;
  background: rgba(70, 129, 252, 0.06);
}

.cu-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(70, 129, 252, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(70, 129, 252, 0.14);
}

.cu-pg .privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #F6858F;
  cursor: pointer;
}

.cu-pg .privacy-row .priv-text {
  font-size: 15px;
  line-height: 1.55;
  color: #2a2530;
  margin: 0;
}

.cu-pg .privacy-row .priv-text a {
  color: #4681FC;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease-out;
}

.cu-pg .privacy-row .priv-text a:hover {
  color: #F6858F;
}

.cu-pg .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: #F6858F;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px -1px rgba(246, 133, 143, 0.13);
  transition: letter-spacing 0.2s ease-out, box-shadow 0.25s ease-out;
  width: 100%;
}

.cu-pg .submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #4681FC;
  transform: translateX(101%);
  transition: transform 0.28s ease-out;
  border-radius: 6px;
}

.cu-pg .submit-btn:hover::before {
  transform: translateX(0);
}

.cu-pg .submit-btn:hover {
  letter-spacing: 0.04em;
  box-shadow: 0 9px 40px -1px rgba(246, 133, 143, 0.13);
}

.cu-pg .submit-btn span {
  position: relative;
  z-index: 1;
}

.cu-pg .submit-btn:focus-visible {
  outline: 2px solid #4681FC;
  outline-offset: 3px;
}

.cu-pg .divider-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 0 0;
  position: relative;
}

.cu-pg .divider-cross::before,
.cu-pg .divider-cross::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(17, 19, 24, 0.1);
}

.cu-pg .divider-cross .cross-icon {
  width: 16px;
  height: 16px;
  margin: 0 16px;
  flex-shrink: 0;
  position: relative;
}

.cu-pg .divider-cross .cross-icon::before,
.cu-pg .divider-cross .cross-icon::after {
  content: "";
  position: absolute;
  background: rgba(246, 133, 143, 0.5);
}

.cu-pg .divider-cross .cross-icon::before {
  width: 1px;
  height: 16px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.cu-pg .divider-cross .cross-icon::after {
  width: 16px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.cu-pg .info-strip {
  background: #fff;
  padding: 72px 40px;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.cu-pg .strip-narrative {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cu-pg .strip-narrative h3 {
  font-size: 31px;
  line-height: 1.1;
  color: #111318;
  margin: 0;
}

.cu-pg .strip-narrative p {
  font-size: 15px;
  line-height: 1.55;
  color: #3a3540;
  margin: 0;
}

.cu-pg .strip-narrative .badge-tag {
  display: inline-block;
  font-size: 15px;
  padding: 4px 12px;
  background: rgba(86, 226, 144, 0.14);
  color: #1a6e42;
  border-radius: 38px;
  line-height: 1.35;
}

.cu-pg .channel-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cu-pg .channel-list h4 {
  font-size: 18px;
  line-height: 1.35;
  color: #111318;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.cu-pg .ch-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: #f9f6f3;
  box-shadow: inset 0 1px 5px -1px rgba(246, 133, 143, 0.06);
  transition: border-color 0.18s ease-out, box-shadow 0.22s ease-out;
  text-decoration: none;
}

.cu-pg .ch-item:hover {
  border-color: #F6858F;
  box-shadow: 0 6px 18px -1px rgba(246, 133, 143, 0.09);
}

.cu-pg .ch-dot {
  width: 10px;
  height: 10px;
  border-radius: 1px;
  flex-shrink: 0;
}

.cu-pg .ch-dot.email { background: #F6858F; }
.cu-pg .ch-dot.whatsapp { background: #56E290; }
.cu-pg .ch-dot.viber { background: #4681FC; }

.cu-pg .ch-label {
  font-size: 15px;
  line-height: 1.35;
  color: #2a2530;
  font-weight: 600;
}

.cu-pg .ch-val {
  font-size: 15px;
  line-height: 1.35;
  color: #4681FC;
  margin-left: auto;
}

.cu-pg .addr-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cu-pg .addr-block h4 {
  font-size: 18px;
  line-height: 1.35;
  color: #111318;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.cu-pg .addr-card {
  padding: 16px;
  border-radius: 6px;
  background: #111318;
  box-shadow: inset 0 1px 5px -1px rgba(246, 133, 143, 0.06);
  position: relative;
  overflow: hidden;
}

.cu-pg .addr-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #F6858F 0%, transparent 50%, #56E290 100%);
}

.cu-pg .addr-card .addr-line {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 240, 238, 0.82);
  margin: 0;
}

.cu-pg .addr-card .addr-phone {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.35;
  color: #56E290;
  text-decoration: none;
  font-weight: 700;
  transition: letter-spacing 0.2s ease-out;
}

.cu-pg .addr-card .addr-phone:hover {
  letter-spacing: 0.04em;
}

.cu-pg .resp-note {
  font-size: 15px;
  line-height: 1.55;
  color: #3a3540;
  margin: 0;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid rgba(86, 226, 144, 0.25);
  background: rgba(86, 226, 144, 0.06);
}

@media (max-width: 1366px) {
  .cu-pg .split-left .pg-h1 {
    font-size: 43px;
  }
  .cu-pg .info-strip {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .cu-pg .strip-narrative {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .cu-pg .split-top {
    grid-template-columns: 1fr;
  }
  .cu-pg .split-top::after {
    display: none;
  }
  .cu-pg .split-left {
    padding: 40px 24px;
  }
  .cu-pg .split-left .pg-h1 {
    font-size: 31px;
  }
  .cu-pg .split-right {
    padding: 40px 24px;
  }
  .cu-pg .field-row {
    grid-template-columns: 1fr;
  }
  .cu-pg .info-strip {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 24px;
  }
  .cu-pg .strip-narrative {
    grid-column: auto;
  }
}

@media (max-width: 375px) {
  .cu-pg .split-left .pg-h1 {
    font-size: 23px;
  }
  .cu-pg .method-opts {
    flex-direction: column;
  }
  .cu-pg .split-left,
  .cu-pg .split-right {
    padding: 40px 16px;
  }
  .cu-pg .info-strip {
    padding: 40px 16px;
  }
}

.abt {
  position: relative;
  overflow-x: clip;
}

.abt .schema-data {
  display: none;
}

.abt .pg-lead {
  background: #fff;
  padding: 72px 24px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.abt .pg-lead::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 55%;
  height: 100%;
  background: linear-gradient(170deg, rgba(246,133,143,0.13) 0%, transparent 70%);
  pointer-events: none;
}

.abt .pg-lead::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 55%;
  height: 100%;
  background: linear-gradient(190deg, rgba(70,129,252,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.abt .pg-lead .arc-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.abt .pg-lead .arc-bg svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  opacity: 0.18;
}

.abt .lead-inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.abt .lead-badge {
  display: inline-block;
  background: rgba(246,133,143,0.12);
  color: #c94d5a;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 38px;
  letter-spacing: 0.04em;
}

.abt .lead-h1 {
  font-size: 72px;
  line-height: 1.1;
  color: #1b1b2e;
  font-weight: 800;
  max-width: 900px;
  margin: 0;
}

.abt .lead-h1 em {
  font-style: normal;
  color: #F6858F;
}

.abt .lead-sub {
  font-size: 23px;
  line-height: 1.55;
  color: #3a3a55;
  max-width: 640px;
  margin: 0;
  font-weight: 400;
}

.abt .lead-imgs {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-end;
  justify-content: center;
  margin-top: 16px;
}

.abt .lead-img-primary {
  width: 320px;
  height: 220px;
  overflow: hidden;
  border-radius: 6px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 88% 100%, 0 100%);
  box-shadow: 0 6px 18px -1px rgba(246,133,143,0.09);
  flex-shrink: 0;
}

.abt .lead-img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.abt .lead-img-side {
  width: 200px;
  height: 160px;
  overflow: hidden;
  border-radius: 6px;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
  box-shadow: 0 6px 18px -1px rgba(86,226,144,0.09);
  flex-shrink: 0;
}

.abt .lead-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.abt .story-sec {
  background: #f5f4ff;
  padding: 72px 24px;
  position: relative;
}

.abt .story-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #F6858F 35%, #4681FC 65%, transparent 100%);
}

.abt .story-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 40px;
  align-items: start;
}

.abt .story-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 40px;
}

.abt .overline {
  display: block;
  width: 40px;
  height: 2px;
  background: #F6858F;
  margin-bottom: 8px;
}

.abt .story-label {
  font-size: 15px;
  font-weight: 700;
  color: #F6858F;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.abt .story-h2 {
  font-size: 43px;
  line-height: 1.1;
  color: #1b1b2e;
  font-weight: 800;
  margin: 0;
}

.abt .story-img-wrap {
  width: 100%;
  max-width: 340px;
  height: 260px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 9px 40px -1px rgba(246,133,143,0.13);
}

.abt .story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.abt .story-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abt .story-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.abt .story-p {
  font-size: 18px;
  line-height: 1.8;
  color: #2d2d45;
  margin: 0;
}

.abt .story-stat-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.abt .stat-pill {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-radius: 6px;
  padding: 16px 24px;
  box-shadow: 0 1px 5px -1px rgba(246,133,143,0.06), 0 6px 18px -1px rgba(246,133,143,0.09);
  flex: 1;
  min-width: 140px;
}

.abt .stat-num {
  font-size: 43px;
  font-weight: 800;
  line-height: 1.1;
  color: #F6858F;
}

.abt .stat-desc {
  font-size: 15px;
  line-height: 1.35;
  color: #3a3a55;
}

.abt .team-sec {
  background: #fff;
  padding: 72px 24px;
  position: relative;
}

.abt .team-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #56E290 40%, transparent 100%);
}

.abt .team-inner {
  max-width: 1500px;
  margin: 0 auto;
}

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

.abt .team-hd-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt .team-h2 {
  font-size: 43px;
  font-weight: 800;
  line-height: 1.1;
  color: #1b1b2e;
  margin: 0;
}

.abt .team-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #3a3a55;
  max-width: 520px;
  margin: 0;
}

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

.abt .person-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 5px -1px rgba(246,133,143,0.06), 0 6px 18px -1px rgba(246,133,143,0.09);
  background: #fff;
  transition: box-shadow 0.25s ease-out;
  position: relative;
}

.abt .person-card:hover {
  box-shadow: 0 9px 40px -1px rgba(246,133,143,0.13);
}

.abt .person-card.featured {
  grid-row: span 1;
  border: 2px solid rgba(246,133,143,0.25);
}

.abt .person-card.break-grid {
  transform: translateY(-24px);
  grid-column: 3;
  grid-row: 1;
}

.abt .person-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.abt .person-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.abt .person-body {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt .person-dot {
  width: 10px;
  height: 10px;
  border-radius: 38px;
  background: #56E290;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

.abt .person-name {
  font-size: 23px;
  font-weight: 700;
  color: #1b1b2e;
  line-height: 1.35;
  margin: 0;
}

.abt .person-role {
  font-size: 15px;
  color: #F6858F;
  font-weight: 600;
  margin: 0;
}

.abt .person-bio {
  font-size: 15px;
  line-height: 1.55;
  color: #3a3a55;
  margin: 0;
}

.abt .method-sec {
  background: #1b1b2e;
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

.abt .method-sec .drift-bg {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 38px;
  background: rgba(246,133,143,0.06);
  animation: drift 8s ease-out infinite alternate;
  pointer-events: none;
}

@keyframes drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-30px, 20px) rotate(6deg); }
}

.abt .method-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 30%;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.abt .method-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abt .method-label {
  font-size: 15px;
  font-weight: 700;
  color: #56E290;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.abt .method-h2 {
  font-size: 43px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.abt .method-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
}

.abt .step-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  counter-increment: steps;
  position: relative;
}

.abt .step-item + .step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 19px;
  width: 2px;
  height: 16px;
  background: rgba(86,226,144,0.3);
}

.abt .step-num {
  width: 40px;
  height: 40px;
  border-radius: 38px;
  background: rgba(86,226,144,0.12);
  border: 1px solid rgba(86,226,144,0.35);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #56E290;
  flex-shrink: 0;
}

.abt .step-num::after {
  content: counter(steps, decimal-leading-zero);
}

.abt .step-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.abt .step-heading {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.abt .step-desc {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.abt .method-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt .method-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: inset 0 2px 8px rgba(246,133,143,0.04);
  transition: background 0.2s ease-out, border-color 0.2s ease-out;
}

.abt .method-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(86,226,144,0.25);
}

.abt .mc-tag {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #4681FC;
  background: rgba(70,129,252,0.12);
  border-radius: 38px;
  padding: 8px 16px;
  align-self: flex-start;
}

.abt .mc-heading {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.abt .mc-body {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

@media (max-width: 1366px) {
  .abt .lead-h1 { font-size: 60px; }
  .abt .story-grid { grid-template-columns: 35% 1fr; }
  .abt .team-grid { grid-template-columns: repeat(3, 1fr); }
  .abt .method-inner { grid-template-columns: 1fr 32%; }
}

@media (max-width: 768px) {
  .abt .lead-h1 { font-size: 43px; }
  .abt .lead-sub { font-size: 18px; }
  .abt .lead-imgs { flex-direction: column; align-items: center; }
  .abt .lead-img-primary { width: 100%; max-width: 380px; }
  .abt .lead-img-side { width: 100%; max-width: 380px; height: 180px; }
  .abt .story-grid { grid-template-columns: 1fr; }
  .abt .story-left { position: static; }
  .abt .story-cols { grid-template-columns: 1fr; }
  .abt .story-h2 { font-size: 31px; }
  .abt .team-hd { flex-direction: column; align-items: flex-start; }
  .abt .team-h2 { font-size: 31px; }
  .abt .team-grid { grid-template-columns: 1fr; }
  .abt .person-card.break-grid { transform: none; grid-column: auto; grid-row: auto; }
  .abt .method-inner { grid-template-columns: 1fr; }
  .abt .method-h2 { font-size: 31px; }
  .abt .stat-num { font-size: 31px; }
}

@media (max-width: 375px) {
  .abt .pg-lead { padding: 40px 16px 24px; }
  .abt .lead-h1 { font-size: 31px; }
  .abt .lead-sub { font-size: 15px; }
  .abt .story-sec { padding: 40px 16px; }
  .abt .team-sec { padding: 40px 16px; }
  .abt .method-sec { padding: 40px 16px; }
  .abt .stat-pill { padding: 16px; }
  .abt .story-stat-row { flex-direction: column; }
}

.abt .btn-primary {
  display: inline-block;
  background: #F6858F;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: letter-spacing 0.18s ease-out, box-shadow 0.18s ease-out;
  box-shadow: 0 6px 18px -1px rgba(246,133,143,0.09);
}

.abt .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #4681FC;
  transition: right 0.22s ease-out;
  z-index: 0;
}

.abt .btn-primary:hover::after { right: 0; }
.abt .btn-primary:hover { letter-spacing: 0.03em; box-shadow: 0 9px 40px -1px rgba(246,133,143,0.13); }
.abt .btn-primary span { position: relative; z-index: 1; }

.abt .btn-outline {
  display: inline-block;
  background: transparent;
  color: #F6858F;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid #F6858F;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: letter-spacing 0.18s ease-out, color 0.18s ease-out;
}

.abt .btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #F6858F;
  transition: right 0.22s ease-out;
  z-index: 0;
}

.abt .btn-outline:hover::after { right: 0; }
.abt .btn-outline:hover { color: #fff; letter-spacing: 0.03em; }
.abt .btn-outline span { position: relative; z-index: 1; }

.abt .lead-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.ok-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 24px;
  background: #ffffff;
}

.ok-page .ok-wrap {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.ok-page .ok-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 38px;
  background: linear-gradient(135deg, #56E290 0%, rgba(86, 226, 144, 0.18) 100%);
  box-shadow: 0 6px 18px -1px rgba(86, 226, 144, 0.09);
}

.ok-page .ok-icon svg {
  display: block;
}

.ok-page .ok-tag {
  display: inline-block;
  font-size: 15px;
  line-height: 1.35;
  color: #56E290;
  background: rgba(86, 226, 144, 0.1);
  border-radius: 38px;
  padding: 8px 16px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.ok-page .ok-heading {
  font-size: 43px;
  line-height: 1.1;
  color: #111827;
  margin: 0 0 24px;
  font-weight: 800;
}

.ok-page .ok-body {
  font-size: 18px;
  line-height: 1.55;
  color: #374151;
  margin: 0 0 40px;
}

.ok-page .ok-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #F6858F, #4681FC);
  border-radius: 6px;
  margin: 0 auto 40px;
}

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

.ok-page .btn-primary {
  display: inline-block;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
  background: #F6858F;
  border: none;
  border-radius: 6px;
  padding: 16px 40px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.18s ease-out, letter-spacing 0.22s ease-out;
  box-shadow: 0 1px 5px -1px rgba(246, 133, 143, 0.06), 0 6px 18px -1px rgba(246, 133, 143, 0.09);
}

.ok-page .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #4681FC;
  transform: translateX(100%);
  transition: transform 0.25s ease-out;
  border-radius: 6px;
  z-index: 0;
}

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

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

.ok-page .btn-primary:hover {
  letter-spacing: 0.03em;
  box-shadow: 0 9px 40px -1px rgba(246, 133, 143, 0.13);
}

.ok-page .btn-primary:focus-visible {
  outline: 3px solid #4681FC;
  outline-offset: 3px;
}

.ok-page .btn-secondary {
  display: inline-block;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: #374151;
  background: transparent;
  border: 2px solid #e8e8ee;
  border-radius: 6px;
  padding: 14px 40px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.18s ease-out, color 0.18s ease-out, letter-spacing 0.22s ease-out;
}

.ok-page .btn-secondary:hover {
  border-color: #F6858F;
  color: #F6858F;
  letter-spacing: 0.03em;
}

.ok-page .btn-secondary:focus-visible {
  outline: 3px solid #F6858F;
  outline-offset: 3px;
}

.ok-page .ok-note {
  margin-top: 40px;
  font-size: 15px;
  line-height: 1.55;
  color: #6e7a8a;
}

.ok-page .ok-note a {
  color: #4681FC;
  text-decoration: none;
  border-bottom: 1px solid rgba(70, 129, 252, 0.3);
  transition: border-color 0.15s ease-out, color 0.15s ease-out;
}

.ok-page .ok-note a:hover {
  color: #F6858F;
  border-color: rgba(246, 133, 143, 0.4);
}

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

  .ok-page .ok-heading {
    font-size: 31px;
  }

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

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

@media (max-width: 375px) {
  .ok-page .ok-heading {
    font-size: 23px;
  }

  .ok-page .ok-body {
    font-size: 15px;
  }
}
