body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  word-break: break-word;
  overflow-wrap: anywhere;
  font-family: 'Alegreya', Georgia, serif;
}

.site-header {
  position: relative;
  background: linear-gradient(160deg, #0d3a52 0%, #22709E 55%, #1a5a80 100%);
  padding-bottom: 0;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(34, 112, 158, 0.18) 0%, rgba(162, 191, 229, 0.07) 100%);
  pointer-events: none;
}

.hdr-top-band {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 48px 16px 48px;
  gap: 24px;
}

.brand-mark-wrap {
  margin-left: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 42px;
  padding: 8px 24px;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11), 0 0 0 1.5px rgba(162, 191, 229, 0.38);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.brand-pill img {
  display: block;
  object-fit: contain;
}

.hdr-contact-strip {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-top: 4px;
}

.hdr-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lora', Georgia, serif;
  font-size: 14px;
  color: rgba(222, 239, 248, 0.88);
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hdr-contact-item:hover,
.hdr-contact-item:focus {
  color: #ffffff;
  outline: none;
}

.hdr-contact-item:focus-visible {
  outline: 2px solid #A2BFE5;
  outline-offset: 2px;
  border-radius: 2px;
}

.hdr-contact-item i {
  font-size: 16px;
  color: #A2BFE5;
  flex-shrink: 0;
}

.hdr-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(162, 191, 229, 0.22) 20%, rgba(162, 191, 229, 0.45) 50%, rgba(162, 191, 229, 0.22) 80%, transparent 100%);
  margin: 0;
}

.hdr-nav-row {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px 0 48px;
}

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

.primary-nav li {
  display: flex;
}

.primary-nav li a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  font-family: 'Alegreya', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(222, 239, 248, 0.82);
  text-decoration: none;
  line-height: 1.3;
  letter-spacing: 0;
  position: relative;
  min-height: 44px;
  transition: color 0.6s ease, background-color 0.6s ease;
  border-radius: 2px 2px 0 0;
  overflow: hidden;
}

.primary-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: #A2BFE5;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
}

.primary-nav li a:hover {
  color: #ffffff;
  background: rgba(162, 191, 229, 0.10);
}

.primary-nav li a:hover::after {
  transform: scaleX(1);
}

.primary-nav li a:focus-visible {
  outline: 2px solid #A2BFE5;
  outline-offset: -2px;
  color: #ffffff;
}

.primary-nav li[data-current] a {
  color: #ffffff;
  background: rgba(162, 191, 229, 0.14);
}

.primary-nav li[data-current] a::after {
  transform: scaleX(1);
  background: #DEEFF8;
}

.hdr-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, #22709E 0%, #A2BFE5 50%, #DEEFF8 100%);
  width: 100%;
}

.site-footer {
  background: #0d3a52;
  position: relative;
}

.ftr-accent-top {
  height: 5px;
  background: linear-gradient(90deg, #22709E 0%, #A2BFE5 45%, #DEEFF8 100%);
  width: 100%;
}

.ftr-body {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 48px 24px 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}

.ftr-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 160px;
}

.ftr-rule {
  width: 100%;
  height: 1px;
  background: rgba(162, 191, 229, 0.28);
  border: none;
  margin: 0 0 16px 0;
}

.ftr-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 42px;
  padding: 8px 24px;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11), 0 0 0 1px rgba(162, 191, 229, 0.3);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  align-self: flex-start;
}

.ftr-logo-pill img {
  display: block;
  object-fit: contain;
}

.ftr-tagline {
  font-family: 'Lora', Georgia, serif;
  font-size: 14px;
  color: rgba(162, 191, 229, 0.72);
  line-height: 1.6;
  margin: 0;
}

.ftr-links-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ftr-col-label {
  font-family: 'Alegreya', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: #A2BFE5;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 8px 0;
}

.ftr-links-col a {
  font-family: 'Lora', Georgia, serif;
  font-size: 14px;
  color: rgba(222, 239, 248, 0.78);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.5s ease;
  display: inline-block;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.ftr-links-col a:hover {
  color: #ffffff;
}

.ftr-links-col a:focus-visible {
  outline: 2px solid #A2BFE5;
  outline-offset: 2px;
  border-radius: 2px;
}

.ftr-contact-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ftr-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lora', Georgia, serif;
  font-size: 14px;
  color: rgba(222, 239, 248, 0.78);
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.55s ease;
  min-height: 44px;
}

.ftr-contact-row:hover {
  color: #ffffff;
}

.ftr-contact-row:focus-visible {
  outline: 2px solid #A2BFE5;
  outline-offset: 2px;
  border-radius: 2px;
}

.ftr-contact-row i {
  font-size: 16px;
  color: #A2BFE5;
  flex-shrink: 0;
}

.ftr-address-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Lora', Georgia, serif;
  font-size: 14px;
  color: rgba(222, 239, 248, 0.72);
  line-height: 1.6;
}

.ftr-address-row i {
  font-size: 16px;
  color: #A2BFE5;
  flex-shrink: 0;
  margin-top: 4px;
}

.ftr-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 48px 24px 48px;
  border-top: 1px solid rgba(162, 191, 229, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ftr-copy {
  font-family: 'Lora', Georgia, serif;
  font-size: 14px;
  color: rgba(162, 191, 229, 0.52);
  line-height: 1.6;
  margin: 0;
}

.ftr-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.ftr-bottom-links a {
  font-family: 'Lora', Georgia, serif;
  font-size: 14px;
  color: rgba(162, 191, 229, 0.62);
  text-decoration: none;
  transition: color 0.5s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.ftr-bottom-links a:hover {
  color: #A2BFE5;
}

.ftr-bottom-links a:focus-visible {
  outline: 2px solid #A2BFE5;
  outline-offset: 2px;
  border-radius: 2px;
}

.consent-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #0d3a52;
  box-shadow: -1px 9px 48px 0 rgba(34, 112, 158, 0.11);
  border-top: 2px solid #22709E;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.consent-bar[data-visible="true"] {
  transform: translateX(0);
}

.consent-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.consent-text-block {
  flex: 1;
  min-width: 220px;
}

.consent-desc {
  font-family: 'Lora', Georgia, serif;
  font-size: 14px;
  color: rgba(222, 239, 248, 0.82);
  line-height: 1.6;
  margin: 0 0 4px 0;
}

.consent-uses {
  font-family: 'Lora', Georgia, serif;
  font-size: 14px;
  color: rgba(162, 191, 229, 0.7);
  line-height: 1.6;
  margin: 0;
}

.consent-headline {
  font-family: 'Alegreya', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #DEEFF8;
  line-height: 1.3;
  margin: 8px 0 0 0;
}

.consent-btns {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.consent-btn {
  font-family: 'Alegreya', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 24px;
  border-radius: 2px;
  border: 1.5px solid #22709E;
  cursor: pointer;
  min-height: 44px;
  min-width: 120px;
  position: relative;
  overflow: hidden;
  transition: color 0.6s ease, border-color 0.6s ease;
  background: transparent;
  color: #DEEFF8;
}

.consent-btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: #22709E;
  transition: left 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.consent-btn:hover::before {
  left: 0;
}

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

.consent-btn:hover {
  color: #ffffff;
  border-color: #22709E;
}

.consent-btn:focus-visible {
  outline: 2px solid #A2BFE5;
  outline-offset: 2px;
}

.consent-btn-accept {
  background: #22709E;
  border-color: #22709E;
  color: #ffffff;
}

.consent-btn-accept::before {
  background: #1a5a80;
}

@media (max-width: 1024px) {
  .hdr-top-band {
    padding: 24px 24px 16px 24px;
  }

  .hdr-nav-row {
    padding: 0 24px;
  }

  .ftr-body {
    padding: 48px 24px 24px 24px;
    gap: 24px;
  }

  .ftr-bottom {
    padding: 16px 24px 24px 24px;
  }

  .consent-bar-inner {
    padding: 16px 24px;
  }
}

@media (max-width: 768px) {
  .hdr-top-band {
    padding: 16px 16px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .brand-mark-wrap {
    margin-left: 0;
  }

  .hdr-contact-strip {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hdr-nav-row {
    padding: 0 16px;
  }

  .primary-nav li a {
    padding: 16px 16px;
    font-size: 14px;
  }

  .ftr-body {
    padding: 24px 16px 16px 16px;
    flex-direction: column;
    gap: 24px;
  }

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

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

  .consent-btns {
    width: 100%;
  }

  .consent-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .hdr-contact-strip {
    flex-direction: column;
  }

  .primary-nav li a {
    padding: 16px 8px;
  }

  .ftr-bottom-links {
    gap: 16px;
  }
}

.legal-fekh-box {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 24px;
  color: #2c3e50;
  line-height: 1.9;
  font-size: 16px;
}

.legal-fekh-box ul,
.legal-fekh-box ol {
  padding-left: 24px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.legal-fekh-box ul {
  list-style: none;
  padding-left: 16px;
}

.legal-fekh-box ol {
  list-style: decimal;
}

.legal-fekh-box ol ol {
  list-style: lower-alpha;
  margin-top: 8px;
  margin-bottom: 8px;
}

.legal-fekh-box ul li,
.legal-fekh-box ol li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.9;
  color: #2c3e50;
}

.legal-fekh-box ul li {
  padding-left: 16px;
  position: relative;
}

.legal-fekh-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  background-color: #22709E;
  border-radius: 2px;
  flex-shrink: 0;
}

.legal-fekh-box ul ul,
.legal-fekh-box ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.legal-fekh-box ul ul li::before {
  background-color: #A2BFE5;
  width: 4px;
  height: 4px;
  top: 14px;
}

.legal-fekh-box em,
.legal-fekh-box i {
  font-style: italic;
  color: #22709E;
}

.legal-fekh-box a {
  color: #22709E;
  text-decoration: underline;
  text-decoration-color: #A2BFE5;
  text-underline-offset: 3px;
  transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    text-decoration-color 0.5s ease;
}

.legal-fekh-box a:hover {
  color: #1a5a82;
  text-decoration-color: #22709E;
}

.legal-fekh-box a:visited {
  color: #5a7fa0;
  text-decoration-color: #A2BFE5;
}

.legal-fekh-box table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  margin-bottom: 48px;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
  border-radius: 2px;
  overflow: hidden;
}

.legal-fekh-box thead {
  background-color: #22709E;
  color: #ffffff;
}

.legal-fekh-box thead tr {
  border-bottom: none;
}

.legal-fekh-box tbody {
  background-color: #ffffff;
}

.legal-fekh-box tbody tr {
  border-bottom: 1px solid #DEEFF8;
  transition: background-color 0.5s ease;
}

.legal-fekh-box tbody tr:last-child {
  border-bottom: none;
}

.legal-fekh-box tbody tr:hover {
  background-color: #DEEFF8;
}

.legal-fekh-box tbody tr:nth-child(even) {
  background-color: #f4f9fd;
}

.legal-fekh-box tbody tr:nth-child(even):hover {
  background-color: #DEEFF8;
}

.legal-fekh-box th {
  padding: 16px 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: #ffffff;
  white-space: nowrap;
}

.legal-fekh-box td {
  padding: 16px 24px;
  font-size: 14px;
  line-height: 1.6;
  color: #2c3e50;
  vertical-align: top;
}

.legal-fekh-box div {
  margin-bottom: 16px;
}

.legal-fekh-box div+div {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .legal-fekh-box {
    padding: 24px 16px;
    font-size: 16px;
  }

  .legal-fekh-box table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -1px 1px 3px 0 rgba(34, 112, 158, 0.05);
  }

  .legal-fekh-box th,
  .legal-fekh-box td {
    padding: 16px;
    white-space: normal;
    min-width: 140px;
  }

  .legal-fekh-box ul,
  .legal-fekh-box ol {
    padding-left: 16px;
  }
}

@media (max-width: 480px) {
  .legal-fekh-box {
    padding: 24px 16px;
  }

  .legal-fekh-box th,
  .legal-fekh-box td {
    padding: 8px 16px;
    font-size: 14px;
  }

  .legal-fekh-box ul li,
  .legal-fekh-box ol li {
    font-size: 16px;
  }
}

@media (min-width: 1440px) {
  .legal-fekh-box {
    padding: 48px 48px;
  }
}

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

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

/* ── BLOCK 1: REACH BLOCK ── */
.ct-us .reach-block {
  padding: 96px 0 80px;
  background: #fff;
  position: relative;
}

.ct-us .reach-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #22709E 0%, transparent 100%);
}

.ct-us .reach-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.ct-us .reach-sidebar {
  position: sticky;
  top: 24px;
}

.ct-us .reach-label {
  font-size: 14px;
  color: #22709E;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.ct-us .reach-heading {
  font-size: 36px;
  line-height: 1.1;
  color: #111;
  margin: 0 0 24px;
  font-weight: 700;
}

.ct-us .reach-heading span {
  color: #22709E;
}

.ct-us .reach-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
  margin: 0 0 24px;
}

.ct-us .reach-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #22709E 0%, transparent 100%);
  margin-bottom: 24px;
}

.ct-us .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-us .info-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.ct-us .info-icon {
  width: 40px;
  height: 40px;
  background: #DEEFF8;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ct-us .info-list li:hover .info-icon {
  background: #A2BFE5;
}

.ct-us .info-icon i {
  font-size: 18px;
  color: #22709E;
}

.ct-us .info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-us .info-text-label {
  font-size: 14px;
  color: #22709E;
  font-weight: 600;
  border-bottom: 1px solid #DEEFF8;
  padding-bottom: 4px;
}

.ct-us .info-text-val {
  font-size: 16px;
  color: #222;
  line-height: 1.6;
}

.ct-us .info-text-val a {
  color: #22709E;
  text-decoration: none;
  transition: color 0.55s ease;
}

.ct-us .info-text-val a:hover {
  color: #1a5a80;
}

/* ── FORM PANEL ── */
.ct-us .form-panel {
  background: #DEEFF8;
  border-radius: 2px;
  padding: 48px;
  box-shadow: -1px 9px 48px 0 rgba(34, 112, 158, 0.11);
  position: relative;
  overflow: hidden;
}

.ct-us .form-panel::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 60px 60px 0;
  border-color: transparent #A2BFE5 transparent transparent;
  pointer-events: none;
}

.ct-us .form-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 0 40px;
  border-color: transparent transparent transparent #A2BFE5;
  pointer-events: none;
}

.ct-us .form-head {
  margin-bottom: 32px;
}

.ct-us .form-head h2 {
  font-size: 24px;
  line-height: 1.3;
  color: #111;
  margin: 0 0 8px;
  font-weight: 700;
}

.ct-us .form-head p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

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

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

.ct-us .field-row label {
  font-size: 14px;
  color: #22709E;
  font-weight: 600;
}

.ct-us .field-row input[type="email"],
.ct-us .field-row select,
.ct-us .field-row textarea {
  width: 100%;
  padding: 16px;
  background: #fff;
  border: 1px solid #A2BFE5;
  border-radius: 2px;
  font-size: 16px;
  color: #222;
  box-shadow: inset -1px 2px 4px 0 rgba(34, 112, 158, 0.07);
  transition: border-color 0.55s ease, box-shadow 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.ct-us .field-row input[type="email"]::placeholder,
.ct-us .field-row textarea::placeholder {
  color: rgba(34, 34, 34, 0.4);
}

.ct-us .field-row input[type="email"]:focus,
.ct-us .field-row select:focus,
.ct-us .field-row textarea:focus {
  outline: none;
  border-color: #22709E;
  box-shadow: inset -1px 2px 4px 0 rgba(34, 112, 158, 0.12), -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
}

.ct-us .field-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%2322709E' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
  cursor: pointer;
}

.ct-us .field-row select option {
  color: #222;
  background: #fff;
}

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

/* ── TIME SLOTS ── */
.ct-us .slot-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-us .slot-group label.group-label {
  font-size: 14px;
  color: #22709E;
  font-weight: 600;
}

.ct-us .slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ct-us .slot-opt {
  position: relative;
}

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

.ct-us .slot-opt label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  background: #fff;
  border: 1px solid #A2BFE5;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  line-height: 1.3;
  text-align: center;
  transition: background-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.55s ease, color 0.6s ease;
}

.ct-us .slot-opt label span {
  font-size: 14px;
  color: #22709E;
  font-weight: 600;
}

.ct-us .slot-opt input[type="radio"]:checked+label {
  background: #22709E;
  border-color: #22709E;
  color: #fff;
}

.ct-us .slot-opt input[type="radio"]:checked+label span {
  color: #DEEFF8;
}

.ct-us .slot-opt label:hover {
  border-color: #22709E;
  background: #f0f8fd;
}

.ct-us .slot-opt input[type="radio"]:checked+label:hover {
  background: #22709E;
}

.ct-us .slot-opt input[type="radio"]:focus+label {
  outline: 2px solid #22709E;
  outline-offset: 2px;
}

/* ── PRIVACY CHECKBOX ── */
.ct-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.ct-us .privacy-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  accent-color: #22709E;
  cursor: pointer;
  border-radius: 2px;
}

.ct-us .privacy-row label {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  cursor: pointer;
}

.ct-us .privacy-row label a {
  color: #22709E;
  text-decoration: underline;
  transition: color 0.55s ease;
}

.ct-us .privacy-row label a:hover {
  color: #1a5a80;
}

/* ── SUBMIT BUTTON ── */
.ct-us .submit-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.ct-us .btn-submit {
  position: relative;
  overflow: hidden;
  padding: 16px 48px;
  background: #22709E;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 42px;
  cursor: pointer;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.22);
  transition: color 0.65s ease, box-shadow 0.65s ease;
}

.ct-us .btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #1a5a80;
  transition: right 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.ct-us .btn-submit:hover::before {
  right: 0;
}

.ct-us .btn-submit span {
  position: relative;
  z-index: 1;
}

.ct-us .btn-submit:focus {
  outline: 3px solid #22709E;
  outline-offset: 3px;
}

.ct-us .btn-submit:active {
  box-shadow: inset -1px 2px 4px 0 rgba(34, 112, 158, 0.2);
}

/* ── BLOCK 2: GLOSSARY / INFO BLOCK ── */
.ct-us .info-block {
  padding: 80px 0 96px;
  background: linear-gradient(180deg, #DEEFF8 0%, #fff 100%);
  position: relative;
}

.ct-us .tri-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.ct-us .tri-pattern svg {
  width: 100%;
  height: 100%;
  opacity: 0.06;
}

.ct-us .info-inner {
  position: relative;
  z-index: 1;
}

.ct-us .info-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}

.ct-us .info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #22709E;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.ct-us .info-badge i {
  font-size: 16px;
}

.ct-us .info-h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #111;
  margin: 0;
  font-weight: 700;
  position: relative;
}

.ct-us .faded-num {
  font-size: 70px;
  line-height: 1.1;
  color: #22709E;
  opacity: 0.08;
  position: absolute;
  top: -16px;
  left: -8px;
  font-weight: 900;
  pointer-events: none;
  user-select: none;
}

.ct-us .info-right-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
  margin: 0;
  padding-top: 8px;
}

.ct-us .glossary-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ct-us .gloss-item {
  background: #fff;
  border-radius: 2px;
  padding: 24px;
  box-shadow: -1px 1px 3px 0 rgba(34, 112, 158, 0.05), -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
  position: relative;
  clip-path: inset(0 100% 0 0);
  animation: wipe-in 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.ct-us .gloss-item:nth-child(1) {
  animation-delay: 0.1s;
}

.ct-us .gloss-item:nth-child(2) {
  animation-delay: 0.25s;
}

.ct-us .gloss-item:nth-child(3) {
  animation-delay: 0.4s;
}

.ct-us .gloss-item:nth-child(4) {
  animation-delay: 0.55s;
}

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

  to {
    clip-path: inset(0 0% 0 0);
  }
}

.ct-us .gloss-item .item-num {
  font-size: 70px;
  line-height: 1.1;
  color: #22709E;
  opacity: 0.07;
  font-weight: 900;
  position: absolute;
  top: 8px;
  right: 16px;
  pointer-events: none;
  user-select: none;
}

.ct-us .gloss-term {
  font-size: 16px;
  font-weight: 700;
  color: #22709E;
  margin: 0 0 4px;
}

.ct-us .gloss-divider {
  width: 32px;
  height: 1px;
  background: #A2BFE5;
  margin-bottom: 8px;
}

.ct-us .gloss-def {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* ── EXPAND DETAIL (progressive disclosure) ── */
.ct-us .expand-block {
  margin-top: 48px;
  background: #fff;
  border-radius: 2px;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
  overflow: hidden;
}

.ct-us .expand-summary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ct-us .expand-summary::-webkit-details-marker {
  display: none;
}

.ct-us .expand-summary:hover {
  background: #DEEFF8;
}

.ct-us .expand-summary h4 {
  font-size: 16px;
  font-weight: 700;
  color: #22709E;
  margin: 0;
}

.ct-us .expand-icon {
  width: 28px;
  height: 28px;
  background: #DEEFF8;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.55s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ct-us .expand-icon i {
  font-size: 18px;
  color: #22709E;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ct-us details[open] .expand-icon {
  background: #22709E;
}

.ct-us details[open] .expand-icon i {
  color: #fff;
  transform: rotate(45deg);
}

.ct-us .expand-body {
  padding: 0 24px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

.ct-us .expand-body p {
  margin: 0 0 16px;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ct-us .reach-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ct-us .reach-sidebar {
    position: static;
  }

  .ct-us .info-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ct-us .glossary-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ct-us .reach-block {
    padding: 48px 0 48px;
  }

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

  .ct-us .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ct-us .info-block {
    padding: 48px 0 64px;
  }

  .ct-us .reach-heading {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .ct-us .slots-grid {
    grid-template-columns: 1fr;
  }

  .ct-us .submit-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .ct-us .btn-submit {
    width: 100%;
  }
}

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

.faq-pg .fog-layer {
  position: fixed;
  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  background: rgba(255, 255, 255, 0.13);
  pointer-events: none;
  z-index: 0;
  animation: fog-drift 18s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}

@keyframes fog-drift {
  0% {
    transform: translateX(0) scaleY(1);
    opacity: 0.10;
  }

  50% {
    opacity: 0.18;
  }

  100% {
    transform: translateX(8%) scaleY(1.03);
    opacity: 0.10;
  }
}

.faq-pg .geo-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  width: 100%;
  overflow: hidden;
  height: 16px;
  margin: 0;
  padding: 0;
}

.faq-pg .geo-divider span {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1.5px solid rgba(34, 112, 158, 0.18);
  transform: rotate(45deg) scale(0.7);
  background: transparent;
}

.faq-pg .geo-divider span:nth-child(even) {
  border-color: rgba(162, 191, 229, 0.22);
}

.faq-pg .geo-divider-b {
  height: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.faq-pg .geo-divider-b span {
  display: block;
  width: 24px;
  height: 8px;
  flex-shrink: 0;
  border-bottom: 2px solid rgba(34, 112, 158, 0.13);
}

.faq-pg .geo-divider-b span:nth-child(3n+1) {
  border-bottom-color: rgba(162, 191, 229, 0.28);
}

.faq-pg .title-strip {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 48px 48px 48px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.faq-pg .title-text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.faq-pg .reading-arrow {
  position: absolute;
  top: 0;
  left: -32px;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #22709E, transparent);
  border-radius: 2px;
  opacity: 0.35;
}

.faq-pg .pg-label {
  font-size: 14px;
  color: #22709E;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.3;
}

.faq-pg .pg-h1 {
  font-size: 70px;
  line-height: 1.1;
  color: #0d2e42;
  font-weight: 800;
  margin: 0;
}

.faq-pg .pg-slogan {
  font-size: 16px;
  line-height: 1.6;
  color: #2c4a5e;
  font-style: italic;
  border-top: 1.5px solid rgba(34, 112, 158, 0.18);
  padding-top: 16px;
  max-width: 480px;
}

.faq-pg .title-img-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.faq-pg .img-card {
  width: 300px;
  height: 340px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  box-shadow: -1px 9px 48px 0 rgba(34, 112, 158, 0.11);
}

.faq-pg .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.faq-pg .img-card-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(34, 112, 158, 0.55), transparent 60%);
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.faq-pg .img-card:hover .img-vignette {
  opacity: 1;
}

.faq-pg .img-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 48px 16px rgba(34, 112, 158, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
}

.faq-pg .outlined-shape {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(162, 191, 229, 0.28);
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}

.faq-pg .title-img-col .img-card {
  position: relative;
  z-index: 1;
}

.faq-pg .faq-main-area {
  background: #DEEFF8;
  position: relative;
  z-index: 1;
}

.faq-pg .faq-main-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 48px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 48px;
  align-items: start;
}

.faq-pg .faq-intro-para {
  background: #fff;
  border-radius: 2px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: -1px 1px 3px 0 rgba(34, 112, 158, 0.05);
  position: relative;
  overflow: hidden;
}

.faq-pg .faq-intro-para .big-num {
  position: absolute;
  top: -16px;
  right: 8px;
  font-size: 70px;
  line-height: 1.1;
  color: rgba(34, 112, 158, 0.07);
  font-weight: 900;
  pointer-events: none;
  user-select: none;
}

.faq-pg .faq-intro-para p {
  font-size: 16px;
  line-height: 1.6;
  color: #1b3a50;
  text-align: justify;
  margin: 0;
  position: relative;
  z-index: 1;
}

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

.faq-pg .faq-item {
  background: #fff;
  border-radius: 2px;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
  overflow: hidden;
  position: relative;
}

.faq-pg .faq-item .item-num {
  position: absolute;
  top: 0;
  right: 16px;
  font-size: 70px;
  line-height: 1.1;
  color: rgba(162, 191, 229, 0.13);
  font-weight: 900;
  pointer-events: none;
  user-select: none;
}

.faq-pg .faq-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 52px;
  top: 0;
  left: 0;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}

.faq-pg .faq-q {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 16px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.faq-pg .faq-q-text {
  font-size: 16px;
  font-weight: 600;
  color: #0d2e42;
  line-height: 1.3;
  flex: 1;
}

.faq-pg .faq-toggle-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 42px;
  background: #DEEFF8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-pg .faq-toggle-icon svg {
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-pg .faq-item input[type="checkbox"]:checked~.faq-q .faq-toggle-icon {
  background: #22709E !important;
  transform: rotate(45deg);
}

.faq-pg .faq-item input[type="checkbox"]:checked~.faq-q .faq-toggle-icon svg path {
  stroke: #fff;
}

.faq-pg .faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.5s ease;
  padding: 0 24px;
}

.faq-pg .faq-item input[type="checkbox"]:checked~.faq-ans {
  max-height: 320px;
  padding: 0 24px 16px 24px;
}

.faq-pg .faq-ans p {
  font-size: 16px;
  line-height: 1.6;
  color: #2c4a5e;
  text-align: justify;
  margin: 0;
}

.faq-pg .faq-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px;
}

.faq-pg .side-stat {
  background: #22709E;
  border-radius: 2px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: -1px 9px 48px 0 rgba(34, 112, 158, 0.11);
}

.faq-pg .side-stat .stat-num {
  font-size: 70px;
  line-height: 1.1;
  color: #fff;
  font-weight: 900;
}

.faq-pg .side-stat .stat-pct {
  font-size: 36px;
  line-height: 1.1;
  color: rgba(222, 239, 248, 0.85);
  font-weight: 700;
  display: inline;
}

.faq-pg .side-stat .stat-label {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(222, 239, 248, 0.9);
}

.faq-pg .side-contact-card {
  background: #fff;
  border-radius: 2px;
  padding: 24px;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-pg .side-contact-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0d2e42;
  margin: 0;
  line-height: 1.3;
}

.faq-pg .side-contact-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #2c4a5e;
  margin: 0;
}

.faq-pg .side-contact-card a {
  font-size: 14px;
  color: #22709E;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  transition: color 0.5s ease;
}

.faq-pg .side-contact-card a:hover {
  color: #0d2e42;
}

.faq-pg .expert-strip {
  background: #fff;
  position: relative;
  z-index: 1;
}

.faq-pg .expert-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 48px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
}

.faq-pg .expert-portrait-wrap {
  flex-shrink: 0;
  position: relative;
}

.faq-pg .expert-portrait {
  width: 180px;
  height: 180px;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: -1px 9px 48px 0 rgba(34, 112, 158, 0.11);
  position: relative;
}

.faq-pg .expert-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-pg .expert-portrait:hover img {
  transform: scale(1.06);
}

.faq-pg .expert-portrait:hover .img-vignette {
  opacity: 1;
}

.faq-pg .portrait-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border: 2px solid rgba(34, 112, 158, 0.22);
  border-radius: 42px;
  pointer-events: none;
}

.faq-pg .expert-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-pg .expert-text h3 {
  font-size: 36px;
  line-height: 1.1;
  color: #0d2e42;
  font-weight: 800;
  margin: 0;
  position: relative;
}

.faq-pg .expert-text h3 .bg-num {
  position: absolute;
  top: -8px;
  left: -8px;
  font-size: 70px;
  line-height: 1.1;
  color: rgba(162, 191, 229, 0.14);
  font-weight: 900;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.faq-pg .expert-text h3 span {
  position: relative;
  z-index: 1;
}

.faq-pg .expert-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #2c4a5e;
  text-align: justify;
  margin: 0;
}

.faq-pg .expert-name {
  font-size: 14px;
  color: #22709E;
  font-weight: 600;
  line-height: 1.3;
}

.faq-pg .expert-metrics {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.faq-pg .e-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-pg .e-metric .m-val {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  color: #22709E;
}

.faq-pg .e-metric .m-val .pct {
  font-size: 24px;
  font-weight: 700;
  color: rgba(34, 112, 158, 0.65);
}

.faq-pg .e-metric .m-desc {
  font-size: 14px;
  color: #2c4a5e;
  line-height: 1.3;
}

.faq-pg .expert-cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.faq-pg .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: #22709E;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 42px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
  transition: color 0.6s ease, box-shadow 0.6s ease;
  z-index: 0;
}

.faq-pg .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: #0d2e42;
  border-radius: 42px;
  z-index: -1;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-pg .btn-primary:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.faq-pg .btn-primary:hover {
  box-shadow: -1px 9px 48px 0 rgba(34, 112, 158, 0.11);
}

.faq-pg .btn-icon-only {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 42px;
  border: 1.5px solid rgba(34, 112, 158, 0.28);
  background: transparent;
  color: #22709E;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s ease, color 0.5s ease;
  z-index: 0;
}

.faq-pg .btn-icon-only::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: rgba(34, 112, 158, 0.08);
  border-radius: 42px;
  z-index: -1;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-pg .btn-icon-only:hover::after {
  width: 100%;
}

.faq-pg .btn-icon-only:hover {
  border-color: #22709E;
}

@media (max-width: 1024px) {
  .faq-pg .title-strip {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 24px;
  }

  .faq-pg .title-img-col {
    align-items: flex-start;
  }

  .faq-pg .pg-h1 {
    font-size: 36px;
  }

  .faq-pg .faq-main-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }

  .faq-pg .faq-side {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .faq-pg .side-stat,
  .faq-pg .side-contact-card {
    flex: 1;
    min-width: 200px;
  }

  .faq-pg .expert-inner {
    padding: 48px 24px;
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .faq-pg .title-strip {
    padding: 48px 16px;
  }

  .faq-pg .pg-h1 {
    font-size: 36px;
  }

  .faq-pg .img-card {
    width: 100%;
    height: 220px;
  }

  .faq-pg .faq-main-inner {
    padding: 48px 16px;
  }

  .faq-pg .expert-inner {
    padding: 48px 16px;
  }

  .faq-pg .expert-metrics {
    gap: 16px;
  }

  .faq-pg .faq-side {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .faq-pg .pg-h1 {
    font-size: 36px;
  }

  .faq-pg .expert-text h3 {
    font-size: 24px;
  }

  .faq-pg .e-metric .m-val {
    font-size: 24px;
  }

  .faq-pg .expert-metrics {
    gap: 16px;
  }
}

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

.abt-us *:focus-visible {
  outline: 3px solid #22709E !important;
  outline-offset: 3px !important;
}

::selection {
  background: #22709E;
  color: #fff;
}

.abt-us .ed-col {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

.abt-us .dot-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.abt-us .dot-row span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 42px;
  background: #22709E;
  opacity: 0.4;
}

.abt-us .dot-row span.mid {
  opacity: 1;
  width: 7px;
  height: 7px;
}

.abt-us .divider-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin: 48px auto;
  max-width: 320px;
}

.abt-us .divider-line .dl-dot {
  width: 6px;
  height: 6px;
  border-radius: 42px;
  background: #A2BFE5;
  flex-shrink: 0;
}

.abt-us .divider-line .dl-seg {
  flex: 1;
  height: 1px;
  background: #A2BFE5;
}

.abt-us .divider-line2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin: 48px auto;
  max-width: 180px;
}

.abt-us .divider-line2 .dl2-dot {
  width: 4px;
  height: 4px;
  border-radius: 42px;
  background: #22709E;
  flex-shrink: 0;
  opacity: 0.5;
}

.abt-us .divider-line2 .dl2-seg {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #22709E, transparent);
}

.abt-us .frame-lines {
  position: relative;
}

.abt-us .frame-lines::before,
.abt-us .frame-lines::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: #A2BFE5;
  border-style: solid;
}

.abt-us .frame-lines::before {
  top: -8px;
  left: -8px;
  border-width: 1px 0 0 1px;
}

.abt-us .frame-lines::after {
  bottom: -8px;
  right: -8px;
  border-width: 0 1px 1px 0;
}

.abt-us .pg-title-blk {
  padding-top: 80px;
  padding-bottom: 64px;
  background: #fff;
  text-align: center;
}

.abt-us .pg-title-blk .img-zone {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
}

.abt-us .img-curtain {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.abt-us .img-curtain img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-us .img-curtain:hover img {
  transform: translateX(8px) scale(1.04);
}

.abt-us .img-curtain .grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  border-radius: 2px;
}

.abt-us .img-zone .img-a {
  width: 260px;
  height: 340px;
  flex-shrink: 0;
}

.abt-us .img-zone .img-b {
  width: 200px;
  height: 280px;
  flex-shrink: 0;
  margin-top: 48px;
}

.abt-us .pg-title-blk .txt-zone {
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 48px;
  position: relative;
}

.abt-us .pg-title-blk .kicker {
  font-size: 14px;
  line-height: 1.6;
  color: #22709E;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.abt-us .pg-title-blk h1 {
  font-size: 70px;
  line-height: 1.1;
  color: #1a2e3f;
  margin-bottom: 24px;
  text-align: center;
}

.abt-us .pg-title-blk h1 .line-a {
  display: block;
  font-size: 36px;
  line-height: 1.3;
  color: #22709E;
  opacity: 0.7;
}

.abt-us .pg-title-blk h1 .line-b {
  display: block;
}

.abt-us .pg-title-blk .sub-p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a5068;
  text-align: justify;
  max-width: 520px;
  margin: 0 auto;
}

@keyframes wipeIn {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  to {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
  }
}

.abt-us .img-curtain {
  animation: wipeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.abt-us .img-zone .img-b {
  animation-delay: 0.18s;
}

.abt-us .story-blk {
  background: #DEEFF8;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.abt-us .story-blk .bg-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
}

.abt-us .story-blk .bg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.13;
  mix-blend-mode: multiply;
}

.abt-us .story-blk .inner-col {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

.abt-us .story-blk .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.abt-us .story-blk .col-vis {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abt-us .story-blk .vis-img {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: -1px 9px 48px 0 rgba(34, 112, 158, 0.11);
}

.abt-us .story-blk .vis-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-us .story-blk .vis-img:hover img {
  transform: translateY(-10px) scale(1.05);
}

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

.abt-us .story-blk .stat-item {
  flex: 1;
  background: #fff;
  border-radius: 2px;
  padding: 24px 16px;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
  text-align: center;
  border-top: 2px solid #22709E;
  transition: box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-us .story-blk .stat-item:hover {
  box-shadow: -1px 9px 48px 0 rgba(34, 112, 158, 0.18);
}

.abt-us .story-blk .stat-num {
  font-size: 36px;
  line-height: 1.1;
  color: #22709E;
  display: block;
}

.abt-us .story-blk .stat-pct {
  font-size: 70px;
  line-height: 1.1;
  color: #DEEFF8;
  display: block;
  margin-top: -24px;
  margin-bottom: -16px;
  position: relative;
  z-index: 0;
}

.abt-us .story-blk .stat-label {
  font-size: 14px;
  line-height: 1.6;
  color: #3a5068;
  display: block;
  position: relative;
  z-index: 1;
}

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

.abt-us .story-blk .num-bg {
  position: relative;
  display: inline-block;
}

.abt-us .story-blk .num-bg .bg-num {
  font-size: 70px;
  line-height: 1.1;
  color: #A2BFE5;
  opacity: 0.25;
  position: absolute;
  top: -16px;
  left: -8px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.abt-us .story-blk h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #1a2e3f;
  position: relative;
  z-index: 1;
  margin: 0;
}

.abt-us .story-blk .body-p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a5068;
  text-align: justify;
  margin: 0;
}

.abt-us .story-blk .list-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-us .story-blk .list-items li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #3a5068;
}

.abt-us .story-blk .list-items li .li-num {
  font-size: 36px;
  line-height: 1.1;
  color: #A2BFE5;
  opacity: 0.5;
  flex-shrink: 0;
  width: 32px;
  text-align: right;
  margin-top: -4px;
}

.abt-us .team-blk {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.abt-us .team-blk .inner-col {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

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

.abt-us .team-blk .head-left {
  flex: 1;
}

.abt-us .team-blk .num-bg {
  position: relative;
  display: inline-block;
}

.abt-us .team-blk .num-bg .bg-num {
  font-size: 70px;
  line-height: 1.1;
  color: #A2BFE5;
  opacity: 0.2;
  position: absolute;
  top: -16px;
  left: -8px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.abt-us .team-blk h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #1a2e3f;
  position: relative;
  z-index: 1;
  margin: 0 0 16px 0;
}

.abt-us .team-blk .head-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #3a5068;
  max-width: 420px;
  text-align: justify;
  margin: 0;
}

.abt-us .team-blk .head-right {
  flex-shrink: 0;
}

.abt-us .team-blk .yr-badge {
  background: #22709E;
  color: #fff;
  border-radius: 2px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
}

.abt-us .team-blk .yr-badge .yr-num {
  font-size: 36px;
  line-height: 1.1;
  display: block;
}

.abt-us .team-blk .yr-badge .yr-label {
  font-size: 14px;
  line-height: 1.6;
  display: block;
  opacity: 0.85;
}

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

.abt-us .team-blk .person-card {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: -1px 1px 3px 0 rgba(34, 112, 158, 0.05);
  transition: box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #fff;
  border: 1px solid #DEEFF8;
}

.abt-us .team-blk .person-card:hover {
  box-shadow: -1px 9px 48px 0 rgba(34, 112, 158, 0.11);
}

.abt-us .team-blk .portrait-wrap {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  position: relative;
}

.abt-us .team-blk .portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-us .team-blk .person-card:hover .portrait-wrap img {
  transform: translateY(-8px) scale(1.04);
}

.abt-us .team-blk .person-info {
  padding: 24px 16px;
}

.abt-us .team-blk .person-name {
  font-size: 16px;
  line-height: 1.3;
  color: #1a2e3f;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.abt-us .team-blk .person-role {
  font-size: 14px;
  line-height: 1.6;
  color: #22709E;
  margin: 0 0 8px 0;
}

.abt-us .team-blk .person-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #3a5068;
  margin: 0;
  text-align: justify;
}

.abt-us .team-blk .no-portrait-card {
  border-radius: 2px;
  background: #DEEFF8;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  box-shadow: -1px 1px 3px 0 rgba(34, 112, 158, 0.05);
  transition: box-shadow 0.55s ease;
  min-height: 200px;
}

.abt-us .team-blk .no-portrait-card:hover {
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
}

.abt-us .team-blk .np-icon {
  width: 40px;
  height: 40px;
  border-radius: 42px;
  background: #22709E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.abt-us .team-blk .np-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.abt-us .team-blk .np-name {
  font-size: 16px;
  line-height: 1.3;
  color: #1a2e3f;
  margin: 0 0 4px 0;
  font-weight: 600;
}

.abt-us .team-blk .np-role {
  font-size: 14px;
  line-height: 1.6;
  color: #22709E;
  margin: 0 0 8px 0;
}

.abt-us .team-blk .np-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #3a5068;
  margin: 0;
  text-align: justify;
}

.abt-us .team-blk .approach-strip {
  margin-top: 48px;
  background: linear-gradient(to right, #22709E, transparent);
  border-radius: 2px;
  padding: 24px 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.abt-us .team-blk .approach-strip .strip-img {
  width: 180px;
  height: 120px;
  overflow: hidden;
  border-radius: 2px;
  flex-shrink: 0;
}

.abt-us .team-blk .approach-strip .strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s ease;
}

.abt-us .team-blk .approach-strip:hover .strip-img img {
  transform: translateX(6px);
}

.abt-us .team-blk .approach-strip .strip-text h4 {
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 8px 0;
}

.abt-us .team-blk .approach-strip .strip-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #DEEFF8;
  margin: 0;
  text-align: justify;
}

.abt-us .team-blk .img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.abt-us .team-blk .img-row .row-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
}

.abt-us .team-blk .img-row .row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-us .team-blk .img-row .row-img:hover img {
  transform: translateY(-8px) scale(1.05);
}

@media (max-width: 1024px) {
  .abt-us .story-blk .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .abt-us .team-blk .approach-strip {
    flex-direction: column;
    padding: 24px;
  }

  .abt-us .team-blk .approach-strip .strip-img {
    width: 100%;
    height: 160px;
  }
}

@media (max-width: 768px) {

  .abt-us .ed-col,
  .abt-us .story-blk .inner-col,
  .abt-us .team-blk .inner-col {
    padding-left: 24px;
    padding-right: 24px;
  }

  .abt-us .pg-title-blk h1 {
    font-size: 36px;
  }

  .abt-us .pg-title-blk h1 .line-a {
    font-size: 24px;
  }

  .abt-us .img-zone {
    flex-direction: column;
    align-items: center;
  }

  .abt-us .img-zone .img-b {
    margin-top: 0;
  }

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

  .abt-us .team-blk .head-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .abt-us .story-blk .stat-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .abt-us .pg-title-blk {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .abt-us .pg-title-blk .txt-zone {
    padding: 16px 8px;
  }

  .abt-us .pg-title-blk h1 {
    font-size: 36px;
  }

  .abt-us .story-blk,
  .abt-us .team-blk {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

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

.lnch-pg .pg-bound {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }

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

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(48px);
  }

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

.lnch-pg .reveal-left {
  animation: slideFromLeft 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.lnch-pg .reveal-right {
  animation: slideFromRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
}

.lnch-pg .reveal-left-2 {
  animation: slideFromLeft 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.lnch-pg .reveal-right-2 {
  animation: slideFromRight 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.lnch-pg .reveal-left-3 {
  animation: slideFromLeft 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.lnch-pg .reveal-right-3 {
  animation: slideFromRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both;
}

.lnch-pg ::selection {
  background: #22709E;
  color: #fff;
}

.lnch-pg img {
  max-width: 100%;
}

.lnch-pg .divider-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}

.lnch-pg .divider-dot span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22709E;
  flex-shrink: 0;
}

.lnch-pg .divider-dot hr {
  flex: 1;
  border: none;
  border-top: 1px solid #A2BFE5;
  margin: 0;
}

.lnch-pg .strokes-deco {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
}

.lnch-pg .strokes-deco span {
  display: block;
  height: 2px;
  background: #A2BFE5;
  border-radius: 2px;
  opacity: 0.6;
}

/* ─── SECTION 1: TITLE BLOCK ─── */
.lnch-pg .title-blk {
  background: #fff;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}

.lnch-pg .title-blk .pg-bound {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 48px;
}

.lnch-pg .title-img-col {
  flex: 0 0 340px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: -1px 9px 48px 0 rgba(34, 112, 158, 0.11);
}

.lnch-pg .title-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lnch-pg .title-img-col:hover img {
  filter: grayscale(0%);
}

.lnch-pg .title-img-col .strokes-deco {
  bottom: 24px;
  right: 16px;
}

.lnch-pg .title-img-col .strokes-deco span:nth-child(1) {
  width: 32px;
}

.lnch-pg .title-img-col .strokes-deco span:nth-child(2) {
  width: 24px;
}

.lnch-pg .title-img-col .strokes-deco span:nth-child(3) {
  width: 40px;
}

.lnch-pg .title-img-col .strokes-deco span:nth-child(4) {
  width: 20px;
}

.lnch-pg .title-txt-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
  position: relative;
}

.lnch-pg .title-accent-line {
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #22709E, transparent);
  border-radius: 2px;
}

.lnch-pg .title-label {
  font-size: 14px;
  color: #22709E;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.lnch-pg .title-h1 {
  font-size: 70px;
  line-height: 1.1;
  color: #111827;
  margin-bottom: 24px;
  font-weight: 800;
}

.lnch-pg .title-h1 .kw-under {
  text-decoration: underline;
  text-decoration-color: #22709E;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.lnch-pg .title-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #2d3748;
  max-width: 520px;
  text-align: justify;
  margin-bottom: 24px;
}

.lnch-pg .title-meta {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.lnch-pg .title-stat {
  display: flex;
  flex-direction: column;
}

.lnch-pg .title-stat-num {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  color: #22709E;
}

.lnch-pg .title-stat-lbl {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.3;
}

.lnch-pg .title-sep {
  width: 1px;
  height: 40px;
  background: #A2BFE5;
}

.lnch-pg .title-cta {
  display: inline-block;
  padding: 16px 48px;
  background: #22709E;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
  transition: color 0.55s ease, box-shadow 0.55s ease;
}

.lnch-pg .title-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #1a5f88;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.lnch-pg .title-cta:hover::after {
  transform: translateX(0);
}

.lnch-pg .title-cta span {
  position: relative;
  z-index: 1;
}

.lnch-pg .title-cta:hover {
  box-shadow: -1px 9px 48px 0 rgba(34, 112, 158, 0.11);
}

/* ─── SECTION 2: PLATFORM CURRENCY ─── */
.lnch-pg .currency-blk {
  background: #DEEFF8;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}

.lnch-pg .currency-blk .pg-bound {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

.lnch-pg .currency-txt {
  flex: 1;
}

.lnch-pg .currency-h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #111827;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.lnch-pg .currency-h2 .fade-num {
  position: absolute;
  left: -16px;
  top: -16px;
  font-size: 70px;
  line-height: 1.1;
  font-weight: 800;
  color: #22709E;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.lnch-pg .currency-h2 .h2-text {
  position: relative;
  z-index: 1;
}

.lnch-pg .currency-body {
  font-size: 16px;
  line-height: 1.6;
  color: #2d3748;
  text-align: justify;
  margin-bottom: 24px;
}

.lnch-pg .currency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.lnch-pg .curr-item {
  background: #fff;
  border-radius: 2px;
  padding: 24px;
  box-shadow: -1px 1px 3px 0 rgba(34, 112, 158, 0.05);
  transition: box-shadow 0.6s ease;
}

.lnch-pg .curr-item:hover {
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
}

.lnch-pg .curr-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background: #DEEFF8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.lnch-pg .curr-item-icon i {
  font-size: 20px;
  color: #22709E;
}

.lnch-pg .curr-item-h {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
  line-height: 1.3;
}

.lnch-pg .curr-item-p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
}

.lnch-pg .currency-img-col {
  flex: 0 0 380px;
  position: relative;
}

.lnch-pg .currency-img-wrap {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
  position: relative;
}

.lnch-pg .currency-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
  filter: saturate(1);
}

.lnch-pg .currency-img-wrap:hover img {
  transform: scale(1.04);
  filter: saturate(0);
}

.lnch-pg .currency-img-wrap:not(:hover) img {
  filter: saturate(1);
}

.lnch-pg .currency-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to right, rgba(34, 112, 158, 0.88), transparent);
}

.lnch-pg .currency-overlay-txt {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  font-weight: 600;
}

.lnch-pg .currency-strokes {
  top: -16px;
  right: 0;
}

/* ─── SECTION 3: WHO BELONGS ─── */
.lnch-pg .fit-blk {
  background: #fff;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}

.lnch-pg .fit-blk .pg-bound {
  display: flex;
  flex-direction: column;
}

.lnch-pg .fit-top {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.lnch-pg .fit-h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #111827;
  font-weight: 700;
  flex: 0 0 340px;
  position: relative;
}

.lnch-pg .fit-h2 .fade-num {
  position: absolute;
  left: -8px;
  top: -16px;
  font-size: 70px;
  line-height: 1.1;
  font-weight: 800;
  color: #22709E;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.lnch-pg .fit-h2 .h2-text {
  position: relative;
  z-index: 1;
}

.lnch-pg .fit-intro {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #2d3748;
  text-align: justify;
}

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

.lnch-pg .tier-card {
  border-radius: 2px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 1px 3px 0 rgba(34, 112, 158, 0.05);
  transition: box-shadow 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.55s ease;
}

.lnch-pg .tier-card:hover {
  box-shadow: -1px 9px 48px 0 rgba(34, 112, 158, 0.11);
  transform: translateY(-4px);
}

.lnch-pg .tier-card.basic {
  background: #DEEFF8;
  border-top: 3px solid #A2BFE5;
}

.lnch-pg .tier-card.standard {
  background: #fff;
  border: 1px solid #A2BFE5;
  border-top: 3px solid #22709E;
}

.lnch-pg .tier-card.advanced {
  background: #22709E;
  border-top: 3px solid #1a5f88;
}

.lnch-pg .tier-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.lnch-pg .tier-card.basic .tier-label {
  color: #22709E;
}

.lnch-pg .tier-card.standard .tier-label {
  color: #22709E;
}

.lnch-pg .tier-card.advanced .tier-label {
  color: #DEEFF8;
}

.lnch-pg .tier-h {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
}

.lnch-pg .tier-card.basic .tier-h {
  color: #111827;
}

.lnch-pg .tier-card.standard .tier-h {
  color: #111827;
}

.lnch-pg .tier-card.advanced .tier-h {
  color: #fff;
}

.lnch-pg .tier-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.lnch-pg .tier-list li {
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.lnch-pg .tier-card.basic .tier-list li {
  color: #2d3748;
}

.lnch-pg .tier-card.standard .tier-list li {
  color: #2d3748;
}

.lnch-pg .tier-card.advanced .tier-list li {
  color: #DEEFF8;
}

.lnch-pg .tier-list li .li-num {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  opacity: 0.15;
  flex-shrink: 0;
  margin-top: -4px;
}

.lnch-pg .tier-card.basic .li-num {
  color: #22709E;
}

.lnch-pg .tier-card.standard .li-num {
  color: #22709E;
}

.lnch-pg .tier-card.advanced .li-num {
  color: #fff;
}

.lnch-pg .tier-portrait {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.lnch-pg .tier-portrait-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.lnch-pg .tier-portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lnch-pg .tier-portrait-info {
  display: flex;
  flex-direction: column;
}

.lnch-pg .tier-portrait-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.lnch-pg .tier-portrait-role {
  font-size: 14px;
  line-height: 1.3;
  opacity: 0.7;
}

.lnch-pg .tier-card.basic .tier-portrait-name {
  color: #111827;
}

.lnch-pg .tier-card.standard .tier-portrait-name {
  color: #111827;
}

.lnch-pg .tier-card.advanced .tier-portrait-name {
  color: #fff;
}

.lnch-pg .tier-card.basic .tier-portrait-role {
  color: #4a5568;
}

.lnch-pg .tier-card.standard .tier-portrait-role {
  color: #4a5568;
}

.lnch-pg .tier-card.advanced .tier-portrait-role {
  color: #DEEFF8;
}

/* ─── SECTION 4: EXPERIENCE SHAPE ─── */
.lnch-pg .exp-blk {
  background: #111827;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.lnch-pg .exp-blk .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  mix-blend-mode: luminosity;
  display: block;
}

.lnch-pg .exp-blk .pg-bound {
  position: relative;
  z-index: 1;
}

.lnch-pg .exp-head {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-end;
  margin-bottom: 48px;
}

.lnch-pg .exp-h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
  flex: 0 0 400px;
  position: relative;
}

.lnch-pg .exp-h2 .fade-num {
  position: absolute;
  left: -8px;
  top: -16px;
  font-size: 70px;
  line-height: 1.1;
  font-weight: 800;
  color: #A2BFE5;
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}

.lnch-pg .exp-h2 .h2-text {
  position: relative;
  z-index: 1;
}

.lnch-pg .exp-sub {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #A2BFE5;
  text-align: justify;
}

.lnch-pg .exp-phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lnch-pg .phase-card {
  background: rgba(34, 112, 158, 0.12);
  border-radius: 2px;
  padding: 24px;
  border-top: 2px solid rgba(162, 191, 229, 0.3);
  transition: background 0.65s ease, border-color 0.55s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lnch-pg .phase-card:hover {
  background: rgba(34, 112, 158, 0.28);
  border-color: #22709E;
}

.lnch-pg .phase-num {
  font-size: 70px;
  line-height: 1.1;
  font-weight: 800;
  color: #22709E;
  opacity: 0.35;
  margin-bottom: 8px;
  display: block;
}

.lnch-pg .phase-h {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.lnch-pg .phase-p {
  font-size: 14px;
  line-height: 1.6;
  color: #A2BFE5;
}

.lnch-pg .exp-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.lnch-pg .exp-img-wrap {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
  position: relative;
}

.lnch-pg .exp-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
  filter: saturate(1);
}

.lnch-pg .exp-img-wrap:hover img {
  transform: scale(1.05);
  filter: saturate(0);
}

.lnch-pg .exp-img-wrap:not(:hover) img {
  filter: saturate(1);
}

.lnch-pg .exp-img-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to right, rgba(34, 112, 158, 0.85), transparent);
}

.lnch-pg .exp-img-cap-txt {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
}

.lnch-pg .exp-strokes {
  bottom: 24px;
  right: 0;
}

.lnch-pg .exp-strokes span {
  background: rgba(162, 191, 229, 0.4);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .lnch-pg .pg-bound {
    padding-left: 24px;
    padding-right: 24px;
  }

  .lnch-pg .title-blk .pg-bound {
    flex-direction: column;
  }

  .lnch-pg .title-img-col {
    flex: none;
    height: 280px;
  }

  .lnch-pg .title-h1 {
    font-size: 36px;
  }

  .lnch-pg .title-accent-line {
    display: none;
  }

  .lnch-pg .currency-blk .pg-bound {
    flex-direction: column;
  }

  .lnch-pg .currency-img-col {
    flex: none;
  }

  .lnch-pg .fit-tiers {
    grid-template-columns: 1fr 1fr;
  }

  .lnch-pg .exp-phases {
    grid-template-columns: 1fr 1fr;
  }

  .lnch-pg .fit-top {
    flex-direction: column;
  }

  .lnch-pg .fit-h2 {
    flex: none;
  }

  .lnch-pg .exp-head {
    flex-direction: column;
    gap: 16px;
  }

  .lnch-pg .exp-h2 {
    flex: none;
  }
}

@media (max-width: 768px) {
  .lnch-pg .title-h1 {
    font-size: 36px;
  }

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

  .lnch-pg .fit-tiers {
    grid-template-columns: 1fr;
  }

  .lnch-pg .exp-phases {
    grid-template-columns: 1fr 1fr;
  }

  .lnch-pg .exp-img-row {
    grid-template-columns: 1fr;
  }

  .lnch-pg .title-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .lnch-pg .title-sep {
    display: none;
  }
}

@media (max-width: 480px) {
  .lnch-pg .pg-bound {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lnch-pg .title-h1 {
    font-size: 36px;
  }

  .lnch-pg .exp-phases {
    grid-template-columns: 1fr;
  }

  .lnch-pg .phase-num {
    font-size: 36px;
  }
}

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

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

.success-page .icon-ring {
  width: 80px;
  height: 80px;
  border-radius: 42px;
  background: #DEEFF8;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
}

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

.success-page .success-heading {
  font-size: 36px;
  line-height: 1.1;
  color: #22709E;
  margin: 0 0 16px;
}

.success-page .success-text {
  font-size: 16px;
  line-height: 1.6;
  color: #2c4a5e;
  margin: 0 0 48px;
}

.success-page .divider-line {
  width: 48px;
  height: 2px;
  background: #A2BFE5;
  border-radius: 2px;
  margin: 0 auto 48px;
}

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

.success-page .btn-primary {
  display: inline-block;
  padding: 16px 48px;
  background: #22709E;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.3;
  border-radius: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: -1px 6px 18px 0 rgba(34, 112, 158, 0.11);
  transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-page .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: #1a5a80;
  transition: left 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.success-page .btn-primary:hover::after {
  left: 0;
}

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

.success-page .btn-secondary {
  display: inline-block;
  padding: 16px 24px;
  background: transparent;
  color: #22709E;
  font-size: 16px;
  line-height: 1.3;
  border-radius: 2px;
  text-decoration: none;
  border: 1.5px solid #A2BFE5;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.7s ease, border-color 0.7s ease;
}

.success-page .btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: #DEEFF8;
  transition: left 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.success-page .btn-secondary:hover::after {
  left: 0;
}

.success-page .btn-secondary span {
  position: relative;
  z-index: 1;
}

.success-page .btn-primary:focus-visible,
.success-page .btn-secondary:focus-visible {
  outline: 3px solid #22709E;
  outline-offset: 3px;
}

.success-page .meta-note {
  margin-top: 48px;
  font-size: 14px;
  line-height: 1.6;
  color: #4a7a9b;
}

.success-page .meta-note a {
  color: #22709E;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.5s ease;
}

.success-page .meta-note a:hover {
  color: #1a5a80;
}

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

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

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

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