body {
  word-break: break-word;
  overflow-wrap: anywhere;
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

.page-header {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #DADFD9 55%, #c8d4c7 100%);
  border-bottom: 3px solid #CCBE3D;
  box-shadow: 0 5px 14px 0 rgba(204, 190, 61, 0.09);
  font-family: 'Merriweather', Georgia, serif;
  overflow: hidden;
}

.page-header::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(54, 181, 160, 0.10) 100%);
  pointer-events: none;
}

.header-top-strip {
  background: #36B5A0;
  padding: 4px 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.header-contact-item {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.1s ease-out;
}

.header-contact-item:hover,
.header-contact-item:focus {
  color: #CCBE3D;
  outline: none;
}

.header-contact-item:focus-visible {
  outline: 2px dashed #CCBE3D;
  outline-offset: 2px;
  border-radius: 3px;
}

.header-body-plate {
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand-pod {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.brand-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 72px;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 2px 6px 0 rgba(204, 190, 61, 0.07);
  padding: 8px;
}

.brand-logo-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-name-text {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  color: #1e2a1e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.brand-tagline {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.2;
  color: #36B5A0;
  letter-spacing: 0.06em;
  text-align: center;
}

.nav-left-deck {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 4px 8px;
}

.nav-right-deck {
  grid-column: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 4px 8px;
}

.nav-link {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  line-height: 1.55;
  color: #1e2a1e;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 3px;
  letter-spacing: 0.03em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.12s linear, background-color 0.12s linear;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: #36B5A0;
  background-color: rgba(54, 181, 160, 0.07);
  border-bottom-color: #36B5A0;
}

.nav-link:focus-visible {
  outline: 2px dashed #36B5A0;
  outline-offset: 2px;
}

.nav-link.active {
  color: #CCBE3D;
  border-bottom-color: #CCBE3D;
}

.header-action-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.header-action-row {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px 24px;
  display: flex;
  justify-content: center;
}

.header-enrol-link {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: #1e2a1e;
  text-decoration: none;
  padding: 12px 24px;
  border: 3px solid #CCBE3D;
  border-radius: 3px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: border-color 0.1s ease-out, color 0.1s ease-out;
}

.header-enrol-link:hover {
  border-color: #36B5A0;
  color: #36B5A0;
}

.header-enrol-link:focus-visible {
  outline: 2px dashed #CCBE3D;
  outline-offset: 3px;
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .header-body-plate {
    padding: 24px 24px;
    gap: 12px;
  }

  .header-action-row {
    padding: 0 24px 24px;
  }
}

@media (max-width: 768px) {
  .header-body-plate {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 24px 24px 12px;
    justify-items: center;
    gap: 12px;
  }

  .brand-pod {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-left-deck {
    grid-column: 1;
    grid-row: 2;
    justify-content: center;
  }

  .nav-right-deck {
    grid-column: 1;
    grid-row: 3;
    justify-content: center;
  }

  .header-top-strip {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
}

@media (max-width: 320px) {
  .header-body-plate {
    padding: 12px 12px 8px;
  }

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

  .header-action-row {
    padding: 0 12px 12px;
  }
}

.page-footer {
  background: linear-gradient(170deg, #1e2a1e 0%, #243024 100%);
  font-family: 'Merriweather', Georgia, serif;
  border-top: 3px solid #36B5A0;
  box-shadow: 0 10px 52px 0 rgba(54, 181, 160, 0.13);
}

.footer-main-deck {
  max-width: 1500px;
  margin: 0 auto;
  padding: 48px 48px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.footer-block-heading {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #CCBE3D;
  margin: 0 0 12px 0;
}

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

.footer-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 72px;
  border: 1px solid #DADFD9;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 2px 6px 0 rgba(54, 181, 160, 0.07);
  padding: 8px;
}

.footer-logo-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-brand-label {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand-sub {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.55;
  color: #DADFD9;
  text-align: center;
}

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

.footer-nav-list li {
  display: block;
}

.footer-nav-link {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  line-height: 1.55;
  color: #DADFD9;
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 4px 0;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: color 0.09s ease-out, border-bottom-color 0.09s ease-out;
}

.footer-nav-link:hover {
  color: #36B5A0;
  border-bottom-color: #36B5A0;
}

.footer-nav-link:focus-visible {
  outline: 2px dashed #36B5A0;
  outline-offset: 2px;
  border-radius: 3px;
}

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

.footer-contact-label {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  line-height: 1.55;
  color: #DADFD9;
  letter-spacing: 0.03em;
}

.footer-contact-link {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  line-height: 1.55;
  color: #DADFD9;
  text-decoration: none;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  transition: color 0.09s ease-out, border-bottom-color 0.09s ease-out;
}

.footer-contact-link:hover {
  color: #CCBE3D;
  border-bottom-color: #CCBE3D;
}

.footer-contact-link:focus-visible {
  outline: 2px dashed #CCBE3D;
  outline-offset: 2px;
  border-radius: 3px;
}

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

.footer-trust-item {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  line-height: 1.55;
  color: #DADFD9;
  letter-spacing: 0.03em;
  padding: 4px 0;
  border-bottom: 1px solid rgba(218, 223, 217, 0.15);
}

.footer-trust-item:last-child {
  border-bottom: none;
}

.footer-bottom-strip {
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 48px;
  border-top: 1px solid rgba(218, 223, 217, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  line-height: 1.2;
  color: #DADFD9;
  letter-spacing: 0.04em;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal-link {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  line-height: 1.2;
  color: #DADFD9;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: color 0.09s ease-out, border-bottom-color 0.09s ease-out;
}

.footer-legal-link:hover {
  color: #CCBE3D;
  border-bottom-color: #CCBE3D;
}

.footer-legal-link:focus-visible {
  outline: 2px dashed #CCBE3D;
  outline-offset: 2px;
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .footer-main-deck {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px 24px;
    gap: 24px;
  }

  .footer-brand-pod {
    grid-column: 1 / -1;
  }

  .footer-bottom-strip {
    padding: 24px 24px;
  }
}

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

  .footer-brand-pod {
    grid-column: 1;
  }

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

@media (max-width: 320px) {
  .footer-main-deck {
    padding: 24px 12px 12px;
    gap: 12px;
  }

  .footer-bottom-strip {
    padding: 12px 12px;
  }
}

.cookie-bar {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 1200;
  max-width: 480px;
  background: #ffffff;
  border: 2px solid #CCBE3D;
  border-radius: 3px;
  box-shadow: 0 10px 52px 0 rgba(204, 190, 61, 0.13);
  padding: 24px;
  font-family: 'Merriweather', Georgia, serif;
  display: none;
}

.cookie-bar-description {
  font-size: 13px;
  line-height: 1.55;
  color: #1e2a1e;
  margin: 0 0 12px 0;
}

.cookie-bar-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-bar-accept {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #1e2a1e;
  background: transparent;
  border: 3px solid #36B5A0;
  border-radius: 3px;
  padding: 8px 24px;
  cursor: pointer;
  min-height: 44px;
  transition: border-color 0.1s ease-out, color 0.1s ease-out;
}

.cookie-bar-accept:hover {
  border-color: #CCBE3D;
  color: #36B5A0;
}

.cookie-bar-accept:focus-visible {
  outline: 2px dashed #36B5A0;
  outline-offset: 2px;
}

.cookie-bar-decline {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #1e2a1e;
  background: transparent;
  border: 3px solid #DADFD9;
  border-radius: 3px;
  padding: 8px 24px;
  cursor: pointer;
  min-height: 44px;
  transition: border-color 0.1s ease-out, color 0.1s ease-out;
}

.cookie-bar-decline:hover {
  border-color: #CCBE3D;
  color: #36B5A0;
}

.cookie-bar-decline:focus-visible {
  outline: 2px dashed #DADFD9;
  outline-offset: 2px;
}

.policy-frame {
  max-width: 1500px;
  margin: 0 auto;
  padding: 48px 24px;
}

.policy-frame h1 {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #1b2a28;
  margin-bottom: 24px;
  margin-top: 0;
}

.policy-frame h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1b2a28;
  margin-top: 48px;
  margin-bottom: 24px;
}

.policy-frame h3 {
  font-size: 28px;
  line-height: 1.2;
  color: #2a3a38;
  margin-top: 48px;
  margin-bottom: 12px;
}

.policy-frame h4 {
  font-size: 21px;
  line-height: 1.55;
  color: #2a3a38;
  margin-top: 24px;
  margin-bottom: 12px;
}

.policy-frame h5 {
  font-size: 21px;
  line-height: 1.55;
  color: #36B5A0;
  margin-top: 24px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.policy-frame h6 {
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #36B5A0;
  margin-top: 24px;
  margin-bottom: 8px;
}

.policy-frame p {
  font-size: 21px;
  line-height: 1.8;
  color: #2c3a38;
  margin-top: 0;
  margin-bottom: 24px;
}

.policy-frame ul,
.policy-frame ol {
  font-size: 21px;
  line-height: 1.8;
  color: #2c3a38;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 24px;
}

.policy-frame ul {
  list-style-type: disc;
}

.policy-frame ol {
  list-style-type: decimal;
}

.policy-frame li {
  margin-bottom: 8px;
  padding-left: 8px;
}

.policy-frame li:last-child {
  margin-bottom: 0;
}

.policy-frame ul ul,
.policy-frame ol ol,
.policy-frame ul ol,
.policy-frame ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.policy-frame strong,
.policy-frame b {
  font-weight: 700;
  color: #1b2a28;
}

.policy-frame em,
.policy-frame i {
  font-style: italic;
  color: #2c3a38;
}

.policy-frame table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
  font-size: 21px;
  line-height: 1.55;
  box-shadow: 0 5px 14px 0 rgba(54, 181, 160, 0.09);
  border-radius: 3px;
  overflow: hidden;
}

.policy-frame thead {
  background-color: #36B5A0;
}

.policy-frame thead th {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  text-align: left;
  border: none;
}

.policy-frame tbody tr {
  border-bottom: 1px solid #DADFD9;
  transition: background-color 0.1s ease-out;
}

.policy-frame tbody tr:last-child {
  border-bottom: none;
}

.policy-frame tbody tr:hover {
  background-color: rgba(204, 190, 61, 0.06);
}

.policy-frame td {
  padding: 12px 24px;
  color: #2c3a38;
  vertical-align: top;
  border: none;
}

.policy-frame tbody th {
  padding: 12px 24px;
  color: #1b2a28;
  font-weight: 700;
  text-align: left;
  border: none;
  vertical-align: top;
}

.policy-frame div {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .policy-frame {
    padding: 48px 12px;
  }

  .policy-frame h1 {
    font-size: 38px;
  }

  .policy-frame h2 {
    font-size: 28px;
    margin-top: 48px;
  }

  .policy-frame h3 {
    font-size: 21px;
    margin-top: 24px;
  }

  .policy-frame h4,
  .policy-frame h5 {
    font-size: 21px;
  }

  .policy-frame p,
  .policy-frame ul,
  .policy-frame ol {
    font-size: 21px;
  }

  .policy-frame table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 13px;
  }

  .policy-frame thead th,
  .policy-frame td,
  .policy-frame tbody th {
    padding: 12px;
  }
}

@media (max-width: 320px) {
  .policy-frame {
    padding: 24px 8px;
  }

  .policy-frame h1 {
    font-size: 28px;
  }

  .policy-frame h2 {
    font-size: 21px;
  }

  .policy-frame h3,
  .policy-frame h4,
  .policy-frame h5 {
    font-size: 21px;
  }

  .policy-frame p,
  .policy-frame ul,
  .policy-frame ol {
    font-size: 21px;
    line-height: 1.55;
  }
}

.learning-program {
  max-width: 100%;
  overflow-x: hidden;
}

.learning-program .program-detail-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

.learning-program .divider-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 0;
}

.learning-program .divider-accent .line-short {
  width: 48px;
  height: 2px;
  background: #CCBE3D;
  border-radius: 3px;
}

.learning-program .divider-accent .line-short.secondary {
  background: #36B5A0;
}

.learning-program .divider-shape {
  width: 8px;
  height: 8px;
  background: #CCBE3D;
  transform: rotate(45deg);
  border-radius: 3px;
}

/* ===================== TITLE BLOCK ===================== */
.learning-program .title-band {
  background: linear-gradient(247deg, #36B5A0 0%, #DADFD9 40%, #CCBE3D 80%, #fff 100%);
  padding: 96px 0 48px;
  position: relative;
}

.learning-program .title-band-grid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.learning-program .title-text-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 3px solid #CCBE3D;
  padding-right: 48px;
}

.learning-program .program-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #2a2a2a;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.learning-program .program-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #36B5A0;
  border-radius: 50%;
  flex-shrink: 0;
}

.learning-program .program-h1 {
  font-size: 50px;
  line-height: 1.2;
  color: #1b1b1b;
  font-weight: 700;
  margin: 0;
}

.learning-program .program-h1 .word-accent {
  background: #CCBE3D;
  padding: 0 8px;
  border-radius: 3px;
  display: inline;
}

.learning-program .title-desc {
  font-size: 21px;
  line-height: 1.55;
  color: #2e2e2e;
  margin: 0;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.55);
  border-left: 3px solid #36B5A0;
  border-radius: 3px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.learning-program .title-image-column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.learning-program .title-image-deco {
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(204, 190, 61, 0.35);
  border-radius: 32px;
  pointer-events: none;
  z-index: 0;
}

.learning-program .title-image-deco::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(54, 181, 160, 0.25);
  border-radius: 32px;
  pointer-events: none;
}

.learning-program .title-image-frame {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 10px 52px 0 rgba(54, 181, 160, 0.13);
}

.learning-program .title-image-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.15) contrast(1.05);
  transition: filter 0.12s ease-out, transform 0.15s ease-out;
}

.learning-program .title-image-frame:hover img {
  filter: saturate(0.5) contrast(1.1) sepia(0.3);
}

.learning-program .title-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(54, 181, 160, 0);
  transition: background 0.12s ease-out;
  pointer-events: none;
  border-radius: 32px;
}

.learning-program .title-image-frame:hover::after {
  background: rgba(54, 181, 160, 0.18);
}

/* ===================== PROGRAM DETAIL BLOCK ===================== */
.learning-program .program-body {
  background: #fff;
  padding: 96px 0 48px;
}

.learning-program .program-body-grid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 280px;
  gap: 24px;
  align-items: start;
}

.learning-program .body-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.learning-program .body-col.accent-right {
  border-right: 3px solid #36B5A0;
  padding-right: 24px;
}

.learning-program .col-heading {
  font-size: 28px;
  line-height: 1.2;
  color: #1b1b1b;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.learning-program .col-heading::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #CCBE3D;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.learning-program .first-para {
  font-size: 13px;
  line-height: 1.8;
  color: #222;
  margin: 0;
  background: rgba(204, 190, 61, 0.10);
  border: 1px solid rgba(204, 190, 61, 0.22);
  border-radius: 3px;
  padding: 12px;
}

.learning-program .body-para {
  font-size: 13px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.learning-program .module-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.learning-program .module-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: start;
  font-size: 13px;
  line-height: 1.55;
  color: #2e2e2e;
}

.learning-program .module-list li .list-icon {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: #36B5A0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.learning-program .module-list li .list-icon svg {
  width: 10px;
  height: 10px;
  fill: #fff;
}

.learning-program .stat-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: linear-gradient(247deg, #36B5A0 0%, #CCBE3D 100%);
  border-radius: 32px;
  box-shadow: 0 5px 14px 0 rgba(54, 181, 160, 0.09);
}

.learning-program .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.learning-program .stat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.learning-program .stat-number {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.learning-program .stat-label {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.06em;
}

/* Far right accent column */
.learning-program .far-right-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: #DADFD9;
  border-radius: 32px;
  border-right: 3px solid #CCBE3D;
  box-shadow: 0 2px 6px 0 rgba(204, 190, 61, 0.07);
}

.learning-program .far-right-col .col-heading {
  font-size: 21px;
}

.learning-program .instructor-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.learning-program .instructor-portrait-wrap {
  position: relative;
  width: 80px;
  height: 107px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 6px 0 rgba(54, 181, 160, 0.07);
  transition: box-shadow 0.1s ease-out;
}

.learning-program .instructor-portrait-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 3px;
  transition: border-color 0.1s ease-out;
  pointer-events: none;
}

.learning-program .instructor-portrait-wrap:hover::after {
  border-color: #36B5A0;
}

.learning-program .instructor-portrait-wrap img {
  width: 80px;
  height: 107px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.learning-program .instructor-name {
  font-size: 13px;
  font-weight: 700;
  color: #1b1b1b;
  line-height: 1.2;
  margin: 0;
}

.learning-program .instructor-role {
  font-size: 13px;
  color: #444;
  line-height: 1.55;
  margin: 0;
}

.learning-program .instructor-bio {
  font-size: 13px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.learning-program .enrol-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1b1b1b;
  background: transparent;
  border: 3px solid #CCBE3D;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.1s ease-out, color 0.08s linear;
  width: 100%;
}

.learning-program .enrol-btn:hover {
  border-color: #36B5A0;
  color: #1b1b1b;
}

.learning-program .enrol-btn:focus {
  outline: 2px solid #36B5A0;
  outline-offset: 3px;
}

.learning-program .enrol-btn:active {
  border-color: #1b1b1b;
}

/* Testimonials strip */
.learning-program .testimonial-strip {
  background: #DADFD9;
  padding: 48px 0;
  border-top: 2px solid rgba(204, 190, 61, 0.3);
  border-bottom: 2px solid rgba(54, 181, 160, 0.2);
}

.learning-program .testimonial-strip-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.learning-program .testimonial-card {
  background: #fff;
  border-radius: 32px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 5px 14px 0 rgba(204, 190, 61, 0.09);
  border-right: 3px solid #CCBE3D;
}

.learning-program .testimonial-person {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.learning-program .t-portrait-wrap {
  width: 80px;
  height: 107px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  transition: box-shadow 0.1s ease-out;
}

.learning-program .t-portrait-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 3px;
  transition: border-color 0.1s ease-out;
  pointer-events: none;
}

.learning-program .t-portrait-wrap:hover::after {
  border-color: #CCBE3D;
}

.learning-program .t-portrait-wrap img {
  width: 80px;
  height: 107px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.learning-program .t-person-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.learning-program .t-name {
  font-size: 13px;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0;
}

.learning-program .t-role {
  font-size: 13px;
  color: #555;
  margin: 0;
  line-height: 1.55;
}

.learning-program .t-quote {
  font-size: 13px;
  line-height: 1.8;
  color: #2e2e2e;
  margin: 0;
  padding: 12px;
  background: rgba(218, 223, 217, 0.5);
  border-radius: 3px;
  border-left: 3px solid #36B5A0;
  border-bottom: 1px solid rgba(54, 181, 160, 0.15);
}

/* FAQ Section */
.learning-program .faq-section {
  background: #fff;
  padding: 96px 0;
}

.learning-program .faq-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

.learning-program .faq-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px;
}

.learning-program .faq-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1b1b1b;
  font-weight: 700;
  margin: 0;
}

.learning-program .faq-heading .word-accent {
  background: #36B5A0;
  color: #fff;
  padding: 0 8px;
  border-radius: 3px;
}

.learning-program .faq-sub {
  font-size: 13px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

.learning-program .faq-contact-note {
  font-size: 13px;
  line-height: 1.55;
  color: #333;
  padding: 12px;
  border: 2px solid #CCBE3D;
  border-radius: 3px;
  margin: 0;
}

.learning-program .faq-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.learning-program .faq-item {
  border: 1px solid rgba(218, 223, 217, 0.8);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 6px 0 rgba(204, 190, 61, 0.07);
}

.learning-program .faq-item summary {
  font-size: 13px;
  font-weight: 700;
  color: #1b1b1b;
  padding: 12px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  transition: background 0.08s linear;
  line-height: 1.55;
}

.learning-program .faq-item summary::-webkit-details-marker {
  display: none;
}

.learning-program .faq-item summary::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #36B5A0;
  border-bottom: 2px solid #36B5A0;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.1s ease-out;
}

.learning-program .faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.learning-program .faq-item summary:hover {
  background: rgba(218, 223, 217, 0.4);
}

.learning-program .faq-answer {
  font-size: 13px;
  line-height: 1.8;
  color: #333;
  padding: 12px 24px 24px;
  margin: 0;
  background: rgba(218, 223, 217, 0.2);
  border-top: 1px solid rgba(218, 223, 217, 0.6);
}

/* Slow background zoom on title band */
@keyframes bgZoom {
  from {
    background-size: 100% 100%;
  }

  to {
    background-size: 115% 115%;
  }
}

.learning-program .title-band {
  animation: bgZoom 14s ease-out alternate infinite;
  background-size: 100% 100%;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .learning-program .title-band-grid {
    grid-template-columns: 1fr 320px;
    gap: 24px;
  }

  .learning-program .title-text-column {
    padding-right: 24px;
  }

  .learning-program .program-h1 {
    font-size: 38px;
  }

  .learning-program .program-body-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .learning-program .body-col.accent-right {
    border-right: none;
    border-bottom: 2px solid #36B5A0;
    padding-right: 0;
    padding-bottom: 24px;
  }

  .learning-program .far-right-col {
    grid-column: 1 / -1;
  }

  .learning-program .testimonial-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .learning-program .faq-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .learning-program .faq-left {
    position: static;
  }
}

@media (max-width: 768px) {
  .learning-program .title-band {
    padding: 48px 0 24px;
  }

  .learning-program .title-band-grid {
    grid-template-columns: 1fr;
  }

  .learning-program .title-text-column {
    border-right: none;
    border-bottom: 2px solid #CCBE3D;
    padding-right: 0;
    padding-bottom: 24px;
  }

  .learning-program .program-h1 {
    font-size: 28px;
  }

  .learning-program .title-desc {
    font-size: 13px;
  }

  .learning-program .program-body {
    padding: 48px 0 24px;
  }

  .learning-program .program-body-grid {
    grid-template-columns: 1fr;
  }

  .learning-program .body-col.accent-right {
    border-right: none;
    border-bottom: 2px solid #36B5A0;
    padding-right: 0;
    padding-bottom: 24px;
  }

  .learning-program .testimonial-strip-inner {
    grid-template-columns: 1fr;
  }

  .learning-program .faq-heading {
    font-size: 28px;
  }
}

@media (max-width: 320px) {

  .learning-program .program-detail-wrap,
  .learning-program .title-band-grid,
  .learning-program .program-body-grid,
  .learning-program .testimonial-strip-inner,
  .learning-program .faq-inner {
    padding: 0 8px;
  }

  .learning-program .program-h1 {
    font-size: 21px;
  }
}

.contact-us {
  background: #ffffff;
  overflow-x: clip;
  position: relative;
}

.contact-us .reach-strip {
  background: linear-gradient(247deg, #CCBE3D 0%, #ffffff 100%);
  padding: 96px 24px 48px;
  position: relative;
  overflow: hidden;
}

.contact-us .reach-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #36B5A0, #CCBE3D, #36B5A0);
}

.contact-us .reach-strip-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 2px solid transparent;
  animation: edge-glow 4s ease-in-out infinite;
}

@keyframes edge-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(204, 190, 61, 0);
  }

  50% {
    box-shadow: inset 0 0 32px 0 rgba(204, 190, 61, 0.08);
  }
}

.contact-us .reach-strip-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 48px;
}

.contact-us .reach-text-col {
  flex: 1 1 0;
  min-width: 0;
}

.contact-us .reach-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #36B5A0;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.contact-us .reach-heading {
  font-size: 50px;
  line-height: 1.2;
  color: #1e2a1e;
  margin: 0 0 24px;
  font-weight: 700;
}

.contact-us .reach-heading .accent-word {
  background: #CCBE3D;
  padding: 0 8px;
  border-radius: 3px;
  display: inline;
}

.contact-us .reach-heading .dot-accent {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #36B5A0;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -4px;
}

.contact-us .reach-opening {
  font-size: 21px;
  line-height: 1.55;
  color: #2a3a2a;
  background: rgba(54, 181, 160, 0.07);
  border-left: 3px solid #36B5A0;
  border-top: 1px solid rgba(54, 181, 160, 0.18);
  border-right: 1px solid rgba(54, 181, 160, 0.18);
  border-bottom: 1px solid rgba(54, 181, 160, 0.18);
  padding: 12px 24px;
  border-radius: 3px;
  margin: 0 0 24px;
}

.contact-us .reach-body {
  font-size: 21px;
  line-height: 1.55;
  color: #2a3a2a;
  margin: 0 0 24px;
}

.contact-us .contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-us .contact-details-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border: 1.5px solid #DADFD9;
  border-top: 3px solid #CCBE3D;
  border-radius: 3px;
  padding: 12px;
  box-shadow: 0 2px 6px 0 rgba(204, 190, 61, 0.07);
  transition: box-shadow 0.12s ease-out, border-top-color 0.1s linear;
}

.contact-us .contact-details-list li:hover {
  box-shadow: 0 5px 14px 0 rgba(204, 190, 61, 0.09);
  border-top-color: #36B5A0;
}

.contact-us .detail-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  background: linear-gradient(247deg, #CCBE3D 0%, #36B5A0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us .detail-icon svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

.contact-us .detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-us .detail-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #36B5A0;
  text-transform: uppercase;
}

.contact-us .detail-value {
  font-size: 13px;
  line-height: 1.55;
  color: #1e2a1e;
  word-break: break-word;
}

.contact-us .detail-value a {
  color: #1e2a1e;
  text-decoration: underline;
  text-decoration-color: rgba(54, 181, 160, 0.4);
  text-underline-offset: 3px;
  transition: color 0.1s linear, text-decoration-color 0.1s linear;
}

.contact-us .detail-value a:hover {
  color: #36B5A0;
  text-decoration-color: #36B5A0;
}

.contact-us .reach-stat-col {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-us .stat-card-split {
  background: #ffffff;
  border-radius: 3px;
  border: 1.5px solid #DADFD9;
  box-shadow: 0 5px 14px 0 rgba(54, 181, 160, 0.09);
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.contact-us .stat-zone {
  flex: 1 1 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid #DADFD9;
}

.contact-us .stat-zone:last-child {
  border-right: none;
}

.contact-us .stat-number {
  font-size: 28px;
  line-height: 1.2;
  color: #CCBE3D;
  font-weight: 700;
}

.contact-us .stat-desc {
  font-size: 13px;
  line-height: 1.55;
  color: #4a5a4a;
}

.contact-us .reach-zigzag {
  width: 100%;
  height: 24px;
  position: relative;
  overflow: hidden;
}

.contact-us .reach-zigzag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-us .form-panel {
  background: #ffffff;
  padding: 48px 24px 96px;
  position: relative;
}

.contact-us .form-panel-checked {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(218, 223, 217, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 223, 217, 0.25) 1px, transparent 1px);
  background-size: 24px 24px;
}

.contact-us .form-panel-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.contact-us .form-side-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-us .form-side-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #CCBE3D;
  text-transform: uppercase;
  display: block;
}

.contact-us .form-side-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1e2a1e;
  margin: 0;
  font-weight: 700;
}

.contact-us .form-side-heading .dot-accent {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #CCBE3D;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -4px;
}

.contact-us .form-side-body {
  font-size: 21px;
  line-height: 1.55;
  color: #2a3a2a;
  margin: 0;
}

.contact-us .form-side-note {
  font-size: 13px;
  line-height: 1.8;
  color: #4a5a4a;
  background: rgba(204, 190, 61, 0.07);
  border: 1px solid rgba(204, 190, 61, 0.25);
  border-radius: 3px;
  padding: 12px;
}

.contact-us .form-side-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-us .form-step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.contact-us .step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  background: #36B5A0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us .step-text {
  font-size: 13px;
  line-height: 1.55;
  color: #2a3a2a;
}

.contact-us .contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #ffffff;
  border: 1.5px solid #DADFD9;
  border-top: 3px solid #36B5A0;
  border-radius: 3px;
  padding: 48px;
  box-shadow: 0 10px 52px 0 rgba(54, 181, 160, 0.13);
}

.contact-us .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-us .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-us .field-group.full {
  grid-column: 1 / -1;
}

.contact-us .field-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #2a3a2a;
  text-transform: uppercase;
}

.contact-us .field-label .req-mark {
  color: #36B5A0;
  margin-left: 4px;
}

.contact-us .field-input {
  font-size: 21px;
  line-height: 1.55;
  color: #1e2a1e;
  background: #ffffff;
  border: 1.5px solid #DADFD9;
  border-radius: 3px;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 1px 4px 0 rgba(54, 181, 160, 0.06);
  transition: border-color 0.1s ease-out;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.contact-us .field-input::placeholder {
  color: rgba(42, 58, 42, 0.38);
}

.contact-us .field-input:focus {
  border-color: #36B5A0;
  box-shadow: inset 0 1px 4px 0 rgba(54, 181, 160, 0.1);
}

.contact-us .field-select {
  font-size: 21px;
  line-height: 1.55;
  color: #1e2a1e;
  background: #ffffff;
  border: 1.5px solid #DADFD9;
  border-radius: 3px;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 1px 4px 0 rgba(54, 181, 160, 0.06);
  transition: border-color 0.1s ease-out;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%2336B5A0' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.contact-us .field-select:focus {
  border-color: #36B5A0;
}

.contact-us .radio-group-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #2a3a2a;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.contact-us .radio-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-us .radio-option {
  position: relative;
  display: flex;
}

.contact-us .radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}

.contact-us .radio-option-label {
  font-size: 13px;
  line-height: 1.55;
  color: #2a3a2a;
  border: 2px solid #DADFD9;
  border-radius: 3px;
  padding: 8px 12px;
  cursor: pointer;
  transition: border-color 0.1s ease-out, background 0.1s ease-out;
  display: block;
  white-space: nowrap;
}

.contact-us .radio-option input[type="radio"]:checked+.radio-option-label {
  border-color: #36B5A0;
  background: rgba(54, 181, 160, 0.08);
  color: #1e2a1e;
}

.contact-us .radio-option input[type="radio"]:focus+.radio-option-label {
  outline: 2px solid #CCBE3D;
  outline-offset: 2px;
}

.contact-us .radio-option:hover .radio-option-label {
  border-color: #36B5A0;
}

.contact-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(218, 223, 217, 0.3);
  border-radius: 3px;
  border: 1px solid #DADFD9;
}

.contact-us .privacy-checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #36B5A0;
  cursor: pointer;
  margin-top: 2px;
}

.contact-us .privacy-text {
  font-size: 13px;
  line-height: 1.8;
  color: #4a5a4a;
}

.contact-us .privacy-text a {
  color: #36B5A0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.1s linear;
}

.contact-us .privacy-text a:hover {
  color: #CCBE3D;
}

.contact-us .submit-btn {
  font-size: 21px;
  line-height: 1.2;
  color: #1e2a1e;
  background: transparent;
  border: 3px solid #CCBE3D;
  border-radius: 3px;
  padding: 12px 48px;
  cursor: pointer;
  align-self: flex-start;
  transition: border-color 0.12s ease-out, color 0.12s ease-out;
  letter-spacing: 0.04em;
}

.contact-us .submit-btn:hover {
  border-color: #36B5A0;
  color: #36B5A0;
}

.contact-us .submit-btn:focus {
  outline: 2px solid #CCBE3D;
  outline-offset: 3px;
}

.contact-us .submit-btn:active {
  border-color: #2a9a87;
}

.contact-us .form-divider {
  border: none;
  border-top: 2px solid #36B5A0;
  margin: 0;
  opacity: 0.4;
}

@media (max-width: 1024px) {
  .contact-us .reach-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .contact-us .reach-stat-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .contact-us .stat-card-split {
    max-width: 400px;
  }

  .contact-us .form-panel-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-us .reach-heading {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .contact-us .reach-strip {
    padding: 48px 24px 24px;
  }

  .contact-us .reach-heading {
    font-size: 28px;
  }

  .contact-us .contact-details-list {
    grid-template-columns: 1fr;
  }

  .contact-us .contact-form {
    padding: 24px;
  }

  .contact-us .field-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-us .radio-options {
    gap: 8px;
  }

  .contact-us .form-panel {
    padding: 24px 24px 48px;
  }

  .contact-us .submit-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 320px) {
  .contact-us .reach-heading {
    font-size: 21px;
  }

  .contact-us .form-side-heading {
    font-size: 28px;
  }

  .contact-us .radio-options {
    flex-direction: column;
  }
}

.about-us-page {
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}

.about-us-page .divider-line {
  height: 2px;
  background: linear-gradient(247deg, #CCBE3D, transparent);
  border: none;
  margin: 0;
}

.about-us-page .split-block {
  position: relative;
  padding: 96px 48px;
}

.about-us-page .split-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(247deg, #CCBE3D 0%, #36B5A0 55%, #DADFD9 100%);
  z-index: 0;
}

.about-us-page .split-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(247deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.06) 18px,
      rgba(255, 255, 255, 0.06) 20px);
  z-index: 1;
  pointer-events: none;
}

.about-us-page .split-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 96px;
  max-width: 1500px;
}

.about-us-page .split-text-col {
  flex: 1 1 0;
}

.about-us-page .split-image-col {
  flex: 0 0 340px;
}

.about-us-page .split-overline {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #2a2a2a;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.about-us-page .split-heading {
  font-size: 50px;
  line-height: 1.2;
  color: #1b1b1b;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.about-us-page .split-heading .word-accent {
  display: inline;
  background: rgba(255, 255, 255, 0.55);
  padding: 0 8px;
  border-radius: 3px;
}

.about-us-page .split-heading .dot-accent {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #36B5A0;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
}

.about-us-page .split-lead {
  font-size: 21px;
  line-height: 1.55;
  color: #1b1b1b;
  margin: 0 0 24px 0;
  background: rgba(255, 255, 255, 0.3);
  border-left: 4px solid #36B5A0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 24px;
  border-radius: 3px;
}

.about-us-page .split-body {
  font-size: 13px;
  line-height: 1.8;
  color: #222;
  margin: 0;
}

.about-us-page .portrait-frame {
  width: 340px;
  height: 437px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 52px 0 rgba(204, 190, 61, 0.13);
  position: relative;
}

.about-us-page .portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transition: filter 0.12s ease-out;
}

.about-us-page .portrait-frame:hover img {
  filter: grayscale(0%);
}

.about-us-page .portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(54, 181, 160, 0.38) 100%);
  opacity: 0;
  transition: opacity 0.12s ease-out;
  pointer-events: none;
}

.about-us-page .portrait-frame:hover::after {
  opacity: 1;
}

.about-us-page .portrait-caption {
  margin-top: 8px;
  font-size: 13px;
  color: #2a2a2a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-us-page .portrait-caption strong {
  display: block;
  font-size: 21px;
  letter-spacing: 0;
  text-transform: none;
  color: #1b1b1b;
  line-height: 1.2;
}

.about-us-page .geo-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.about-us-page .geo-circles span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(204, 190, 61, 0.09);
}

.about-us-page .geo-circles span:nth-child(1) {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -60px;
}

.about-us-page .geo-circles span:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 40px;
  left: 80px;
  border-color: rgba(54, 181, 160, 0.08);
}

.about-us-page .geo-circles span:nth-child(3) {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(218, 223, 217, 0.07);
}

.about-us-page .story-block {
  position: relative;
  background: #fff;
  padding: 96px 48px;
}

.about-us-page .story-block .geo-circles-b {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-us-page .story-block .geo-circles-b span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(54, 181, 160, 0.07);
}

.about-us-page .story-block .geo-circles-b span:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -60px;
  left: -80px;
}

.about-us-page .story-block .geo-circles-b span:nth-child(2) {
  width: 500px;
  height: 500px;
  bottom: -120px;
  right: -100px;
  border-color: rgba(204, 190, 61, 0.06);
}

.about-us-page .story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1500px;
}

.about-us-page .story-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-us-page .story-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-us-page .story-label {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #36B5A0;
}

.about-us-page .story-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1b1b1b;
  margin: 0;
}

.about-us-page .story-heading .dot-accent {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #CCBE3D;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
}

.about-us-page .story-open {
  font-size: 21px;
  line-height: 1.55;
  color: #1b1b1b;
  margin: 0;
  background: #f4f6f4;
  border-top: 3px solid #CCBE3D;
  border-right: 1px solid #DADFD9;
  padding: 12px 24px;
  border-radius: 3px;
}

.about-us-page .story-body {
  font-size: 13px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.about-us-page .pull-quote {
  font-size: 28px;
  line-height: 1.55;
  color: #1b1b1b;
  border-left: 4px solid #CCBE3D;
  border-bottom: 1px solid #DADFD9;
  padding: 24px 24px 24px 24px;
  margin: 0;
  background: linear-gradient(247deg, rgba(204, 190, 61, 0.07), transparent);
  border-radius: 3px;
}

.about-us-page .story-image-wrap {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 10px 52px 0 rgba(54, 181, 160, 0.13);
  position: relative;
}

.about-us-page .story-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: filter 0.1s ease-out;
}

.about-us-page .story-image-wrap:hover img {
  filter: brightness(0.92);
}

.about-us-page .story-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 48px 0 rgba(54, 181, 160, 0.22);
  opacity: 0;
  transition: opacity 0.1s ease-out;
  pointer-events: none;
  border-radius: 3px;
}

.about-us-page .story-image-wrap:hover::after {
  opacity: 1;
}

.about-us-page .comparison-block {
  position: relative;
  padding: 96px 48px;
  background: linear-gradient(247deg, #DADFD9 0%, #fff 60%);
}

.about-us-page .comparison-block .geo-circles-c {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-us-page .comparison-block .geo-circles-c span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(204, 190, 61, 0.08);
}

.about-us-page .comparison-block .geo-circles-c span:nth-child(1) {
  width: 360px;
  height: 360px;
  top: 30px;
  right: 200px;
}

.about-us-page .comparison-block .geo-circles-c span:nth-child(2) {
  width: 180px;
  height: 180px;
  bottom: 60px;
  left: 300px;
  border-color: rgba(54, 181, 160, 0.07);
}

.about-us-page .comparison-inner {
  position: relative;
  z-index: 2;
  max-width: 1500px;
}

.about-us-page .comparison-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 96px;
  margin-bottom: 48px;
}

.about-us-page .comparison-text-col {
  flex: 1 1 0;
}

.about-us-page .comparison-label {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #CCBE3D;
  display: block;
  margin-bottom: 12px;
}

.about-us-page .comparison-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1b1b1b;
  margin: 0 0 24px 0;
}

.about-us-page .comparison-heading .dot-accent {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #36B5A0;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
}

.about-us-page .comparison-open {
  font-size: 21px;
  line-height: 1.55;
  color: #1b1b1b;
  margin: 0 0 24px 0;
  background: rgba(54, 181, 160, 0.07);
  border-top: 3px solid #36B5A0;
  padding: 12px 24px;
  border-radius: 3px;
}

.about-us-page .comparison-body {
  font-size: 13px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 24px 0;
}

.about-us-page .list-pairs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-us-page .list-pairs li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: #333;
}

.about-us-page .list-pairs li .pair-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 3px;
  background: #CCBE3D;
}

.about-us-page .list-pairs li:nth-child(even) .pair-icon {
  background: #36B5A0;
}

.about-us-page .comparison-image-col {
  flex: 0 0 380px;
}

.about-us-page .comparison-image-wrap {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 10px 52px 0 rgba(204, 190, 61, 0.13);
  position: relative;
}

.about-us-page .comparison-image-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: filter 0.1s ease-out;
}

.about-us-page .comparison-image-wrap:hover img {
  filter: brightness(0.9) contrast(1.05);
}

.about-us-page .comparison-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px 0 rgba(204, 190, 61, 0.25);
  opacity: 0;
  transition: opacity 0.12s ease-out;
  pointer-events: none;
  border-radius: 3px;
}

.about-us-page .comparison-image-wrap:hover::after {
  opacity: 1;
}

.about-us-page .options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.about-us-page .option-card {
  border: 2px solid #DADFD9;
  border-radius: 3px;
  padding: 24px;
  background: #fff;
  position: relative;
  box-shadow: 0 2px 6px 0 rgba(204, 190, 61, 0.07);
  transition: box-shadow 0.1s ease-out, border-color 0.1s ease-out;
}

.about-us-page .option-card:hover {
  box-shadow: 0 5px 14px 0 rgba(204, 190, 61, 0.09);
  border-color: #CCBE3D;
}

.about-us-page .option-card.recommended {
  border: 3px solid #36B5A0;
  background: linear-gradient(247deg, rgba(54, 181, 160, 0.06), #fff 80%);
  box-shadow: 0 5px 14px 0 rgba(54, 181, 160, 0.09);
}

.about-us-page .option-card.recommended:hover {
  box-shadow: 0 10px 52px 0 rgba(54, 181, 160, 0.13);
}

.about-us-page .option-badge {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #36B5A0;
  color: #fff;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.about-us-page .option-name {
  font-size: 21px;
  line-height: 1.2;
  color: #1b1b1b;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.about-us-page .option-name .dot-accent {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
}

.about-us-page .option-card:nth-child(1) .option-name .dot-accent {
  background: #CCBE3D;
}

.about-us-page .option-card:nth-child(2) .option-name .dot-accent {
  background: #36B5A0;
}

.about-us-page .option-card:nth-child(3) .option-name .dot-accent {
  background: #DADFD9;
}

.about-us-page .option-desc {
  font-size: 13px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

.about-us-page .edge-glow-block {
  position: relative;
}

@keyframes about-edge-glow {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 0.3;
  }
}

.about-us-page .edge-glow-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(204, 190, 61, 0.25);
  pointer-events: none;
  animation: about-edge-glow 4s ease-out infinite;
  z-index: 3;
}

@media (max-width: 1024px) {
  .about-us-page .split-inner {
    gap: 48px;
  }

  .about-us-page .split-image-col {
    flex: 0 0 260px;
  }

  .about-us-page .portrait-frame {
    width: 260px;
    height: 334px;
  }

  .about-us-page .story-grid {
    gap: 48px;
  }

  .about-us-page .comparison-top {
    gap: 48px;
  }

  .about-us-page .comparison-image-col {
    flex: 0 0 280px;
  }

  .about-us-page .options-grid {
    gap: 12px;
  }

  .about-us-page .split-heading {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .about-us-page .split-block {
    padding: 48px 24px;
  }

  .about-us-page .split-inner {
    flex-direction: column;
    gap: 24px;
  }

  .about-us-page .split-image-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .about-us-page .portrait-frame {
    width: 100%;
    height: 320px;
  }

  .about-us-page .split-heading {
    font-size: 38px;
  }

  .about-us-page .story-block {
    padding: 48px 24px;
  }

  .about-us-page .story-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-us-page .comparison-block {
    padding: 48px 24px;
  }

  .about-us-page .comparison-top {
    flex-direction: column;
    gap: 24px;
  }

  .about-us-page .comparison-image-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .about-us-page .options-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-us-page .list-pairs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  .about-us-page .split-heading {
    font-size: 28px;
  }

  .about-us-page .story-heading {
    font-size: 28px;
  }

  .about-us-page .comparison-heading {
    font-size: 28px;
  }

  .about-us-page .pull-quote {
    font-size: 21px;
  }

  .about-us-page .split-block,
  .about-us-page .story-block,
  .about-us-page .comparison-block {
    padding: 48px 12px;
  }
}

.services-page {
  background: #ffffff;
  overflow-x: clip;
  position: relative;
}

.services-page .pulse-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.services-page .pulse-ring {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(204, 190, 61, 0.18);
  animation: ring-expand 5s ease-out infinite;
  width: 200px;
  height: 200px;
}

.services-page .pulse-ring:nth-child(2) {
  animation-delay: 1.6s;
  border-color: rgba(54, 181, 160, 0.12);
}

.services-page .pulse-ring:nth-child(3) {
  animation-delay: 3.2s;
  border-color: rgba(204, 190, 61, 0.09);
}

@keyframes ring-expand {
  0% {
    width: 200px;
    height: 200px;
    opacity: 0.7;
  }

  100% {
    width: 900px;
    height: 900px;
    opacity: 0;
  }
}

.services-page .outlined-shape {
  position: absolute;
  right: -80px;
  top: 60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2px solid rgba(204, 190, 61, 0.13);
  pointer-events: none;
  z-index: 0;
}

.services-page .outlined-shape-inner {
  position: absolute;
  right: 20px;
  top: 130px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1.5px solid rgba(54, 181, 160, 0.11);
  pointer-events: none;
  z-index: 0;
}

.services-page .page-frame {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.services-page .label-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(204, 190, 61, 0.12);
  border: 1.5px solid rgba(204, 190, 61, 0.38);
  border-radius: 32px;
  padding: 4px 12px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #5a5200;
  font-weight: 600;
  margin-bottom: 24px;
}

.services-page .title-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
}

.services-page .title-text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services-page .main-heading {
  font-size: 50px;
  line-height: 1.2;
  color: #1e1a00;
  margin: 0;
  position: relative;
}

.services-page .main-heading .accent-word {
  background: rgba(204, 190, 61, 0.28);
  border-radius: 3px;
  padding: 0 8px;
  display: inline;
}

.services-page .main-heading .dot-accent {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #36B5A0;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -4px;
}

.services-page .live-counter-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.services-page .counter-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services-page .counter-number {
  font-size: 38px;
  line-height: 1.2;
  color: #CCBE3D;
  font-weight: 700;
}

.services-page .counter-label {
  font-size: 13px;
  line-height: 1.55;
  color: #4a4500;
  letter-spacing: 0.05em;
}

.services-page .counter-divider {
  width: 1px;
  height: 48px;
  background: rgba(204, 190, 61, 0.3);
}

.services-page .opening-paragraph {
  font-size: 21px;
  line-height: 1.55;
  color: #2a2600;
  background: rgba(218, 223, 217, 0.35);
  border-left: 3px solid #36B5A0;
  border-radius: 3px;
  padding: 12px 24px;
  margin: 0;
}

.services-page .image-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-page .image-clip-wrapper {
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 8%, 92% 0, 100% 92%, 8% 100%);
  border-radius: 3px;
  box-shadow: 0 10px 52px 0 rgba(204, 190, 61, 0.13);
}

.services-page .image-clip-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.services-page .deco-badge {
  position: absolute;
  bottom: 24px;
  left: -12px;
  background: #CCBE3D;
  color: #1e1a00;
  border-radius: 3px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 5px 14px 0 rgba(204, 190, 61, 0.09);
  z-index: 2;
}

.services-page .services-grid-section {
  background: #f5f4ec;
  position: relative;
  padding: 96px 0;
}

.services-page .services-grid-section .outlined-shape-bg {
  position: absolute;
  left: -60px;
  bottom: 40px;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(54, 181, 160, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.services-page .grid-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.services-page .grid-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1e1a00;
  margin: 0;
  max-width: 560px;
}

.services-page .grid-heading .dot-accent {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CCBE3D;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -4px;
}

.services-page .grid-intro-text {
  font-size: 21px;
  line-height: 1.55;
  color: #3a3600;
  max-width: 480px;
  margin: 0;
}

.services-page .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.services-page .service-card {
  background: #ffffff;
  border-radius: 3px;
  padding: 24px;
  border: 2px solid transparent;
  box-shadow: 0 2px 6px 0 rgba(204, 190, 61, 0.07);
  transition: border-color 0.12s ease-out, box-shadow 0.1s ease-out;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.services-page .service-card:hover {
  border-color: #CCBE3D;
  box-shadow: 0 5px 14px 0 rgba(204, 190, 61, 0.09);
}

.services-page .service-card.featured {
  background: #1e1a00;
  border-color: #CCBE3D;
}

.services-page .service-card.featured .card-name {
  color: #CCBE3D;
}

.services-page .service-card.featured .card-description {
  color: #d4cf9a;
}

.services-page .service-card.featured .feature-item {
  color: #c8c38a;
}

.services-page .card-icon-shape {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background: rgba(204, 190, 61, 0.15);
  position: relative;
  flex-shrink: 0;
}

.services-page .service-card.featured .card-icon-shape {
  background: rgba(204, 190, 61, 0.25);
}

.services-page .card-icon-shape svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.services-page .card-name {
  font-size: 21px;
  line-height: 1.2;
  color: #1e1a00;
  margin: 0;
  font-weight: 700;
}

.services-page .card-description {
  font-size: 13px;
  line-height: 1.8;
  color: #3a3600;
  margin: 0;
}

.services-page .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-page .feature-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: #3a3600;
}

.services-page .feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #36B5A0;
  flex-shrink: 0;
  margin-top: 5px;
}

.services-page .service-card.featured .feature-dot {
  background: #CCBE3D;
}

.services-page .card-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(54, 181, 160, 0.12);
  border: 1px solid rgba(54, 181, 160, 0.3);
  border-radius: 32px;
  padding: 4px 12px;
  font-size: 13px;
  color: #1a5e54;
  letter-spacing: 0.04em;
  align-self: flex-start;
}

.services-page .service-card.featured .card-tag {
  background: rgba(204, 190, 61, 0.2);
  border-color: rgba(204, 190, 61, 0.4);
  color: #CCBE3D;
}

.services-page .experts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.services-page .expert-profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 3px;
  padding: 12px 24px;
  box-shadow: 0 2px 6px 0 rgba(54, 181, 160, 0.07);
  border: 1.5px solid rgba(218, 223, 217, 0.8);
}

.services-page .expert-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #CCBE3D;
}

.services-page .expert-photo img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.services-page .expert-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services-page .expert-name {
  font-size: 21px;
  line-height: 1.2;
  color: #1e1a00;
  margin: 0;
  font-weight: 700;
}

.services-page .expert-role {
  font-size: 13px;
  line-height: 1.55;
  color: #36B5A0;
  letter-spacing: 0.04em;
}

.services-page .expert-note {
  font-size: 13px;
  line-height: 1.55;
  color: #4a4500;
}

.services-page .cta-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #1e1a00;
  border-radius: 3px;
  padding: 24px 48px;
  margin-top: 48px;
  box-shadow: 0 10px 52px 0 rgba(204, 190, 61, 0.13);
}

.services-page .cta-strip-text {
  font-size: 28px;
  line-height: 1.2;
  color: #f5f0c0;
  margin: 0;
  font-weight: 700;
}

.services-page .cta-strip-sub {
  font-size: 13px;
  line-height: 1.55;
  color: #c8c38a;
  margin: 0;
  margin-top: 4px;
}

.services-page .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2.5px solid #CCBE3D;
  border-radius: 3px;
  background: transparent;
  color: #CCBE3D;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.1s linear, color 0.1s linear;
  white-space: nowrap;
}

.services-page .btn-primary:hover {
  border-color: #36B5A0;
  color: #36B5A0;
}

.services-page .btn-primary:focus {
  outline: 2px solid #36B5A0;
  outline-offset: 3px;
}

.services-page .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #36B5A0;
  border-radius: 3px;
  background: transparent;
  color: #36B5A0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.12s ease-out;
  white-space: nowrap;
}

.services-page .btn-secondary:hover {
  border-color: #CCBE3D;
  color: #CCBE3D;
}

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

@media (max-width: 1024px) {
  .services-page .title-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-page .image-col {
    order: -1;
  }

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

  .services-page .grid-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .services-page .cta-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .services-page .main-heading {
    font-size: 38px;
  }

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

  .services-page .experts-row {
    grid-template-columns: 1fr;
  }

  .services-page .live-counter-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .services-page .counter-divider {
    display: none;
  }

  .services-page .image-clip-wrapper img {
    height: 320px;
  }

  .services-page .cta-strip {
    padding: 24px;
  }

  .services-page .services-grid-section {
    padding: 48px 0;
  }
}

@media (max-width: 320px) {
  .services-page .main-heading {
    font-size: 28px;
  }

  .services-page .grid-heading {
    font-size: 28px;
  }

  .services-page .page-frame {
    padding: 0 12px;
  }
}

.base {
  background-color: #fff;
  color: #1b1b1b;
  overflow-x: hidden;
  position: relative;
}

.base .title-block {
  background-color: #1b2a28;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}

.base .title-block-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.base .title-text-column {
  flex: 1 1 55%;
  position: relative;
  z-index: 2;
}

.base .title-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #CCBE3D;
  border: 2px solid #CCBE3D;
  border-radius: 3px;
  padding: 4px 12px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.base .title-h1 {
  font-size: 50px;
  line-height: 1.2;
  color: #DADFD9;
  margin: 0 0 24px 0;
}

.base .title-h1 .accent-word {
  background: #CCBE3D;
  color: #1b2a28;
  padding: 0 8px;
  border-radius: 3px;
}

.base .title-description {
  font-size: 21px;
  line-height: 1.55;
  color: #a8b5a4;
  max-width: 520px;
}

.base .title-image-column {
  flex: 0 0 38%;
  position: relative;
}

.base .title-image-frame {
  border-radius: 32px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 5/7;
  box-shadow: 0 10px 52px 0 rgba(204, 190, 61, 0.13);
  position: relative;
}

.base .title-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(0px) brightness(0.88) saturate(0.85);
  transition: filter 0.12s ease-out;
}

.base .title-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(247deg, rgba(54, 181, 160, 0.18), transparent);
  border-radius: 32px;
  pointer-events: none;
}

.base .title-deco-line {
  position: absolute;
  left: 0;
  bottom: -24px;
  width: 80px;
  height: 4px;
  background: linear-gradient(247deg, #CCBE3D, transparent);
  border-radius: 3px;
}

.base .title-deco-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #36B5A0;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes warmcool {
  0% {
    background-color: #1b2a28;
  }

  40% {
    background-color: #1e2e20;
  }

  70% {
    background-color: #1a2c2e;
  }

  100% {
    background-color: #1b2a28;
  }
}

.base .title-block {
  animation: warmcool 9s ease-in-out infinite;
}

.base .value-section {
  padding: 96px 24px 48px 24px;
  background: linear-gradient(247deg, rgba(218, 223, 217, 0.38), #fff);
  position: relative;
}

.base .value-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.base .value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.base .value-anchor-text {
  font-size: 50px;
  line-height: 1.2;
  color: #DADFD9;
  font-weight: 900;
  letter-spacing: -0.02em;
  position: absolute;
  right: 24px;
  top: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.55;
}

.base .value-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #36B5A0;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.base .value-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1b2a28;
  margin: 0 0 24px 0;
  position: relative;
  z-index: 1;
}

.base .value-heading .accent-word {
  background: #CCBE3D;
  color: #1b2a28;
  padding: 0 8px;
  border-radius: 3px;
}

.base .value-opening {
  font-size: 21px;
  line-height: 1.55;
  color: #2d4a46;
  background: rgba(54, 181, 160, 0.08);
  border-left: 4px solid #36B5A0;
  border-right: 1px solid rgba(54, 181, 160, 0.2);
  border-top: 1px solid rgba(54, 181, 160, 0.12);
  border-bottom: 1px solid rgba(54, 181, 160, 0.12);
  padding: 12px 24px;
  border-radius: 3px;
  margin-bottom: 24px;
}

.base .value-card {
  background: #fff;
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 5px 14px 0 rgba(54, 181, 160, 0.09);
  border-right: 4px solid #CCBE3D;
  border-top: 1px solid rgba(218, 223, 217, 0.7);
  border-left: 1px solid rgba(218, 223, 217, 0.5);
  border-bottom: 1px solid rgba(218, 223, 217, 0.5);
  position: relative;
  transition: box-shadow 0.1s ease-out;
}

.base .value-card:hover {
  box-shadow: 0 10px 52px 0 rgba(54, 181, 160, 0.13);
}

.base .value-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  background: linear-gradient(247deg, #CCBE3D, rgba(204, 190, 61, 0.4));
  margin-bottom: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.base .value-card-icon svg {
  width: 20px;
  height: 20px;
}

.base .value-card-heading {
  font-size: 21px;
  line-height: 1.2;
  color: #1b2a28;
  margin: 0 0 8px 0;
}

.base .value-card-heading::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #36B5A0;
  margin-left: 6px;
  vertical-align: middle;
}

.base .value-card-text {
  font-size: 13px;
  line-height: 1.8;
  color: #3a5a55;
}

.base .value-image-row {
  margin-top: 48px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}

.base .value-image-frame {
  flex: 0 0 42%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 5px 14px 0 rgba(204, 190, 61, 0.09);
}

.base .value-image-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.1s linear;
}

.base .value-image-frame:hover img {
  filter: brightness(0.94) saturate(1.08);
}

.base .value-body-text {
  flex: 1 1 auto;
  font-size: 21px;
  line-height: 1.55;
  color: #2d4a46;
}

.base .value-body-text p {
  margin: 0 0 24px 0;
}

.base .value-body-text p:last-child {
  margin-bottom: 0;
}

.base .divider-text {
  text-align: center;
  position: relative;
  padding: 24px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  max-width: 1500px;
  margin: 0 auto;
}

.base .divider-text::before,
.base .divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(247deg, rgba(54, 181, 160, 0.25), rgba(218, 223, 217, 0.6));
}

.base .divider-text span {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: #36B5A0;
  text-transform: uppercase;
  white-space: nowrap;
}

.base .scale-section {
  padding: 48px 24px;
  background: #1b2a28;
  position: relative;
  overflow: hidden;
}

.base .scale-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(247deg, rgba(54, 181, 160, 0.12), transparent 60%);
  pointer-events: none;
}

.base .scale-inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.base .scale-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.base .scale-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #DADFD9;
  margin: 0;
}

.base .scale-heading .accent-word {
  background: #36B5A0;
  color: #fff;
  padding: 0 8px;
  border-radius: 3px;
}

.base .scale-sub {
  font-size: 21px;
  line-height: 1.55;
  color: #7aada6;
  max-width: 420px;
  text-align: right;
}

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

.base .metric-block {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 32px;
  padding: 24px;
  border-right: 4px solid rgba(204, 190, 61, 0.5);
  border-top: 1px solid rgba(218, 223, 217, 0.1);
  border-left: 1px solid rgba(218, 223, 217, 0.06);
  border-bottom: 1px solid rgba(218, 223, 217, 0.06);
  transition: background 0.12s ease-out;
}

.base .metric-block:hover {
  background: rgba(255, 255, 255, 0.07);
}

.base .metric-number {
  font-size: 50px;
  line-height: 1.2;
  color: #CCBE3D;
  display: block;
  margin-bottom: 4px;
}

.base .metric-label {
  font-size: 13px;
  line-height: 1.8;
  color: #DADFD9;
  letter-spacing: 0.06em;
  display: block;
}

.base .metric-detail {
  font-size: 13px;
  line-height: 1.55;
  color: #7aada6;
  margin-top: 8px;
  display: block;
}

.base .scale-image-strip {
  margin-top: 48px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  height: 220px;
  box-shadow: 0 10px 52px 0 rgba(204, 190, 61, 0.13);
}

.base .scale-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.7) saturate(0.8);
}

.base .scale-image-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(247deg, rgba(54, 181, 160, 0.35), rgba(27, 42, 40, 0.55));
  pointer-events: none;
}

.base .scale-image-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  font-size: 21px;
  line-height: 1.2;
  color: #DADFD9;
}

.base .divider-border {
  height: 3px;
  background: linear-gradient(247deg, #CCBE3D, rgba(54, 181, 160, 0.3), transparent);
  max-width: 1500px;
  margin: 0 auto;
}

.base .investment-section {
  padding: 48px 24px 96px 24px;
  background: #fff;
  position: relative;
}

.base .investment-inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

.base .investment-anchor {
  font-size: 50px;
  line-height: 1.2;
  color: rgba(218, 223, 217, 0.5);
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
}

.base .investment-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #CCBE3D;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.base .investment-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1b2a28;
  margin: 0 0 48px 0;
}

.base .investment-heading .accent-word {
  background: #CCBE3D;
  color: #1b2a28;
  padding: 0 8px;
  border-radius: 3px;
}

.base .investment-heading::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #36B5A0;
  margin-left: 8px;
  vertical-align: middle;
}

.base .investment-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.base .investment-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.base .investment-opening {
  font-size: 21px;
  line-height: 1.55;
  color: #2d4a46;
  background: rgba(204, 190, 61, 0.09);
  border-left: 4px solid #CCBE3D;
  border-right: 1px solid rgba(204, 190, 61, 0.2);
  border-top: 1px solid rgba(204, 190, 61, 0.12);
  border-bottom: 1px solid rgba(204, 190, 61, 0.12);
  padding: 12px 24px;
  border-radius: 3px;
}

.base .investment-body {
  font-size: 21px;
  line-height: 1.55;
  color: #3a5a55;
}

.base .investment-body p {
  margin: 0 0 24px 0;
}

.base .investment-body p:last-child {
  margin-bottom: 0;
}

.base .investment-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.base .investment-item-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.base .investment-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 3px;
  background: rgba(218, 223, 217, 0.22);
  border-right: 4px solid rgba(54, 181, 160, 0.4);
  border-top: 1px solid rgba(218, 223, 217, 0.5);
  border-left: 1px solid rgba(218, 223, 217, 0.3);
  border-bottom: 1px solid rgba(218, 223, 217, 0.3);
  transition: background 0.08s linear;
}

.base .investment-item:hover {
  background: rgba(54, 181, 160, 0.08);
}

.base .investment-item-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  background: linear-gradient(247deg, #36B5A0, rgba(54, 181, 160, 0.5));
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.base .investment-item-icon svg {
  width: 16px;
  height: 16px;
}

.base .investment-item-text {
  flex: 1;
}

.base .investment-item-title {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #1b2a28;
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.base .investment-item-desc {
  font-size: 13px;
  line-height: 1.8;
  color: #3a5a55;
}

.base .investment-cta-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.base .btn-primary {
  display: inline-block;
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1b2a28;
  background: transparent;
  border: 3px solid #CCBE3D;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.1s ease-out;
}

.base .btn-primary:hover {
  border-color: #36B5A0;
}

.base .btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #36B5A0;
  background: transparent;
  border: 3px solid #36B5A0;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.12s linear;
}

.base .btn-secondary:hover {
  border-color: #CCBE3D;
}

@media (max-width: 1024px) {
  .base .title-h1 {
    font-size: 38px;
  }

  .base .value-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .base .investment-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .base .scale-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .base .scale-sub {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .base .title-block-inner {
    flex-direction: column;
  }

  .base .title-image-column {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .base .title-h1 {
    font-size: 28px;
  }

  .base .value-grid {
    grid-template-columns: 1fr;
  }

  .base .value-image-row {
    flex-direction: column;
  }

  .base .value-image-frame {
    flex: 0 0 auto;
    width: 100%;
  }

  .base .scale-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .base .metric-number {
    font-size: 38px;
  }

  .base .investment-anchor {
    display: none;
  }

  .base .investment-heading {
    font-size: 28px;
  }

  .base .value-heading {
    font-size: 28px;
  }

  .base .scale-heading {
    font-size: 28px;
  }

  .base .value-anchor-text {
    display: none;
  }
}

@media (max-width: 320px) {
  .base .title-block {
    padding: 48px 12px;
  }

  .base .title-h1 {
    font-size: 21px;
  }

  .base .scale-metrics {
    grid-template-columns: 1fr;
  }

  .base .investment-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

.process .process__schema {
  display: none;
}

.process .page-band {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.process .dot-accent {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 32px;
  background: #CCBE3D;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.process .dot-accent.teal {
  background: #36B5A0;
}

.process .word-bg {
  background: #CCBE3D;
  color: #2a2a2a;
  padding: 0 8px;
  border-radius: 3px;
  display: inline;
}

.process .word-bg.teal {
  background: #36B5A0;
  color: #fff;
}

@keyframes process-reveal {
  0% {
    opacity: 0;
    transform: rotate(-1.5deg) translateY(18px);
  }

  100% {
    opacity: 1;
    transform: rotate(0deg) translateY(0);
  }
}

@keyframes reveal-up {
  0% {
    opacity: 0;
    transform: translateY(22px) rotate(0.8deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-16px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bar-fill {
  0% {
    width: 0;
  }

  100% {
    width: var(--bar-target);
  }
}

.process .title-band {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #fff;
  border-bottom: 2px solid #DADFD9;
}

.process .title-band .page-band {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.process .title-band .text-col {
  animation: process-reveal 0.55s ease-out both;
}

.process .title-band .image-col {
  position: relative;
  animation: process-reveal 0.65s 0.1s ease-out both;
}

.process .title-band .geo-corner {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 48px;
  height: 48px;
  pointer-events: none;
  overflow: hidden;
}

.process .title-band .geo-corner svg {
  display: block;
}

.process .title-band .geo-corner-bl {
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 32px;
  height: 32px;
  pointer-events: none;
  overflow: hidden;
}

.process .title-band .geo-corner-bl svg {
  display: block;
}

.process .title-band .label-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #36B5A0;
  border: 2px solid #36B5A0;
  border-radius: 3px;
  padding: 4px 12px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.process .title-band .page-heading {
  font-size: 50px;
  line-height: 1.2;
  color: #1e2320;
  margin: 0 0 24px 0;
}

.process .title-band .opening-paragraph {
  font-size: 21px;
  line-height: 1.55;
  color: #2e3530;
  background: #f2f4f0;
  border-left: 4px solid #CCBE3D;
  border-radius: 3px;
  padding: 12px 24px;
  margin: 0 0 24px 0;
}

.process .title-band .sub-paragraph {
  font-size: 21px;
  line-height: 1.55;
  color: #3a3f3c;
  margin: 0 0 24px 0;
}

.process .title-band .meta-pair {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 24px;
}

.process .title-band .meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.process .title-band .meta-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #7a8078;
  text-transform: uppercase;
}

.process .title-band .meta-value {
  font-size: 21px;
  color: #1e2320;
  font-weight: 700;
}

.process .title-band .img-frame {
  width: 100%;
  aspect-ratio: 7/9;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 10px 52px 0 rgba(204, 190, 61, 0.13);
  filter: grayscale(1) contrast(1.15);
}

.process .title-band .img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
}

.process .steps-band {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #f5f6f3;
}

.process .steps-band .band-label {
  font-size: 13px;
  letter-spacing: 0.13em;
  color: #36B5A0;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.process .steps-band .band-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1e2320;
  margin: 0 0 48px 0;
}

.process .steps-band .steps-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

.process .steps-band .steps-sidebar {
  position: sticky;
  top: 24px;
}

.process .steps-band .sidebar-image-wrap {
  width: 100%;
  aspect-ratio: 7/9;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 5px 14px 0 rgba(54, 181, 160, 0.09);
}

.process .steps-band .sidebar-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
}

.process .steps-band .sidebar-note {
  margin-top: 24px;
  background: #CCBE3D;
  border-radius: 3px;
  padding: 12px 24px;
}

.process .steps-band .sidebar-note p {
  font-size: 13px;
  line-height: 1.55;
  color: #1e2320;
  margin: 0;
}

.process .steps-band .steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process .steps-band .step-card {
  background: #fff;
  border-radius: 3px;
  border: 2px solid #DADFD9;
  padding: 24px;
  box-shadow: 0 2px 6px 0 rgba(204, 190, 61, 0.07);
  animation: reveal-up 0.45s ease-out both;
  transition: border-color 0.12s ease-out, box-shadow 0.1s linear;
  position: relative;
}

.process .steps-band .step-card:hover {
  border-color: #36B5A0;
  box-shadow: 0 5px 14px 0 rgba(54, 181, 160, 0.09);
}

.process .steps-band .step-card:nth-child(1) {
  animation-delay: 0.08s;
}

.process .steps-band .step-card:nth-child(2) {
  animation-delay: 0.14s;
}

.process .steps-band .step-card:nth-child(3) {
  animation-delay: 0.2s;
}

.process .steps-band .step-card:nth-child(4) {
  animation-delay: 0.26s;
}

.process .steps-band .step-card:nth-child(5) {
  animation-delay: 0.32s;
}

.process .steps-band .step-number {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #36B5A0;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.process .steps-band .step-heading {
  font-size: 21px;
  line-height: 1.2;
  color: #1e2320;
  margin: 0 0 12px 0;
}

.process .steps-band .step-body {
  font-size: 13px;
  line-height: 1.8;
  color: #3a3f3c;
  margin: 0 0 12px 0;
}

.process .steps-band .step-pairs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.process .steps-band .step-pair-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.process .steps-band .step-icon-box {
  width: 24px;
  height: 24px;
  border: 2px solid #CCBE3D;
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process .steps-band .step-icon-box svg {
  display: block;
}

.process .steps-band .step-pair-text {
  font-size: 13px;
  line-height: 1.55;
  color: #3a3f3c;
}

.process .steps-band .diamond-accent {
  position: absolute;
  top: -14px;
  right: 24px;
  width: 20px;
  height: 20px;
  background: #CCBE3D;
  transform: rotate(45deg);
  border-radius: 3px;
  pointer-events: none;
}

.process .steps-band .status-bar-wrap {
  margin-top: 12px;
}

.process .steps-band .status-bar-label {
  font-size: 13px;
  color: #7a8078;
  margin-bottom: 4px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.process .steps-band .status-bar-track {
  height: 8px;
  background: #DADFD9;
  border-radius: 32px;
  overflow: hidden;
}

.process .steps-band .status-bar-fill {
  height: 100%;
  border-radius: 32px;
  animation: bar-fill 0.7s 0.4s ease-out both;
}

.process .steps-band .fill-low {
  background: #36B5A0;
  --bar-target: 30%;
}

.process .steps-band .fill-mid {
  background: #CCBE3D;
  --bar-target: 60%;
}

.process .steps-band .fill-high {
  background: #2e7a6e;
  --bar-target: 90%;
}

.process .steps-band .bar-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process .dual-band {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
}

.process .dual-band .band-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1e2320;
  margin: 0 0 8px 0;
}

.process .dual-band .band-sub {
  font-size: 21px;
  line-height: 1.55;
  color: #3a3f3c;
  margin: 0 0 48px 0;
}

.process .dual-band .dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.process .dual-band .path-col {
  border-radius: 3px;
  padding: 24px;
  animation: fade-in-left 0.4s 0.1s ease-out both;
}

.process .dual-band .path-col.col-a {
  background: #f5f6f3;
  border: 2px solid #DADFD9;
}

.process .dual-band .path-col.col-b {
  background: #1e2320;
  border: 2px solid #1e2320;
}

.process .dual-band .path-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.process .dual-band .path-col.col-a .path-label {
  color: #36B5A0;
}

.process .dual-band .path-col.col-b .path-label {
  color: #CCBE3D;
}

.process .dual-band .path-heading {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 12px 0;
}

.process .dual-band .path-col.col-a .path-heading {
  color: #1e2320;
}

.process .dual-band .path-col.col-b .path-heading {
  color: #fff;
}

.process .dual-band .path-opening {
  font-size: 13px;
  line-height: 1.8;
  margin: 0 0 24px 0;
  padding: 12px;
  border-radius: 3px;
}

.process .dual-band .path-col.col-a .path-opening {
  color: #2e3530;
  background: #eaece8;
  border-left: 3px solid #CCBE3D;
  border-right: 1px solid #DADFD9;
  border-top: 1px solid #DADFD9;
  border-bottom: 1px solid #DADFD9;
}

.process .dual-band .path-col.col-b .path-opening {
  color: #d0d5d2;
  background: #2e3530;
  border-left: 3px solid #36B5A0;
  border-right: 1px solid #3a3f3c;
  border-top: 1px solid #3a3f3c;
  border-bottom: 1px solid #3a3f3c;
}

.process .dual-band .path-body {
  font-size: 13px;
  line-height: 1.8;
  margin: 0 0 24px 0;
}

.process .dual-band .path-col.col-a .path-body {
  color: #3a3f3c;
}

.process .dual-band .path-col.col-b .path-body {
  color: #b8bdb9;
}

.process .dual-band .path-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process .dual-band .path-step-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 3px;
}

.process .dual-band .path-col.col-a .path-step-item {
  background: #fff;
  border: 1px solid #DADFD9;
}

.process .dual-band .path-col.col-b .path-step-item {
  background: #2a3030;
  border: 1px solid #3a3f3c;
}

.process .dual-band .step-num-badge {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.process .dual-band .path-col.col-a .step-num-badge {
  background: #CCBE3D;
  color: #1e2320;
}

.process .dual-band .path-col.col-b .step-num-badge {
  background: #36B5A0;
  color: #fff;
}

.process .dual-band .step-item-text {
  font-size: 13px;
  line-height: 1.55;
}

.process .dual-band .path-col.col-a .step-item-text {
  color: #2e3530;
}

.process .dual-band .path-col.col-b .step-item-text {
  color: #c8cdc9;
}

.process .dual-band .path-person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
}

.process .dual-band .path-col.col-a .path-person {
  border-top: 1px solid #DADFD9;
}

.process .dual-band .path-col.col-b .path-person {
  border-top: 1px solid #3a3f3c;
}

.process .dual-band .person-portrait {
  width: 56px;
  height: 72px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 3px;
}

.process .dual-band .person-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
}

.process .dual-band .person-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.process .dual-band .person-name {
  font-size: 13px;
  font-weight: 700;
}

.process .dual-band .path-col.col-a .person-name {
  color: #1e2320;
}

.process .dual-band .path-col.col-b .person-name {
  color: #fff;
}

.process .dual-band .person-quote {
  font-size: 13px;
  line-height: 1.55;
}

.process .dual-band .path-col.col-a .person-quote {
  color: #5a605c;
}

.process .dual-band .path-col.col-b .person-quote {
  color: #8a8f8c;
}

.process .dual-band .wave-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border: 3px solid #36B5A0;
  color: #1e2320;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.12s ease-out, border-color 0.1s linear;
}

.process .dual-band .wave-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #36B5A0;
  opacity: 0.18;
  transition: left 0.15s ease-out;
  pointer-events: none;
}

.process .dual-band .wave-btn:hover::before {
  left: 0;
}

.process .dual-band .wave-btn:hover {
  border-color: #2e9e8c;
}

.process .dual-band .wave-btn.dark {
  border-color: #CCBE3D;
  color: #fff;
}

.process .dual-band .wave-btn.dark::before {
  background: #CCBE3D;
}

.process .dual-band .wave-btn.dark:hover {
  border-color: #b8ab35;
}

@media (max-width: 1024px) {
  .process .title-band .page-band {
    grid-template-columns: 1fr 320px;
    gap: 24px;
  }

  .process .steps-band .steps-layout {
    grid-template-columns: 260px 1fr;
  }

  .process .dual-band .dual-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .process .title-band .page-band {
    grid-template-columns: 1fr;
  }

  .process .title-band .image-col {
    order: -1;
    max-width: 320px;
  }

  .process .title-band .page-heading {
    font-size: 38px;
  }

  .process .steps-band .steps-layout {
    grid-template-columns: 1fr;
  }

  .process .steps-band .steps-sidebar {
    position: static;
  }

  .process .steps-band .sidebar-image-wrap {
    aspect-ratio: 7/4;
  }

  .process .dual-band .dual-grid {
    grid-template-columns: 1fr;
  }

  .process .steps-band .step-pairs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  .process .title-band .page-heading {
    font-size: 28px;
  }

  .process .steps-band .band-heading,
  .process .dual-band .band-heading {
    font-size: 28px;
  }

  .process .title-band .opening-paragraph,
  .process .title-band .sub-paragraph {
    font-size: 13px;
  }

  .process .title-band .meta-pair {
    flex-direction: column;
    gap: 12px;
  }
}

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

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

.success-page .success-icon-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.success-page .success-icon-shape {
  width: 72px;
  height: 72px;
  border-radius: 32px;
  background: #DADFD9;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 14px 0 rgba(54, 181, 160, 0.09);
}

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

.success-page .success-heading {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1b2a27;
  margin-bottom: 24px;
}

.success-page .success-heading .accent-word {
  display: inline;
  background: #CCBE3D;
  padding: 0 8px;
  border-radius: 3px;
  color: #1b2a27;
}

.success-page .success-heading .dot-accent {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 32px;
  background: #36B5A0;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.success-page .success-intro {
  font-size: 21px;
  line-height: 1.55;
  color: #2e3d3a;
  margin-bottom: 24px;
  background: #f4f6f4;
  border-left: 4px solid #36B5A0;
  border-top: 1px solid #DADFD9;
  border-right: 1px solid #DADFD9;
  border-bottom: 1px solid #DADFD9;
  border-radius: 3px;
  padding: 24px;
  text-align: left;
}

.success-page .success-body {
  font-size: 13px;
  line-height: 1.8;
  color: #3a4a47;
  margin-bottom: 48px;
  text-align: left;
}

.success-page .success-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.success-page .success-detail-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: #2e3d3a;
  letter-spacing: 0.03em;
  background: #fff;
  border: 1.5px solid #DADFD9;
  border-radius: 3px;
  padding: 12px;
  box-shadow: 0 2px 6px 0 rgba(204, 190, 61, 0.07);
}

.success-page .success-detail-list li .list-marker {
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 3px;
  background: #CCBE3D;
  margin-top: 4px;
}

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

.success-page .btn-primary {
  display: inline-block;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: #1b2a27;
  background: transparent;
  border: 2.5px solid #36B5A0;
  border-radius: 3px;
  padding: 12px 24px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.1s ease-out, color 0.08s linear;
  box-shadow: 0 2px 6px 0 rgba(54, 181, 160, 0.07);
}

.success-page .btn-primary:hover,
.success-page .btn-primary:focus {
  border-color: #CCBE3D;
  color: #1b2a27;
  outline: none;
}

.success-page .btn-primary:active {
  border-color: #1b2a27;
}

.success-page .btn-secondary {
  display: inline-block;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: #3a4a47;
  background: transparent;
  border: 2.5px solid #DADFD9;
  border-radius: 3px;
  padding: 12px 24px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.12s ease-out;
}

.success-page .btn-secondary:hover,
.success-page .btn-secondary:focus {
  border-color: #36B5A0;
  outline: none;
}

.success-page .success-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(247deg, #CCBE3D, transparent);
  border-radius: 3px;
  margin: 0 auto 48px auto;
}

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

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

  .success-page .success-detail-list {
    grid-template-columns: 1fr;
  }

  .success-page .success-actions {
    flex-direction: column;
    gap: 12px;
  }

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

@media (max-width: 320px) {
  .success-page .success-heading {
    font-size: 21px;
  }

  .success-page .success-intro {
    font-size: 13px;
  }
}