@import url('https://cdn.jsdelivr.net/npm/@fontsource/karla@latest/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/karla@latest/500.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/karla@latest/600.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/karla@latest/700.css');

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

html {
  font-size: 100%;
}

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

.top-strip {
  background: #3C4663;
  border-bottom: 1px solid #628064;
}

.top-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
}

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

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #A5BCB2;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.18s ease-out;
}

.top-contact-item:hover {
  color: #ffffff;
}

.top-contact-item svg {
  flex-shrink: 0;
}

.top-strip-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-strip-nav a {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #A5BCB2;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 7px;
  letter-spacing: 0.01em;
  transition: color 0.15s ease-out, background 0.15s ease-out;
}

.top-strip-nav a:hover {
  color: #ffffff;
  background: rgba(165, 188, 178, 0.12);
}

.top-strip-nav a:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(98, 128, 100, 0.5);
}

.brand-row {
  background: #ffffff;
  border-bottom: 2px solid #A5BCB2;
  box-shadow: 0 7px 14px -1px rgba(60, 70, 99, 0.10);
}

.brand-row-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-tagline {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #628064;
  letter-spacing: 0.02em;
  line-height: 1.5;
  border-left: 3px solid #A5BCB2;
  padding-left: 12px;
  max-width: 260px;
}

.brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 80px;
  border-radius: 12px;
  background: #f4f6f5;
  border-bottom: 3px solid #628064;
  box-shadow: 0 3px 4px -1px rgba(60, 70, 99, 0.05), 0 7px 14px -1px rgba(60, 70, 99, 0.10);
  padding: 6px;
}

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

.brand-name {
  font-family: 'Karla', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #3C4663;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-cta-btn {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #3C4663;
  background: transparent;
  border: 2px solid #3C4663;
  border-radius: 7px;
  padding: 12px 24px;
  text-decoration: none;
  letter-spacing: 0.01em;
  display: inline-block;
  transition: background 0.18s ease-out, color 0.18s ease-out, transform 0.14s cubic-bezier(0.4, 0, 0.6, 1);
}

.header-cta-btn:hover {
  background: #3C4663;
  color: #ffffff;
  transform: scale(1.04);
}

.header-cta-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(60, 70, 99, 0.4);
}

@media (max-width: 1024px) {
  .top-strip-inner {
    padding: 0 24px;
    flex-wrap: wrap;
    min-height: auto;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .brand-row-inner {
    padding: 24px;
  }

  .brand-tagline {
    max-width: 180px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .top-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 6px 24px;
  }

  .top-contact-group {
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand-row-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 24px;
  }

  .brand-left {
    justify-content: center;
  }

  .brand-tagline {
    text-align: center;
    border-left: none;
    border-top: 3px solid #A5BCB2;
    padding-left: 0;
    padding-top: 6px;
    max-width: 320px;
  }

  .brand-right {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .top-strip-inner {
    padding: 6px 12px;
  }

  .brand-row-inner {
    padding: 24px 12px;
  }

  .top-contact-group {
    gap: 6px;
  }

  .top-contact-item {
    font-size: 16px;
  }
}

.page-footer {
  background: #3C4663;
  border-top: 4px solid #628064;
}

.footer-upper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col-label {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #A5BCB2;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(165, 188, 178, 0.3);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-logo-rule {
  width: 100%;
  height: 1px;
  background: rgba(165, 188, 178, 0.4);
  border: none;
  margin: 0;
}

.footer-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 68px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(165, 188, 178, 0.3);
  box-shadow: 0 3px 4px -1px rgba(60, 70, 99, 0.05);
  padding: 6px;
}

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

.footer-brand-name {
  font-family: 'Karla', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.footer-brand-desc {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #A5BCB2;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list li a {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #A5BCB2;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.5;
  transition: color 0.16s ease-out;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list li a:hover {
  color: #ffffff;
}

.footer-links-list li a:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(165, 188, 178, 0.4);
  border-radius: 7px;
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-text {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #A5BCB2;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.footer-contact-link {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #A5BCB2;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.16s ease-out;
}

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

.footer-contact-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(165, 188, 178, 0.4);
  border-radius: 7px;
}

.footer-service-note {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(165, 188, 178, 0.7);
  line-height: 1.8;
  letter-spacing: 0.01em;
  padding: 12px;
  border: 1px solid rgba(165, 188, 178, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-lower {
  border-top: 1px solid rgba(165, 188, 178, 0.2);
  background: rgba(0, 0, 0, 0.15);
}

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

.footer-copy {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(165, 188, 178, 0.7);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal-links a {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #A5BCB2;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.16s ease-out;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

.footer-legal-links a:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(165, 188, 178, 0.4);
  border-radius: 7px;
}

@media (max-width: 1024px) {
  .footer-upper {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 24px 40px;
  }
}

@media (max-width: 768px) {
  .footer-upper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }

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

@media (max-width: 480px) {
  .footer-upper {
    padding: 40px 12px;
  }

  .footer-lower-inner {
    padding: 24px 12px;
  }

  .footer-legal-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.cookie-card {
  font-family: 'Karla', sans-serif;
  position: fixed;
  top: 80px;
  right: 24px;
  width: 340px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #A5BCB2;
  box-shadow: 0 10px 52px -1px rgba(60, 70, 99, 0.14);
  z-index: 1000;
  overflow: hidden;
}

.cookie-card-body {
  padding: 24px;
}

.cookie-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 48px;
  background: #f4f6f5;
  border: 1px solid #A5BCB2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.cookie-card-msg {
  font-size: 16px;
  font-weight: 400;
  color: #3C4663;
  line-height: 1.8;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.cookie-card-msg a {
  color: #628064;
  text-decoration: underline;
  transition: color 0.15s ease-out;
}

.cookie-card-msg a:hover {
  color: #3C4663;
}

.cookie-expand-btn {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #628064;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  transition: color 0.15s ease-out;
}

.cookie-expand-btn:hover {
  color: #3C4663;
}

.cookie-expand-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(98, 128, 100, 0.4);
  border-radius: 7px;
}

.cookie-panel {
  border-top: 1px solid #A5BCB2;
  padding-top: 12px;
  margin-bottom: 12px;
}

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

.cookie-toggle-label {
  font-size: 16px;
  font-weight: 500;
  color: #3C4663;
  letter-spacing: 0.01em;
}

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

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

.cookie-toggle-track {
  position: absolute;
  inset: 0;
  background: #d4dbd8;
  border-radius: 48px;
  cursor: pointer;
  transition: background 0.18s ease-out;
}

.cookie-toggle-switch input:checked+.cookie-toggle-track {
  background: #628064;
}

.cookie-toggle-switch input:checked+.cookie-toggle-track::after {
  transform: translateX(16px);
  box-shadow: inset 0 1px 3px rgba(60, 70, 99, 0.2);
}

.cookie-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 48px;
  background: #ffffff;
  transition: transform 0.18s ease-out;
}

.cookie-toggle-switch input:focus+.cookie-toggle-track {
  box-shadow: 0 0 0 3px rgba(98, 128, 100, 0.4);
}

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

.cookie-btn {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 7px;
  padding: 12px 24px;
  cursor: pointer;
  letter-spacing: 0.01em;
  flex: 1;
  text-align: center;
  transition: background 0.18s ease-out, color 0.18s ease-out, transform 0.14s cubic-bezier(0.4, 0, 0.6, 1);
}

.cookie-btn-accept {
  background: transparent;
  color: #3C4663;
  border: 2px solid #3C4663;
}

.cookie-btn-accept:hover {
  background: #3C4663;
  color: #ffffff;
  transform: scale(1.04);
}

.cookie-btn-accept:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(60, 70, 99, 0.4);
}

.cookie-btn-deny {
  background: transparent;
  color: #628064;
  border: 2px solid #628064;
}

.cookie-btn-deny:hover {
  background: #628064;
  color: #ffffff;
  transform: scale(1.04);
}

.cookie-btn-deny:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(98, 128, 100, 0.4);
}

.legal-details {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.legal-details p {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2a2d38;
  margin-bottom: 24px;
}

.legal-details ul,
.legal-details ol {
  margin: 24px 0;
  padding-left: 40px;
}

.legal-details li {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2a2d38;
  margin-bottom: 12px;
}

.legal-details ul li {
  list-style-type: disc;
}

.legal-details ol li {
  list-style-type: decimal;
}

.legal-details ul li::marker,
.legal-details ol li::marker {
  color: #628064;
}

.legal-details strong,
.legal-details b {
  font-weight: 700;
  color: #3C4663;
}

.legal-details em,
.legal-details i {
  font-style: italic;
  color: #4a5270;
}

.legal-details a {
  color: #628064;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.18s ease-out, text-decoration-color 0.15s ease-out;
}

.legal-details a:hover {
  color: #3C4663;
  text-decoration-color: #A5BCB2;
}

.legal-details a:active {
  color: #3C4663;
}

.legal-details hr {
  border: none;
  border-top: 1px solid #A5BCB2;
  margin: 40px 0;
  opacity: 0.6;
}

.legal-details div {
  margin-bottom: 24px;
}

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

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

  .legal-details p {
    font-size: 16px;
  }

  .legal-details li {
    font-size: 16px;
  }

  .legal-details ul,
  .legal-details ol {
    padding-left: 24px;
  }
}

@media (max-width: 480px) {
  .legal-details {
    padding: 40px 12px;
  }

  .legal-details hr {
    margin: 24px 0;
  }
}

.lrn-prog {
  background: #fff;
  overflow-x: clip;
}

.lrn-prog .drop-reveal {
  animation: dropIn 0.18s cubic-bezier(0.4, 0, 0.6, 1) both;
}

.lrn-prog .drop-reveal:nth-child(1) {
  animation-delay: 0.04s;
}

.lrn-prog .drop-reveal:nth-child(2) {
  animation-delay: 0.09s;
}

.lrn-prog .drop-reveal:nth-child(3) {
  animation-delay: 0.14s;
}

.lrn-prog .drop-reveal:nth-child(4) {
  animation-delay: 0.19s;
}

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

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

.lrn-prog ::selection {
  background: linear-gradient(90deg, #3C4663, #628064);
  color: #fff;
}

.lrn-prog .pg-anchor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lrn-prog .sep-diamond {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #628064;
  transform: rotate(45deg);
  margin: 0 12px;
  vertical-align: middle;
}

.lrn-prog .dot-accent {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #628064;
  border-radius: 48px;
  margin-left: 6px;
  vertical-align: middle;
}

.lrn-prog .title-blk {
  padding: 80px 24px;
  position: relative;
  background: #fff;
  overflow: hidden;
}

.lrn-prog .title-blk-circles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.lrn-prog .title-blk-circles span {
  position: absolute;
  border-radius: 48px;
  border: 1.5px solid rgba(60, 70, 99, 0.07);
}

.lrn-prog .title-blk-circles span:nth-child(1) {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -60px;
}

.lrn-prog .title-blk-circles span:nth-child(2) {
  width: 180px;
  height: 180px;
  top: 40px;
  left: 80px;
  border-color: rgba(98, 128, 100, 0.08);
}

.lrn-prog .title-blk-circles span:nth-child(3) {
  width: 240px;
  height: 240px;
  bottom: -60px;
  right: 200px;
  border-color: rgba(165, 188, 178, 0.1);
}

.lrn-prog .title-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
}

.lrn-prog .title-left {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lrn-prog .title-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(98, 128, 100, 0.09);
  color: #628064;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 7px;
  font-weight: 600;
  width: fit-content;
}

.lrn-prog .title-h1 {
  font-size: 62px;
  line-height: 1.1;
  color: #3C4663;
  letter-spacing: 0.01em;
  margin: 0;
}

.lrn-prog .title-h1 em {
  font-style: normal;
  color: #628064;
}

.lrn-prog .title-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #3C4663;
  margin: 0;
  max-width: 480px;
  opacity: 0.85;
}

.lrn-prog .title-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lrn-prog .title-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lrn-prog .title-meta-item strong {
  font-size: 24px;
  color: #3C4663;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.lrn-prog .title-meta-item span {
  font-size: 16px;
  color: #628064;
  letter-spacing: 0.01em;
}

.lrn-prog .title-right {
  flex: 1 1 auto;
  position: relative;
}

.lrn-prog .title-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 52px -1px rgba(60, 70, 99, 0.14);
  position: relative;
}

.lrn-prog .title-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(255, 255, 255, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.lrn-prog .title-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.lrn-prog .steps-blk {
  padding: 80px 24px;
  background: #f4f6f4;
  position: relative;
}

.lrn-prog .steps-blk::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(98, 128, 100, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lrn-prog .steps-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.lrn-prog .steps-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.lrn-prog .steps-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #3C4663;
  letter-spacing: 0.01em;
  margin: 0;
}

.lrn-prog .steps-sub {
  font-size: 18px;
  line-height: 1.5;
  color: #3C4663;
  opacity: 0.75;
  max-width: 340px;
  margin: 0;
}

.lrn-prog .steps-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
}

.lrn-prog .step-card {
  flex: 1 1 0;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 3px 4px -1px rgba(60, 70, 99, 0.05);
  position: relative;
  transition: box-shadow 0.18s ease-out;
}

.lrn-prog .step-card:hover {
  box-shadow: 0 7px 14px -1px rgba(60, 70, 99, 0.10);
}

.lrn-prog .step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  flex-shrink: 0;
}

.lrn-prog .step-arrow svg {
  width: 22px;
  height: 22px;
  fill: #A5BCB2;
}

.lrn-prog .step-num {
  font-size: 32px;
  font-weight: 700;
  color: #A5BCB2;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.lrn-prog .step-label {
  font-size: 18px;
  font-weight: 700;
  color: #3C4663;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin: 0;
}

.lrn-prog .step-text {
  font-size: 16px;
  line-height: 1.5;
  color: #3C4663;
  opacity: 0.8;
  margin: 0;
}

.lrn-prog .details-blk {
  padding: 80px 24px;
  background: #3C4663;
  position: relative;
  overflow: hidden;
}

.lrn-prog .details-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(20, 25, 40, 0.35) 100%);
  pointer-events: none;
}

.lrn-prog .details-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.lrn-prog .details-lines span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(165, 188, 178, 0.07);
}

.lrn-prog .details-lines span:nth-child(1) {
  top: 18%;
  height: 1px;
}

.lrn-prog .details-lines span:nth-child(2) {
  top: 36%;
  height: 2px;
}

.lrn-prog .details-lines span:nth-child(3) {
  top: 55%;
  height: 1px;
}

.lrn-prog .details-lines span:nth-child(4) {
  top: 72%;
  height: 3px;
}

.lrn-prog .details-lines span:nth-child(5) {
  top: 88%;
  height: 1px;
}

.lrn-prog .details-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.lrn-prog .details-wide {
  flex: 0 0 62%;
}

.lrn-prog .details-side {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lrn-prog .details-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0.01em;
  margin: 0 0 24px 0;
}

.lrn-prog .details-h2 em {
  font-style: normal;
  color: #A5BCB2;
}

.lrn-prog .details-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lrn-prog .detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border-top: 2px solid rgba(165, 188, 178, 0.25);
  transition: background 0.15s ease-out;
}

.lrn-prog .detail-item:hover {
  background: rgba(255, 255, 255, 0.10);
}

.lrn-prog .detail-item h4 {
  font-size: 16px;
  color: #A5BCB2;
  letter-spacing: 0.02em;
  margin: 0;
  font-weight: 600;
}

.lrn-prog .detail-item p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.lrn-prog .details-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 52px -1px rgba(60, 70, 99, 0.14);
}

.lrn-prog .details-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.lrn-prog .details-rating {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lrn-prog .details-rating-val {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.lrn-prog .details-rating-stars {
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.lrn-prog .star-shape {
  width: 18px;
  height: 18px;
}

.lrn-prog .details-rating p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.lrn-prog .voices-blk {
  padding: 80px 24px;
  background: #fff;
  position: relative;
}

.lrn-prog .voices-geom {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.lrn-prog .voices-geom span {
  display: block;
  position: absolute;
  right: -20px;
}

.lrn-prog .voices-geom span:nth-child(1) {
  top: 12%;
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(98, 128, 100, 0.12);
  border-radius: 7px;
  transform: rotate(20deg);
}

.lrn-prog .voices-geom span:nth-child(2) {
  top: 40%;
  width: 24px;
  height: 24px;
  background: rgba(165, 188, 178, 0.15);
  border-radius: 7px;
  transform: rotate(35deg);
}

.lrn-prog .voices-geom span:nth-child(3) {
  top: 68%;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(60, 70, 99, 0.08);
  border-radius: 7px;
  transform: rotate(-15deg);
}

.lrn-prog .voices-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.lrn-prog .voices-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #3C4663;
  letter-spacing: 0.01em;
  margin: 0;
}

.lrn-prog .voices-note {
  font-size: 16px;
  line-height: 1.5;
  color: #3C4663;
  opacity: 0.7;
  max-width: 300px;
  margin: 0;
}

.lrn-prog .voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.lrn-prog .voice-card {
  background: #f4f6f4;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 3px 4px -1px rgba(98, 128, 100, 0.05);
  transition: box-shadow 0.15s ease-out, transform 0.14s ease-out;
}

.lrn-prog .voice-card:hover {
  box-shadow: 0 7px 14px -1px rgba(98, 128, 100, 0.10);
  transform: translateY(-3px);
}

.lrn-prog .voice-card.wide {
  grid-column: span 2;
}

.lrn-prog .voice-quote {
  font-size: 16px;
  line-height: 1.8;
  color: #3C4663;
  margin: 0;
}

.lrn-prog .voice-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.lrn-prog .voice-avatar {
  width: 40px;
  height: 40px;
  border-radius: 48px;
  background: linear-gradient(135deg, #A5BCB2, #628064);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.lrn-prog .voice-name {
  font-size: 16px;
  font-weight: 700;
  color: #3C4663;
  letter-spacing: 0.01em;
}

.lrn-prog .voice-role {
  font-size: 16px;
  color: #628064;
  letter-spacing: 0.01em;
}

.lrn-prog .char-hover {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
}

.lrn-prog .char-hover .ch {
  display: inline-block;
  color: #fff;
  transition: color 0.12s ease-out;
}

.lrn-prog .char-hover:hover .ch:nth-child(1) {
  color: #A5BCB2;
  transition-delay: 0.00s;
}

.lrn-prog .char-hover:hover .ch:nth-child(2) {
  color: #A5BCB2;
  transition-delay: 0.02s;
}

.lrn-prog .char-hover:hover .ch:nth-child(3) {
  color: #A5BCB2;
  transition-delay: 0.04s;
}

.lrn-prog .char-hover:hover .ch:nth-child(4) {
  color: #A5BCB2;
  transition-delay: 0.06s;
}

.lrn-prog .char-hover:hover .ch:nth-child(5) {
  color: #A5BCB2;
  transition-delay: 0.08s;
}

.lrn-prog .char-hover:hover .ch:nth-child(6) {
  color: #A5BCB2;
  transition-delay: 0.10s;
}

.lrn-prog .char-hover:hover .ch:nth-child(7) {
  color: #A5BCB2;
  transition-delay: 0.12s;
}

.lrn-prog .char-hover:hover .ch:nth-child(8) {
  color: #A5BCB2;
  transition-delay: 0.14s;
}

.lrn-prog .char-hover:hover .ch:nth-child(9) {
  color: #A5BCB2;
  transition-delay: 0.16s;
}

.lrn-prog .char-hover:hover .ch:nth-child(10) {
  color: #A5BCB2;
  transition-delay: 0.18s;
}

@media (max-width: 1024px) {
  .lrn-prog .title-h1 {
    font-size: 44px;
  }

  .lrn-prog .title-inner {
    gap: 40px;
  }

  .lrn-prog .details-inner {
    flex-direction: column;
    gap: 40px;
  }

  .lrn-prog .details-wide {
    flex: none;
    width: 100%;
  }

  .lrn-prog .voices-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lrn-prog .voice-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .lrn-prog .title-inner {
    flex-direction: column;
    gap: 40px;
  }

  .lrn-prog .title-left {
    flex: none;
  }

  .lrn-prog .title-h1 {
    font-size: 32px;
  }

  .lrn-prog .steps-h2 {
    font-size: 32px;
  }

  .lrn-prog .steps-row {
    flex-direction: column;
    gap: 12px;
  }

  .lrn-prog .step-arrow {
    transform: rotate(90deg);
    padding: 6px 0;
  }

  .lrn-prog .details-cols {
    grid-template-columns: 1fr;
  }

  .lrn-prog .details-h2 {
    font-size: 32px;
  }

  .lrn-prog .voices-grid {
    grid-template-columns: 1fr;
  }

  .lrn-prog .voice-card.wide {
    grid-column: span 1;
  }

  .lrn-prog .voices-h2 {
    font-size: 32px;
  }

  .lrn-prog .title-meta {
    gap: 12px;
  }
}

@media (max-width: 480px) {

  .lrn-prog .title-blk,
  .lrn-prog .steps-blk,
  .lrn-prog .details-blk,
  .lrn-prog .voices-blk {
    padding: 40px 12px;
  }

  .lrn-prog .title-h1 {
    font-size: 24px;
  }

  .lrn-prog .steps-h2,
  .lrn-prog .details-h2,
  .lrn-prog .voices-h2 {
    font-size: 24px;
  }

  .lrn-prog .steps-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .lrn-prog .voices-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ct-us {
  background: #ffffff;
  padding: 0;
  overflow-x: clip;
}

.ct-us .strip-img {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.ct-us .strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

.ct-us .strip-img .tint {
  position: absolute;
  inset: 0;
  background: rgba(60, 70, 99, 0.55);
}

.ct-us .strip-img .decor-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #628064, #A5BCB2, transparent);
}

.ct-us .strip-img .decor-dot {
  position: absolute;
  top: 24px;
  right: 80px;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background: rgba(98, 128, 100, 0.18);
  pointer-events: none;
}

.ct-us .strip-img .decor-dot-sm {
  position: absolute;
  top: 40px;
  right: 140px;
  width: 12px;
  height: 12px;
  border-radius: 48px;
  background: rgba(165, 188, 178, 0.35);
  pointer-events: none;
}

.ct-us .pg-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 24px 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px;
}

.ct-us .pg-head-text {
  flex: 1 1 0;
  padding: 24px 0 0 0;
}

.ct-us .pg-head-text h1 {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #3C4663;
  margin: 0 0 12px 0;
  font-weight: 800;
}

.ct-us .pg-head-text h1 .accent {
  color: #628064;
}

.ct-us .pg-head-text h1 .dot-acc {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #628064;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -4px;
}

.ct-us .pg-head-text .sub-desc {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #3C4663;
  margin: 0;
  max-width: 480px;
}

.ct-us .pg-head-counter {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 6px 0;
  gap: 6px;
}

.ct-us .pg-head-counter .count-num {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #628064;
  font-weight: 800;
}

.ct-us .pg-head-counter .count-label {
  font-size: 16px;
  line-height: 1.5;
  color: #3C4663;
  letter-spacing: 0.01em;
  text-align: center;
}

.ct-us .two-col-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.ct-us .contact-details-col {
  padding: 40px;
  background: linear-gradient(160deg, rgba(165, 188, 178, 0.13) 0%, transparent 100%);
  border-radius: 12px;
  box-shadow: 0 7px 14px -1px rgba(60, 70, 99, 0.10);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ct-us .contact-details-col h2 {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #3C4663;
  margin: 0 0 6px 0;
  font-weight: 700;
}

.ct-us .contact-details-col h2 .dot-acc {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 48px;
  background: #628064;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.ct-us .contact-details-col .cd-intro {
  font-size: 16px;
  line-height: 1.5;
  color: #3C4663;
  margin: 0;
}

.ct-us .cd-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ct-us .cd-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 3px 4px -1px rgba(60, 70, 99, 0.05);
  transition: box-shadow 0.18s ease-out, background 0.15s ease-out;
}

.ct-us .cd-item:hover {
  background: #fff;
  box-shadow: 0 7px 14px -1px rgba(60, 70, 99, 0.10);
}

.ct-us .cd-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: rgba(98, 128, 100, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-us .cd-icon svg {
  display: block;
}

.ct-us .cd-item-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-us .cd-item-text .cd-label {
  font-size: 16px;
  font-weight: 700;
  color: #3C4663;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.ct-us .cd-item-text .cd-value {
  font-size: 16px;
  color: #3C4663;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.ct-us .cd-item-text a.cd-value {
  color: #628064;
  transition: color 0.14s ease-out;
}

.ct-us .cd-item-text a.cd-value:hover {
  color: #3C4663;
}

.ct-us .avail-note {
  padding: 12px;
  border-radius: 7px;
  background: rgba(98, 128, 100, 0.09);
  font-size: 16px;
  line-height: 1.5;
  color: #3C4663;
  letter-spacing: 0.01em;
}

.ct-us .avail-note strong {
  color: #628064;
}

.ct-us .form-col {
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 52px -1px rgba(60, 70, 99, 0.14);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ct-us .form-col h2 {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #3C4663;
  margin: 0;
  font-weight: 700;
}

.ct-us .form-col h2 .dot-acc {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 48px;
  background: #628064;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.ct-us .form-col .form-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #3C4663;
  margin: 0;
}

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

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

.ct-us .cf-field label {
  font-size: 16px;
  font-weight: 700;
  color: #3C4663;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.ct-us .cf-field input,
.ct-us .cf-field textarea {
  font-size: 16px;
  line-height: 1.5;
  color: #3C4663;
  background: #f4f6f9;
  border: 1.5px solid #A5BCB2;
  border-radius: 7px;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out;
  letter-spacing: 0.01em;
}

.ct-us .cf-field input::placeholder,
.ct-us .cf-field textarea::placeholder {
  color: #8a94aa;
}

.ct-us .cf-field input:focus,
.ct-us .cf-field textarea:focus {
  border-color: #628064;
  background: #fff;
  box-shadow: 0 3px 4px -1px rgba(98, 128, 100, 0.05);
}

.ct-us .cf-field textarea {
  resize: vertical;
  min-height: 120px;
}

.ct-us .cf-privacy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 7px;
  background: rgba(165, 188, 178, 0.10);
}

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

.ct-us .cf-privacy input[type="checkbox"]:active {
  box-shadow: inset 0 2px 4px rgba(98, 128, 100, 0.25);
}

.ct-us .cf-privacy label {
  font-size: 16px;
  line-height: 1.5;
  color: #3C4663;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.ct-us .cf-privacy label a {
  color: #628064;
  text-decoration: underline;
  transition: color 0.14s ease-out;
}

.ct-us .cf-privacy label a:hover {
  color: #3C4663;
}

.ct-us .cf-submit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.ct-us .btn-send {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #628064;
  background: transparent;
  border: 2px solid #628064;
  border-radius: 7px;
  padding: 12px 40px;
  cursor: pointer;
  transition: background 0.18s ease-out, color 0.18s ease-out, transform 0.14s cubic-bezier(0.4, 0, 0.6, 1);
  outline: none;
}

.ct-us .btn-send:hover {
  background: #628064;
  color: #fff;
  transform: scale(1.04);
}

.ct-us .btn-send:focus-visible {
  outline: 2.5px solid #3C4663;
  outline-offset: 3px;
}

.ct-us .btn-send:active {
  box-shadow: inset 0 2px 6px rgba(98, 128, 100, 0.22);
  transform: scale(0.98);
}

.ct-us .geom-motif {
  position: absolute;
  pointer-events: none;
}

.ct-us .pg-head {
  position: relative;
}

.ct-us .motif-row {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 24px 0 0;
  pointer-events: none;
}

.ct-us .motif-sq {
  width: 6px;
  height: 6px;
  border-radius: 7px;
  background: rgba(165, 188, 178, 0.45);
}

.ct-us .reveal-left {
  animation: slideInLeft 0.22s ease-out both;
}

.ct-us .reveal-right {
  animation: slideInRight 0.20s ease-out both;
}

.ct-us .reveal-up {
  animation: slideInUp 0.18s ease-out both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

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

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@media (max-width: 1024px) {
  .ct-us .pg-head {
    padding: 40px 24px 24px 24px;
    gap: 24px;
  }

  .ct-us .pg-head-text h1 {
    font-size: 44px;
  }

  .ct-us .two-col-body {
    padding: 0 24px 80px 24px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .ct-us .strip-img {
    height: 140px;
  }

  .ct-us .pg-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 24px 12px 24px;
  }

  .ct-us .pg-head-text h1 {
    font-size: 32px;
  }

  .ct-us .pg-head-counter {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .ct-us .pg-head-counter .count-num {
    font-size: 32px;
  }

  .ct-us .two-col-body {
    grid-template-columns: 1fr;
    padding: 0 24px 40px 24px;
    gap: 24px;
  }

  .ct-us .contact-details-col,
  .ct-us .form-col {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .ct-us .pg-head {
    padding: 24px 12px 12px 12px;
  }

  .ct-us .pg-head-text h1 {
    font-size: 24px;
  }

  .ct-us .pg-head-text .sub-desc {
    font-size: 16px;
  }

  .ct-us .two-col-body {
    padding: 0 12px 40px 12px;
  }

  .ct-us .contact-details-col,
  .ct-us .form-col {
    padding: 12px;
  }

  .ct-us .btn-send {
    width: 100%;
    text-align: center;
  }
}

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

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

.abt-us .title-block {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 520px;
  background: linear-gradient(135deg, #2a3050 0%, #3C4663 40%, #4a6155 75%, #628064 100%);
  position: relative;
}

.abt-us .title-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(98, 128, 100, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse at 80% 20%, rgba(165, 188, 178, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.abt-us .title-mesh-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.abt-us .title-mesh-dots span {
  position: absolute;
  border-radius: 48px;
  background: rgba(165, 188, 178, 0.08);
}

.abt-us .title-mesh-dots span:nth-child(1) {
  width: 180px;
  height: 180px;
  top: -40px;
  left: 60px;
}

.abt-us .title-mesh-dots span:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 120px;
  left: 320px;
  background: rgba(165, 188, 178, 0.05);
}

.abt-us .title-mesh-dots span:nth-child(3) {
  width: 260px;
  height: 120px;
  bottom: -30px;
  left: 140px;
}

.abt-us .title-mesh-dots span:nth-child(4) {
  width: 60px;
  height: 60px;
  top: 60px;
  right: 460px;
  background: rgba(98, 128, 100, 0.1);
}

.abt-us .title-text-col {
  padding: 80px 40px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.abt-us .title-eyebrow {
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #A5BCB2;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}

.abt-us .title-h1 {
  font-size: 62px;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  font-weight: 700;
}

.abt-us .title-h1 .accent-word {
  color: #A5BCB2;
}

.abt-us .title-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
  max-width: 520px;
  margin-bottom: 40px;
}

.abt-us .title-meta-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.abt-us .title-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.abt-us .meta-num {
  font-size: 32px;
  line-height: 1.1;
  color: #A5BCB2;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.abt-us .meta-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

.abt-us .title-img-col {
  position: relative;
  overflow: hidden;
}

.abt-us .title-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.abt-us .title-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #3C4663 0%, rgba(60, 70, 99, 0.55) 40%, transparent 75%);
}

.abt-us .title-punctuation {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 72px;
  line-height: 1.1;
  color: rgba(165, 188, 178, 0.18);
  font-weight: 900;
  pointer-events: none;
  z-index: 2;
  letter-spacing: -0.02em;
}

.abt-us .story-block {
  background: #f5f6f8;
  padding: 80px 0;
  position: relative;
}

.abt-us .story-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #628064, #A5BCB2, transparent);
}

.abt-us .story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

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

.abt-us .story-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #628064;
  text-transform: uppercase;
  font-weight: 600;
}

.abt-us .story-tag-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #628064;
  border-radius: 7px;
}

.abt-us .story-heading {
  font-size: 44px;
  line-height: 1.1;
  color: #3C4663;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.abt-us .story-heading .dot-acc {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #628064;
  margin-left: 6px;
  vertical-align: middle;
  margin-bottom: 6px;
}

.abt-us .story-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 7px 14px -1px rgba(60, 70, 99, 0.10);
}

.abt-us .story-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.abt-us .story-text-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.abt-us .story-para {
  font-size: 18px;
  line-height: 1.8;
  color: #2e3545;
  letter-spacing: 0.01em;
}

.abt-us .story-para .sp-accent {
  color: #628064;
  font-weight: 600;
}

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

.abt-us .val-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 3px 4px -1px rgba(60, 70, 99, 0.05);
  border-top: 3px solid #A5BCB2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s ease-out, transform 0.15s cubic-bezier(0.4, 0, 0.6, 1);
}

.abt-us .val-card:hover {
  box-shadow: 0 10px 52px -1px rgba(60, 70, 99, 0.14);
  transform: translateY(-3px);
}

.abt-us .val-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-us .val-icon svg {
  width: 28px;
  height: 28px;
}

.abt-us .val-name {
  font-size: 18px;
  line-height: 1.5;
  color: #3C4663;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.abt-us .val-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  letter-spacing: 0.01em;
}

.abt-us .team-block {
  background: #3C4663;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.abt-us .team-dots-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.abt-us .team-dots-bg span {
  position: absolute;
  border-radius: 48px;
  background: rgba(165, 188, 178, 0.06);
}

.abt-us .team-dots-bg span:nth-child(1) {
  width: 9px;
  height: 9px;
  top: 15%;
  left: 8%;
}

.abt-us .team-dots-bg span:nth-child(2) {
  width: 5px;
  height: 5px;
  top: 40%;
  left: 22%;
  background: rgba(165, 188, 178, 0.09);
}

.abt-us .team-dots-bg span:nth-child(3) {
  width: 14px;
  height: 14px;
  top: 70%;
  left: 5%;
}

.abt-us .team-dots-bg span:nth-child(4) {
  width: 7px;
  height: 7px;
  top: 25%;
  right: 12%;
}

.abt-us .team-dots-bg span:nth-child(5) {
  width: 11px;
  height: 11px;
  top: 60%;
  right: 6%;
  background: rgba(165, 188, 178, 0.04);
}

.abt-us .team-dots-bg span:nth-child(6) {
  width: 4px;
  height: 4px;
  top: 85%;
  right: 25%;
  background: rgba(165, 188, 178, 0.11);
}

.abt-us .team-dots-bg span:nth-child(7) {
  width: 18px;
  height: 18px;
  top: 10%;
  left: 45%;
  background: rgba(165, 188, 178, 0.04);
}

.abt-us .team-dots-bg span:nth-child(8) {
  width: 6px;
  height: 6px;
  top: 55%;
  left: 60%;
}

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

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

.abt-us .team-heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.abt-us .team-eyebrow {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #A5BCB2;
  text-transform: uppercase;
  font-weight: 600;
}

.abt-us .team-heading {
  font-size: 44px;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.abt-us .team-heading .dot-acc {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #628064;
  margin-left: 6px;
  vertical-align: middle;
  margin-bottom: 6px;
}

.abt-us .team-sub {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.70);
  max-width: 420px;
  letter-spacing: 0.01em;
}

.abt-us .team-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #A5BCB2;
  text-decoration: none;
  border: 1.5px solid rgba(165, 188, 178, 0.4);
  border-radius: 7px;
  padding: 12px 24px;
  letter-spacing: 0.02em;
  transition: background 0.18s ease-out, color 0.15s ease-out, border-color 0.15s ease-out, transform 0.13s cubic-bezier(0.4, 0, 0.6, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

.abt-us .team-cta-link:hover {
  background: rgba(165, 188, 178, 0.12);
  color: #ffffff;
  border-color: #A5BCB2;
  transform: scale(1.04);
}

.abt-us .team-cta-link:focus-visible {
  outline: 2px solid #A5BCB2;
  outline-offset: 3px;
}

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

.abt-us .team-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(165, 188, 178, 0.15);
  display: flex;
  flex-direction: column;
  box-shadow: 0 7px 14px -1px rgba(60, 70, 99, 0.10);
  transition: box-shadow 0.2s ease-out, transform 0.16s cubic-bezier(0.4, 0, 0.6, 1);
}

.abt-us .team-card:hover {
  box-shadow: 0 10px 52px -1px rgba(60, 70, 99, 0.14);
  transform: translateY(-4px);
}

.abt-us .team-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.abt-us .team-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.abt-us .team-card-name {
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.abt-us .team-card-role {
  font-size: 16px;
  color: #A5BCB2;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.abt-us .team-card-note {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.01em;
  margin-top: 6px;
}

.abt-us .team-card-spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: rgba(165, 188, 178, 0.85);
  margin-top: 12px;
}

.abt-us .spec-dot {
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background: #628064;
  flex-shrink: 0;
}

.abt-us .team-wide-card {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 300px 1fr;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(98, 128, 100, 0.12);
  border: 1px solid rgba(165, 188, 178, 0.2);
  box-shadow: 0 7px 14px -1px rgba(60, 70, 99, 0.10);
  transition: box-shadow 0.2s ease-out;
}

.abt-us .team-wide-card:hover {
  box-shadow: 0 10px 52px -1px rgba(60, 70, 99, 0.14);
}

.abt-us .team-wide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  min-height: 220px;
}

.abt-us .team-wide-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.abt-us .wide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #A5BCB2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.abt-us .wide-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 48px;
  background: #628064;
}

.abt-us .wide-name {
  font-size: 32px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.abt-us .wide-role {
  font-size: 18px;
  color: #A5BCB2;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.abt-us .wide-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.01em;
  max-width: 520px;
}

.abt-us .wide-spec-list {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.abt-us .wide-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: rgba(165, 188, 178, 0.85);
}

.abt-us .wide-spec-item .spec-dot {
  background: #628064;
}

.abt-us .prog-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #628064;
  text-decoration: none;
  border: 1.5px solid #628064;
  border-radius: 7px;
  padding: 12px 24px;
  letter-spacing: 0.02em;
  margin-top: 6px;
  align-self: flex-start;
  transition: background 0.17s ease-out, color 0.14s ease-out, transform 0.13s cubic-bezier(0.4, 0, 0.6, 1);
}

.abt-us .prog-link-btn:hover {
  background: #628064;
  color: #ffffff;
  transform: scale(1.04);
}

.abt-us .prog-link-btn:focus-visible {
  outline: 2px solid #628064;
  outline-offset: 3px;
}

.abt-us .shake-anim {
  animation: gentle-shake 6s 2s infinite;
}

@keyframes gentle-shake {

  0%,
  88%,
  100% {
    transform: translateX(0);
  }

  90% {
    transform: translateX(-3px);
  }

  92% {
    transform: translateX(3px);
  }

  94% {
    transform: translateX(-2px);
  }

  96% {
    transform: translateX(2px);
  }

  98% {
    transform: translateX(0);
  }
}

.abt-us .load-scale {
  animation: scale-settle 0.22s cubic-bezier(0.4, 0, 0.6, 1) both;
}

@keyframes scale-settle {
  from {
    transform: scale(0.95);
    opacity: 0.7;
  }

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

@media (max-width: 1024px) {
  .abt-us .title-block {
    grid-template-columns: 1fr 320px;
  }

  .abt-us .title-h1 {
    font-size: 44px;
  }

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

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

  .abt-us .team-wide-card {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .abt-us .title-block {
    grid-template-columns: 1fr;
  }

  .abt-us .title-img-col {
    display: none;
  }

  .abt-us .title-text-col {
    padding: 80px 24px 80px 24px;
  }

  .abt-us .title-h1 {
    font-size: 44px;
  }

  .abt-us .title-meta-row {
    gap: 24px;
  }

  .abt-us .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .abt-us .story-label-col {
    position: static;
  }

  .abt-us .story-para-group {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .abt-us .story-values-row {
    grid-template-columns: 1fr 1fr;
  }

  .abt-us .team-inner {
    padding: 0 24px;
  }

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

  .abt-us .team-wide-card {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .abt-us .team-wide-img {
    height: 220px;
  }

  .abt-us .team-wide-body {
    padding: 24px;
  }

  .abt-us .team-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .abt-us .wide-name {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .abt-us .title-h1 {
    font-size: 32px;
  }

  .abt-us .story-values-row {
    grid-template-columns: 1fr;
  }

  .abt-us .team-heading {
    font-size: 32px;
  }

  .abt-us .story-heading {
    font-size: 32px;
  }

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

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

.lnch .lnch-max {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

::selection {
  background: linear-gradient(90deg, #3C4663, #628064);
  color: #fff;
}

.lnch .reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 0.22s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

.lnch .reveal-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slideInRight 0.22s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

.lnch .delay-1 {
  animation-delay: 0.12s;
}

.lnch .delay-2 {
  animation-delay: 0.18s;
}

.lnch .delay-3 {
  animation-delay: 0.22s;
}

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

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

.lnch .dot-accent {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #628064;
  border-radius: 48px;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.lnch .span-accent {
  color: #628064;
}

.lnch .tb {
  padding: 80px 0 40px;
  position: relative;
  background: #fff;
}

.lnch .tb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.lnch .tb-text {
  position: relative;
  padding: 40px;
  border: 1.5px solid #A5BCB2;
  border-radius: 12px;
}

.lnch .tb-text::before {
  content: '';
  position: absolute;
  top: -1.5px;
  left: -1.5px;
  width: 28px;
  height: 28px;
  border-top: 3px solid #3C4663;
  border-left: 3px solid #3C4663;
  border-radius: 7px 0 0 0;
}

.lnch .tb-text::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  right: -1.5px;
  width: 28px;
  height: 28px;
  border-bottom: 3px solid #628064;
  border-right: 3px solid #628064;
  border-radius: 0 0 12px 0;
}

.lnch .tb-eyebrow {
  font-size: 16px;
  color: #628064;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  line-height: 1.5;
}

.lnch .tb-h1 {
  font-size: 62px;
  line-height: 1.1;
  color: #3C4663;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.lnch .tb-counter-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.lnch .tb-count-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lnch .tb-count-num {
  font-size: 32px;
  line-height: 1.1;
  color: #3C4663;
  letter-spacing: 0.01em;
}

.lnch .tb-count-label {
  font-size: 16px;
  color: #628064;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.lnch .tb-divider {
  width: 1.5px;
  height: 40px;
  background: #A5BCB2;
  border-radius: 48px;
}

.lnch .tb-desc {
  font-size: 18px;
  line-height: 1.5;
  color: #3C4663;
  letter-spacing: 0.01em;
}

.lnch .tb-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 52px -1px rgba(60, 70, 99, 0.14);
}

.lnch .tb-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(60, 70, 99, 0.55), transparent);
  pointer-events: none;
}

.lnch .tb-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.lnch .tb-img-bracket {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  border-radius: 0 7px 0 0;
  z-index: 2;
}

.lnch .tb-img-bracket-bl {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 24px;
  height: 24px;
  border-bottom: 2.5px solid #A5BCB2;
  border-left: 2.5px solid #A5BCB2;
  border-radius: 0 0 0 7px;
  z-index: 2;
}

.lnch .div-curve-1 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.lnch .sits {
  background: #f4f6f2;
  padding: 80px 0;
  position: relative;
}

.lnch .sits-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(60, 70, 99, 0.06) 100%);
  pointer-events: none;
}

.lnch .sits-head {
  text-align: center;
  margin-bottom: 40px;
}

.lnch .sits-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #3C4663;
  letter-spacing: 0.01em;
}

.lnch .sits-sub {
  font-size: 18px;
  color: #628064;
  line-height: 1.5;
  margin-top: 12px;
  letter-spacing: 0.01em;
}

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

.lnch .sit-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 7px 14px -1px rgba(98, 128, 100, 0.10);
  border-top: 2px solid #A5BCB2;
  transition: box-shadow 0.18s ease-out, transform 0.15s ease-out;
}

.lnch .sit-card:hover {
  box-shadow: 0 10px 52px -1px rgba(60, 70, 99, 0.14);
  transform: translateY(-3px);
}

.lnch .sit-icon {
  width: 44px;
  height: 44px;
  background: #3C4663;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 7px 14px -1px rgba(60, 70, 99, 0.10);
}

.lnch .sit-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #A5BCB2;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lnch .sit-label {
  font-size: 18px;
  color: #3C4663;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}

.lnch .sit-text {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.lnch .div-curve-2 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.lnch .who {
  background: #fff;
  padding: 80px 0;
}

.lnch .who-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: start;
}

.lnch .who-img-col {
  position: relative;
}

.lnch .who-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 7px 14px -1px rgba(60, 70, 99, 0.10);
}

.lnch .who-badge {
  position: absolute;
  bottom: 24px;
  right: -12px;
  background: #3C4663;
  color: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 0 10px 52px -1px rgba(60, 70, 99, 0.14);
  max-width: 180px;
}

.lnch .who-badge strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  color: #A5BCB2;
}

.lnch .who-text-col {
  padding-top: 12px;
}

.lnch .who-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #3C4663;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

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

.lnch .who-p {
  font-size: 16px;
  color: #3C4663;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.lnch .who-profiles {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lnch .who-profile {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 7px;
  background: #f4f6f2;
  transition: background 0.16s ease-out;
}

.lnch .who-profile:hover {
  background: #e8ede9;
}

.lnch .who-profile-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: #628064;
  border-radius: 48px;
  margin-top: 6px;
}

.lnch .who-profile-text {
  font-size: 16px;
  color: #3C4663;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.lnch .div-curve-3 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.lnch .evid {
  background: #3C4663;
  padding: 80px 0;
  position: relative;
}

.lnch .evid-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(60, 70, 99, 0.5) 100%);
  pointer-events: none;
}

.lnch .evid-inner {
  position: relative;
  z-index: 1;
}

.lnch .evid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.lnch .evid-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0.01em;
}

.lnch .evid-desc {
  font-size: 18px;
  color: #A5BCB2;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.lnch .evid-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lnch .evid-metric {
  background: rgba(165, 188, 178, 0.10);
  border-radius: 12px;
  padding: 24px;
  border-top: 2px solid rgba(165, 188, 178, 0.25);
  text-align: center;
  transition: background 0.18s ease-out;
}

.lnch .evid-metric:hover {
  background: rgba(165, 188, 178, 0.18);
}

.lnch .evid-num {
  font-size: 44px;
  line-height: 1.1;
  color: #A5BCB2;
  letter-spacing: 0.01em;
  display: block;
}

.lnch .evid-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-top: 6px;
}

.lnch .evid-img-strip {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.lnch .evid-img-main {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 52px -1px rgba(60, 70, 99, 0.14);
}

.lnch .evid-img-side {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 7px 14px -1px rgba(60, 70, 99, 0.10);
}

.lnch .div-curve-4 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.lnch .ready {
  background: #f4f6f2;
  padding: 80px 0;
  position: relative;
}

.lnch .ready-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(98, 128, 100, 0.07) 100%);
  pointer-events: none;
}

.lnch .ready-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 40px;
  align-items: start;
}

.lnch .ready-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #3C4663;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.lnch .ready-intro {
  font-size: 18px;
  color: #3C4663;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.lnch .ready-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lnch .ready-item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 3px 4px -1px rgba(60, 70, 99, 0.05);
  transition: box-shadow 0.15s ease-out;
}

.lnch .ready-item:hover {
  box-shadow: 0 7px 14px -1px rgba(60, 70, 99, 0.10);
}

.lnch .ready-num {
  min-width: 28px;
  height: 28px;
  background: #628064;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  line-height: 1.1;
}

.lnch .ready-item-text {
  font-size: 16px;
  color: #3C4663;
  line-height: 1.5;
  letter-spacing: 0.01em;
  padding-top: 4px;
}

.lnch .ready-aside {
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #A5BCB2;
  box-shadow: 0 7px 14px -1px rgba(98, 128, 100, 0.10);
  position: sticky;
  top: 24px;
}

.lnch .ready-aside-head {
  font-size: 18px;
  color: #3C4663;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.lnch .ready-aside-note {
  font-size: 16px;
  color: #628064;
  line-height: 1.8;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.lnch .ready-cta {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #3C4663;
  border-radius: 48px;
  font-size: 16px;
  color: #3C4663;
  background: transparent;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-decoration: none;
  transition: background 0.18s ease-out, color 0.18s ease-out, transform 0.15s ease-out;
  cursor: pointer;
}

.lnch .ready-cta:hover {
  background: #3C4663;
  color: #fff;
  transform: scale(1.04);
}

.lnch .ready-cta:focus {
  outline: 2px solid #628064;
  outline-offset: 3px;
}

.lnch .ready-cta:active {
  box-shadow: inset 0 2px 6px rgba(60, 70, 99, 0.18);
}

.lnch .div-curve-5 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.lnch .ctx {
  background: #fff;
  padding: 80px 0 40px;
}

.lnch .ctx-head {
  text-align: center;
  margin-bottom: 40px;
}

.lnch .ctx-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #3C4663;
  letter-spacing: 0.01em;
}

.lnch .ctx-sub {
  font-size: 18px;
  color: #628064;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-top: 12px;
}

.lnch .ctx-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.lnch .ctx-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 7px 14px -1px rgba(60, 70, 99, 0.10);
}

.lnch .ctx-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.lnch .ctx-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lnch .ctx-card {
  background: #f4f6f2;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 3px 4px -1px rgba(60, 70, 99, 0.05);
  transition: box-shadow 0.16s ease-out;
}

.lnch .ctx-card:hover {
  box-shadow: 0 7px 14px -1px rgba(98, 128, 100, 0.10);
}

.lnch .ctx-card-label {
  font-size: 16px;
  color: #628064;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.lnch .ctx-card-text {
  font-size: 16px;
  color: #3C4663;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.lnch .ctx-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lnch .ctx-quote {
  background: #3C4663;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 7px 14px -1px rgba(60, 70, 99, 0.10);
}

.lnch .ctx-quote-text {
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-style: italic;
}

.lnch .ctx-quote-name {
  margin-top: 12px;
  font-size: 16px;
  color: #A5BCB2;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.lnch .ctx-contact {
  background: #f4f6f2;
  border-radius: 12px;
  padding: 24px;
  border: 1.5px solid #A5BCB2;
}

.lnch .ctx-contact-label {
  font-size: 16px;
  color: #628064;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.lnch .ctx-contact-link {
  display: block;
  font-size: 16px;
  color: #3C4663;
  line-height: 1.8;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.15s ease-out;
}

.lnch .ctx-contact-link:hover {
  color: #628064;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .lnch .tb-h1 {
    font-size: 44px;
  }

  .lnch .sits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lnch .evid-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .lnch .ctx-layout {
    grid-template-columns: 1fr 1fr;
  }

  .lnch .ctx-img-wrap {
    display: none;
  }
}

@media (max-width: 768px) {
  .lnch .tb-grid {
    grid-template-columns: 1fr;
  }

  .lnch .tb-h1 {
    font-size: 32px;
  }

  .lnch .sits-grid {
    grid-template-columns: 1fr;
  }

  .lnch .who-grid {
    grid-template-columns: 1fr;
  }

  .lnch .who-badge {
    right: 12px;
  }

  .lnch .evid-top {
    grid-template-columns: 1fr;
  }

  .lnch .evid-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .lnch .evid-img-strip {
    grid-template-columns: 1fr;
  }

  .lnch .evid-img-side {
    display: none;
  }

  .lnch .ready-grid {
    grid-template-columns: 1fr;
  }

  .lnch .ctx-layout {
    grid-template-columns: 1fr;
  }

  .lnch .ctx-img-wrap {
    display: none;
  }

  .lnch .who-cols {
    grid-template-columns: 1fr;
  }

  .lnch .tb-text {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .lnch .tb-h1 {
    font-size: 32px;
  }

  .lnch .sits-h2,
  .lnch .who-h2,
  .lnch .evid-h2,
  .lnch .ready-h2,
  .lnch .ctx-h2 {
    font-size: 32px;
  }

  .lnch .evid-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .lnch .tb-counter-row {
    flex-wrap: wrap;
  }
}

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

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

.success-page .icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(98, 128, 100, 0.10) 0%, rgba(165, 188, 178, 0.18) 100%);
  border: 2px solid #628064;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  box-shadow: 0 7px 14px -1px rgba(60, 70, 99, 0.10);
}

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

.success-page .success-heading {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #3C4663;
  margin: 0 0 24px;
}

.success-page .success-heading .accent {
  color: #628064;
}

.success-page .success-text {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #3C4663;
  margin: 0 0 40px;
}

.success-page .divider-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #628064, #A5BCB2);
  border-radius: 7px;
  margin: 0 auto 40px;
}

.success-page .info-block {
  background: linear-gradient(160deg, rgba(165, 188, 178, 0.12) 0%, rgba(98, 128, 100, 0.06) 100%);
  border: 1px solid rgba(98, 128, 100, 0.22);
  border-radius: 12px;
  padding: 24px 40px;
  margin-bottom: 40px;
  box-shadow: 0 3px 4px -1px rgba(60, 70, 99, 0.05);
}

.success-page .info-block .info-label {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #628064;
  margin: 0 0 6px;
}

.success-page .info-block .info-value {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #3C4663;
  margin: 0;
}

.success-page .back-btn {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #628064;
  border: 2px solid #628064;
  border-radius: 7px;
  padding: 12px 40px;
  text-decoration: none;
  background: transparent;
  transition: background 0.18s ease-out, color 0.15s ease-out, transform 0.14s cubic-bezier(0.4, 0, 0.6, 1), box-shadow 0.18s ease-out;
  box-shadow: 0 3px 4px -1px rgba(60, 70, 99, 0.05);
}

.success-page .back-btn:hover {
  background: #628064;
  color: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 7px 14px -1px rgba(60, 70, 99, 0.10);
}

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

.success-page .back-btn:active {
  box-shadow: inset 0 2px 6px rgba(60, 70, 99, 0.14);
  transform: scale(0.99);
}

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

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

  .success-page .info-block {
    padding: 24px;
  }

  .success-page .back-btn {
    width: 100%;
    text-align: center;
  }
}