:root {
      --gr: #1a8c6b;
      --gr-dk: #146b52;
      --gr-lt: #e8f6f1;
      --gr-pl: #f2fbf7;
      --bl: #1b4f72;
      --bl-lt: #eaf1f8;
      --sk: #4a9eca;
      --sk-lt: #e8f4fc;
      --sk-md: #2e86c1;
      --sk-pl: #f0f8ff;
      --gd: #b5860d;
      --gd-lt: #fdf6e3;
      --gd-bd: #e2c97a;
      --sg: #d4e8df;
      --sg-dk: #b8d8ca;
      --wh: #ffffff;
      --off: #f6f9f7;
      --off2: #eef5f1;
      --bd: #d8e8e1;
      --tx: #1c2b24;
      --mt: #4d6b5f;
      --lt: #7a9188;
      --ff-b: 'Jost', 'Trebuchet MS', sans-serif;
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--ff-b);
      font-size: 16px;
      color: var(--tx);
      background: #fff;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: var(--ff-h);
      color: var(--bl);
      line-height: 1.2
    }

    a {
      color: var(--gr);
      text-decoration: none
    }

    a:hover {
      color: var(--gr-dk)
    }

    img {
      max-width: 100%;
      height: auto;
      display: block
    }

    p {
      color: var(--mt)
    }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--bl);
      padding: 0
    }

    .topbar-inner {
      display: flex;
      align-items: stretch;
      justify-content: space-between
    }

    .tb-contacts {
      display: flex;
      align-items: stretch
    }

    .tb-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 9px 24px;
      border-right: 1px solid rgba(255, 255, 255, .1);
      text-decoration: none;
      transition: background .2s;
    }

    .tb-item:hover {
      background: rgba(255, 255, 255, .06)
    }

    .tb-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #7ecdb4;
      font-size: .9rem;
      flex-shrink: 0;
      transition: background .2s;
    }

    .tb-item:hover .tb-icon {
      background: var(--gr)
    }

    .tb-txt small {
      display: block;
      font-size: .68rem;
      color: rgba(255, 255, 255, .45);
      font-weight: 400;
      letter-spacing: .04em;
      line-height: 1.2
    }

    .tb-txt span {
      display: block;
      font-size: .86rem;
      color: #fff;
      font-weight: 600
    }

    .tb-meta {
      display: flex;
      align-items: center
    }

    .tb-meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 0 18px;
      border-left: 1px solid rgba(255, 255, 255, .1);
      font-size: .76rem;
      color: rgba(255, 255, 255, .55);
      height: 100%;
    }

    .tb-meta-item i {
      color: #7ecdb4;
      font-size: .7rem
    }
/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--bd);
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .07)
}

.navbar {
  padding: 0
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
  padding: 11px 0
}

.site-logo {
  height: 48px;
  width: auto;
}

.logo-sq {
  width: 48px;
  height: 48px;
  background: var(--gr);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.logo-txt .ln {
  font-family: var(--ff-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bl);
  display: block;
  line-height: 1.2
}

.logo-txt .ls {
  font-size: .63rem;
  color: var(--gr);
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  display: block
}

/* ── NAV LINKS — base ── */
.navbar-nav .nav-link {
  font-size: .84rem;
  font-weight: 500;
  color: var(--tx) !important;
  padding: 8px 13px !important;
  border-radius: 7px;
  border-bottom: none;
  transition: background .18s, color .18s;
  margin: 0 1px;
}

.navbar-nav .nav-link:hover {
  background: var(--gr-lt);
  color: var(--gr) !important;
}

/* ── LIGHT PILL ACTIVE — desktop ── */
.navbar-nav .nav-item.active > .nav-link {
  background: var(--gr-lt);
  color: var(--gr) !important;
  font-weight: 700;
  border-radius: 7px;
}

.navbar-nav .nav-item.active > .nav-link:hover {
  background: #c8ede1;
  color: var(--gr) !important;
}

/* ── DROPDOWN PARENT tint when a child is active ── */
.navbar-nav .nav-item.active-dd > .nav-link {
  background: var(--gr-lt);
  color: var(--gr) !important;
  font-weight: 700;
}

.navbar-nav .nav-item.active-dd > .nav-link:hover {
  background: #c8ede1;
  color: var(--gr) !important;
}

/* ── CTA BUTTON — original green ── */
.navbar-nav .nav-cta .nav-link,
.navbar-nav .nav-cta.active .nav-link {
  background: var(--gr) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 7px !important;
  font-weight: 600 !important;
  margin-left: 8px;
  border-bottom: none !important;
  transition: background .2s, transform .18s, box-shadow .2s !important;
}

.navbar-nav .nav-cta .nav-link:hover {
  background: var(--gr-dk) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(26, 140, 107, .3) !important
}

/* ── DROPDOWN MENU ── */
.dropdown-menu {
  border: 1px solid var(--bd);
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .1);
  padding: 6px;
  min-width: 230px;
  border-top: none;
  margin-top: 0 !important; /* ← was 6px */
}

.dropdown-item {
  font-size: .83rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tx);
  transition: background .14s, color .14s, padding-left .16s
}

.dropdown-item i {
  font-size: .58rem;
  color: var(--gr)
}

.dropdown-item:hover {
  background: var(--gr-lt);
  color: var(--gr);
  padding-left: 16px
}

/* ── DROPDOWN ACTIVE ITEM — light pill ── */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  background: var(--gr-lt);
  color: var(--gr);
  font-weight: 700;
}

.dropdown-menu .dropdown-item.active i {
  color: var(--gr);
  opacity: 1;
}

.dropdown-menu .dropdown-item.active:hover {
  background: #c8ede1;
  padding-left: 16px;
}

/* ── tb-meta: desktop only (≥1440px) ── */
.tb-meta {
  display: none;
}
@media(min-width: 1440px) {
  .tb-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
  }
}

/* ── 1200px–1439px — logo + nav shrink ── */
@media(min-width: 1200px) and (max-width: 1439px) {
  .site-logo { height: 38px; }
  .navbar-nav .nav-link {
    font-size: .80rem !important;
    padding: 7px 10px !important;
  }
  .navbar-nav .nav-cta .nav-link {
    padding: 8px 16px !important;
    margin-left: 4px;
  }
  .tb-txt small { display: none; }
  .tb-item { padding: 3px 8px; gap: 6px; }
  .tb-icon { width: 22px; height: 22px; font-size: .72rem; }
  .tb-txt span { font-size: .74rem; }
}

/* ── 992px–1199px — hide logo text, further shrink ── */
@media(min-width: 992px) and (max-width: 1199px) {
  .logo-txt { display: none; }
  .site-logo { height: 36px; }
  .logo-wrap { gap: 0; }
  .navbar-nav .nav-link {
    font-size: .76rem !important;
    padding: 6px 8px !important;
    white-space: nowrap;
  }
  .navbar-nav .nav-cta .nav-link {
    padding: 7px 13px !important;
    font-size: .76rem !important;
    margin-left: 4px;
  }
  .tb-txt small { display: none; }
  .tb-item { padding: 3px 8px; gap: 6px; }
  .tb-icon { width: 22px; height: 22px; font-size: .72rem; }
  .tb-txt span { font-size: .74rem; }
}

/* ── MOBILE NAV — below 992px ── */
@media(max-width: 991.98px) {

  .tb-txt small { display: none; }
  .tb-contacts { justify-content: center; gap: 4px; }
  .topbar-inner { justify-content: center; }
  .tb-item { padding: 3px 8px; gap: 6px; }
  .tb-icon { width: 22px; height: 22px; font-size: .72rem; }
  .tb-txt span { font-size: .74rem; }

  .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--bd);
    padding: 8px 12px 14px;
  }

  .navbar-nav .nav-link {
    padding: 10px 14px !important;
    border-radius: 8px;
    border-bottom: none;
    border-left: none;
    margin: 1px 0;
  }

  .navbar-nav .nav-link:hover {
    background: var(--gr-lt);
    color: var(--gr) !important;
  }

  /* mobile active — light pill */
  .navbar-nav .nav-item.active > .nav-link {
    background: var(--gr-lt);
    color: var(--gr) !important;
    font-weight: 700;
    border-radius: 8px;
  }

  .navbar-nav .nav-item.active > .nav-link:hover {
    background: #c8ede1;
  }

  /* mobile dropdown parent active tint */
  .navbar-nav .nav-item.active-dd > .nav-link {
    background: var(--gr-lt);
    color: var(--gr) !important;
    border-radius: 8px;
    font-weight: 700;
  }

  .dropdown-menu {
    box-shadow: none;
    border: none;
    border-top: none;
    background: var(--off);
    border-radius: 8px;
    padding: 4px 0 6px 12px;
    margin-top: 2px !important;
  }

  .dropdown-item {
    border-radius: 6px;
    padding: 8px 12px;
  }

  /* CTA full width on mobile */
  .navbar-nav .nav-cta {
    padding: 6px 0 0;
  }
  .navbar-nav .nav-cta .nav-link {
    display: block;
    text-align: center;
    margin-left: 0 !important;
    border-radius: 8px !important;
    padding: 11px 22px !important;
  }
}

/* ── Very small phones ── */
@media(max-width: 599px) {
  .tb-item--email { display: none; }
}

@media(max-width: 575.98px) {
  .navbar-brand.logo-wrap { padding: 10px 0; }
  .site-logo { height: 40px; }
  .footer-col { flex: 0 0 100%; max-width: 100%; }
}


/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.site-footer {
  background: #0c2233;
  color: rgba(255, 255, 255, .6);
  padding: 58px 0 0
}

.footer-brand-name {
  font-family: var(--ff-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: block
}

.footer-brand-tag {
  font-size: .63rem;
  color: #7ecdb4;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 2px;
  display: block
}

.footer-brand-desc {
  font-size: .85rem;
  color: rgba(255, 255, 255, .48);
  line-height: 1.78;
  margin: 14px 0 18px
}

.footer-social {
  display: flex;
  gap: 8px
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: .82rem;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}

.footer-social a:hover {
  background: var(--gr);
  color: #fff;
  transform: translateY(-3px)
}

.footer-col h5 {
  font-family: var(--ff-b);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .5);
  font-size: .84rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s, padding-left .2s
}

.footer-col ul li a i {
  font-size: .56rem;
  color: var(--gr);
  opacity: .7
}

.footer-col ul li a:hover {
  color: #7ecdb4;
  padding-left: 5px
}

.footer-bottom span a:hover { color: #7ecdb4; }
.footer-bottom span a { color: rgba(255,255,255,.27); text-decoration: none; }

/* ── FOOTER NEWSLETTER ── */
.footer-newsletter {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 24px
}

.footer-newsletter h4 {
  font-family: var(--ff-h);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px
}

.footer-newsletter p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 14px;
  line-height: 1.65
}

.fn-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.fn-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(26,140,107,.18);
  border: 1px solid rgba(26,140,107,.3);
  color: #7ecdb4;
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .02em;
}
.fn-tag i { font-size: .6rem; }

.nl-row {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 5px;
  overflow: hidden
}

.nl-first,
.nl-last {
  flex: 1;
  background: rgba(255, 255, 255, .07);
  border: none;
  border-right: 1px solid rgba(255, 255, 255, .12);
  padding: 10px 13px;
  font-family: var(--ff-b);
  font-size: .84rem;
  color: #fff;
  outline: none
}

.nl-first::placeholder,
.nl-last::placeholder { color: rgba(255, 255, 255, .32) }
.nl-last { border-right: none }

.nl-email {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, .07);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 10px 13px;
  font-family: var(--ff-b);
  font-size: .84rem;
  color: #fff;
  outline: none
}
.nl-email::placeholder { color: rgba(255, 255, 255, .32) }

.nl-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 14px;
  font-size: .77rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.55
}
.nl-check input { margin-top: 3px; flex-shrink: 0 }
.nl-check a { color: #7ecdb4; text-decoration: underline }

.nl-btn {
  width: 100%;
  background: #fff;
  color: var(--bl);
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-family: var(--ff-b);
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s
}
.nl-btn:hover { background: var(--gr-lt); color: var(--gr) }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: .77rem;
  color: rgba(255, 255, 255, .27);
  margin-top: 42px
}

/* ── FOOTER GET IN TOUCH ROW ── */
.footer-getintouch {
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  row-gap: 20px;
}

.footer-getintouch-item { flex: 1; min-width: 120px; }

.footer-getintouch-label {
  font-size: .65rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-getintouch-value {
  font-size: .80rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  text-decoration: none;
  display: block;
}

a.footer-getintouch-value:hover { color: #7ecdb4; }


/* ══════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════ */
.sr {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease
}
.sr.vis { opacity: 1; transform: translateY(0) }

.sr-l {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .5s ease, transform .5s ease
}
.sr-l.vis { opacity: 1; transform: translateX(0) }

.sr-r {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .5s ease, transform .5s ease
}
.sr-r.vis { opacity: 1; transform: translateX(0) }


/* ══════════════════════════════════════
   RESPONSIVE — ADDITIONAL BREAKPOINTS
   ══════════════════════════════════════ */
@media(max-width:767px) {
  .hero { padding: 52px 0 44px }
  .section { padding: 56px 0 }
  .footer-bottom { flex-direction: column; text-align: center }
  .hero-rings { display: none }
  .footer-getintouch { flex-direction: column; gap: 14px; }
  .footer-getintouch-item { min-width: unset; }
}
    /* ── HERO ── */
    .hero {
      background: #dff0e8;
      background-image: radial-gradient(circle at 75% 50%, rgba(255, 255, 255, .6) 0%, transparent 55%);
      padding: 80px 0 70px;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--sg);
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(26, 140, 107, .04) 1px, transparent 1px);
      background-size: 38px 38px;
      pointer-events: none
    }

    .hero-rings {
      position: absolute;
      right: -100px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      z-index: 0
    }

    .hero-rings span {
      display: block;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border: 1px solid rgba(26, 140, 107, .13)
    }

    .hero-rings span:nth-child(1) {
      width: 480px;
      height: 480px;
      background: rgba(26, 140, 107, .04)
    }

    .hero-rings span:nth-child(2) {
      width: 320px;
      height: 320px;
      background: rgba(26, 140, 107, .07)
    }

    .hero-rings span:nth-child(3) {
      width: 160px;
      height: 160px;
      background: rgba(26, 140, 107, .10)
    }

    .hero>.container {
      position: relative;
      z-index: 1
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gd-lt);
      border: 1px solid var(--gd-bd);
      color: var(--gd);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 3px;
      margin-bottom: 22px;
    }

    .hero h1 {
      font-size: clamp(2.1rem, 4.5vw, 3.3rem);
      font-weight: 700;
      color: var(--bl);
      margin-bottom: 18px;
      line-height: 1.12
    }

    .hero h1 em {
      color: var(--gr);
      font-style: normal
    }

    .hero-sub {
      font-size: .98rem;
      color: var(--mt);
      max-width: 510px;
      margin-bottom: 36px;
      line-height: 1.85;
      font-family: var(--ff-b)
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap
    }

    .btn-g {
      background: var(--gr);
      color: #fff;
      padding: 12px 28px;
      border-radius: 5px;
      font-size: .9rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      border: 2px solid var(--gr);
      transition: background .2s, transform .18s, box-shadow .2s;
      box-shadow: 0 2px 0 rgba(0, 0, 0, .1)
    }

    .btn-g:hover {
      background: var(--gr-dk);
      border-color: var(--gr-dk);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 8px 22px rgba(26, 140, 107, .3)
    }

    .btn-o {
      background: transparent;
      color: var(--bl);
      padding: 12px 26px;
      border-radius: 5px;
      font-size: .9rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      border: 2px solid var(--sg-dk);
      transition: border-color .2s, color .2s, background .2s, transform .18s
    }

    .btn-o:hover {
      border-color: var(--gr);
      color: var(--gr);
      background: rgba(26, 140, 107, .05);
      transform: translateY(-3px)
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 34px;
      padding-top: 26px;
      border-top: 1px solid rgba(26, 140, 107, .18)
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: .79rem;
      font-weight: 600;
      color: var(--mt)
    }

    .trust-item i {
      color: var(--gr);
      font-size: .79rem
    }

    .hero-panel {
      background: rgba(255, 255, 255, .88);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(26, 140, 107, .2);
      border-top: 4px solid var(--gr);
      border-radius: 10px;
      padding: 28px 26px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
      position: relative;
      z-index: 1
    }

    .hp-ttl {
      font-family: var(--ff-h);
      font-size: 1rem;
      font-weight: 700;
      color: var(--bl);
      border-bottom: 1px solid var(--bd);
      padding-bottom: 12px;
      margin-bottom: 18px
    }

    .hp-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 0;
      border-bottom: 1px solid var(--bd)
    }

    .hp-row:last-of-type {
      border-bottom: none;
      padding-bottom: 0
    }

    .hp-ico {
      width: 42px;
      height: 42px;
      background: var(--gr-lt);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gr);
      font-size: 1rem;
      flex-shrink: 0;
      transition: background .2s, color .2s
    }

    .hp-row:hover .hp-ico {
      background: var(--gr);
      color: #fff
    }

    .hp-n {
      font-family: var(--ff-h);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gr);
      line-height: 1
    }

    .hp-l {
      font-size: .77rem;
      color: var(--mt);
      margin-top: 2px
    }

    .hp-badge {
      display: block;
      background: var(--gd-lt);
      border: 1px solid var(--gd-bd);
      color: var(--gd);
      font-size: .72rem;
      font-weight: 700;
      text-align: center;
      padding: 8px 14px;
      border-radius: 4px;
      margin-top: 16px;
      letter-spacing: .04em
    }

    /* ── ACHIEVEMENT ── */
    .achievement {
      background: #fff;
      padding: 60px 0;
      border-bottom: 1px solid var(--bd)
    }

    .ach-heading .ach-rule {
      width: 4px;
      height: 44px;
      background: var(--gr);
      border-radius: 2px;
      flex-shrink: 0
    }

    .ach-heading h2 {
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--bl);
      margin: 0;
      line-height: 1.15
    }

    .ach-heading h2 em {
      color: var(--gr);
      font-style: normal
    }

    .ach-heading p {
      font-size: .93rem;
      color: var(--mt);
      margin: 8px 0 0;
      max-width: 500px;
      line-height: 1.75
    }

    .ach-stats {
      display: flex;
      align-items: center;
      gap: 0;
      flex-wrap: wrap
    }

    .ach-stat {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 0 28px;
      border-right: 1px solid var(--bd);
      min-width: 160px
    }

    .ach-stat:first-child {
      padding-left: 0
    }

    .ach-stat:last-child {
      border-right: none
    }

    .ach-stat-icon {
      width: 58px;
      height: 58px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .ach-stat-icon svg {
      width: 48px;
      height: 48px;
      stroke: var(--mt);
      stroke-width: 1.2;
      fill: none;
      opacity: .7
    }

    .ach-num {
      font-family: var(--ff-h);
      font-size: 2.6rem;
      font-weight: 700;
      color: var(--gr);
      line-height: 1;
      display: block
    }

    .ach-lbl {
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--mt);
      display: block;
      margin-top: 3px
    }

    @media(max-width:767px) {
      .ach-stats {
        gap: 28px
      }

      .ach-stat {
        flex: 0 0 calc(50% - 14px);
        border-right: none;
        padding: 0
      }
    }

    /* ── SECTION BASE ── */
    .section {
      padding: 60px 0
    }

    .sec-wh {
      background: #fff
    }

    .sec-off {
      background: var(--off)
    }

    .sec-off2 {
      background: var(--off2)
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: var(--gr);
      margin-bottom: 10px;
    }


    .sec-title {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      color: var(--bl);
      margin-bottom: 14px
    }

    .sec-rule {
      width: 42px;
      height: 3px;
      background: var(--gr);
      border-radius: 2px;
      margin-bottom: 18px
    }

    .sec-rule.cx {
      margin-left: auto;
      margin-right: auto
    }

    .sec-desc {
      font-size: .96rem;
      color: var(--mt);
      line-height: 1.85;
      max-width: 560px
    }

    /* ── ABOUT ── */
    .about-text p {
      font-size: .97rem;
      line-height: 1.9;
      color: var(--mt);
      margin-bottom: 16px
    }

    /* ── ABOUT 2x2 CARDS ── */
    .about-cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    @media(max-width:575px) {
      .about-cards-grid {
        grid-template-columns: 1fr
      }
    }

    .about-feat-card {
      background: #fff;
      border-radius: 12px;
      padding: 22px 20px 20px;
      border: 1px solid var(--bd);
      position: relative;
      overflow: hidden;
      transition: box-shadow .25s, transform .22s, border-color .25s;
    }

    .about-feat-card:nth-child(1),
    .about-feat-card:nth-child(3) {
      border-top: 3px solid var(--gr);
    }

    .about-feat-card:nth-child(2),
    .about-feat-card:nth-child(4) {
      border-top: 3px solid var(--sk);
    }

    .about-feat-card:hover {
      box-shadow: 0 10px 30px rgba(0,0,0,.08);
      transform: translateY(-3px);
    }

    .about-feat-card:nth-child(1):hover,
    .about-feat-card:nth-child(3):hover {
      border-color: rgba(26,140,107,.35);
    }

    .about-feat-card:nth-child(2):hover,
    .about-feat-card:nth-child(4):hover {
      border-color: rgba(74,158,202,.35);
    }

    .afc-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      margin-bottom: 14px;
      transition: transform .2s;
    }

    .about-feat-card:nth-child(1) .afc-icon-wrap,
    .about-feat-card:nth-child(3) .afc-icon-wrap {
      background: var(--gr-lt);
      color: var(--gr);
    }

    .about-feat-card:nth-child(2) .afc-icon-wrap,
    .about-feat-card:nth-child(4) .afc-icon-wrap {
      background: var(--sk-lt);
      color: var(--sk);
    }

    .about-feat-card:hover .afc-icon-wrap {
      transform: scale(1.08) rotate(-4deg);
    }

    .afc-title {
      font-size: .93rem;
      font-weight: 700;
      color: var(--bl);
      margin-bottom: 7px;
      line-height: 1.3;
    }

    .afc-desc {
      font-size: .83rem;
      line-height: 1.72;
      color: var(--mt);
      margin: 0;
    }

    /* extra info row below cards */
    .about-info-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: var(--gr-lt);
      border: 1px solid rgba(26,140,107,.2);
      border-radius: 8px;
      padding: 14px 18px;
      margin-top: 18px;
    }

    .about-info-row i {
      color: var(--gr);
      font-size: 1rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .about-info-row p {
      font-size: .83rem;
      color: var(--mt);
      line-height: 1.65;
      margin: 0;
    }

    /* ── WHY CARDS ── */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px
    }

    @media(max-width:991px) {
      .why-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:575px) {
      .why-grid {
        grid-template-columns: 1fr
      }
    }

    .why-card {
      background: #fff;
      border-radius: 14px;
      padding: 30px 24px 26px;
      border: 1px solid #e2edf5;
      position: relative;
      overflow: hidden;
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }

    .why-card:nth-child(1) { background: var(--sk-pl); }
    .why-card:nth-child(2) { background: #fff; }
    .why-card:nth-child(3) { background: var(--sk-pl); }
    .why-card:nth-child(4) { background: #fff; }

    .why-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, .09);
      border-color: #c9e4f5
    }

    .why-card-title {
      font-family: var(--ff-h);
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--bl);
      margin-bottom: 18px;
      line-height: 1.25
    }

    .why-icon {
      width: 52px;
      height: 52px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 16px;
      transition: transform .25s;
    }

    .why-card:nth-child(1) .why-icon { background: var(--sk-lt); color: var(--sk); }
    .why-card:nth-child(2) .why-icon { background: var(--gr-lt); color: var(--gr); }
    .why-card:nth-child(3) .why-icon { background: var(--sk-lt); color: var(--sk); }
    .why-card:nth-child(4) .why-icon { background: var(--gr-lt); color: var(--gr); }

    .why-card:hover .why-icon {
      transform: scale(1.08) rotate(-5deg)
    }

    .why-card p {
      font-size: .87rem;
      line-height: 1.78;
      margin-bottom: 0;
      color: var(--mt)
    }

    /* ── SERVICES — icon INSIDE colored circle, image-reference style ── */
    .svc-grid-img1 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    @media(max-width:767px) {
      .svc-grid-img1 { grid-template-columns: 1fr }
    }

    .svc-card-img1 {
      display: flex;
      align-items: stretch;
      gap: 0;
      background: #fff;
      border: 1px solid #e0eef6;
      border-radius: 10px;
      overflow: hidden;
      transition: box-shadow .25s, transform .22s;
    }

    .svc-card-img1:hover {
      box-shadow: 0 8px 28px rgba(0, 0, 0, .09);
      transform: translateY(-3px)
    }

    /* Icon column — full-height colored block, icon centered inside */
    .svc-icon-col {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
      flex-shrink: 0;
      min-width: 80px;
    }

    /* Odd cards: green icon column bg */
    .svc-card-img1:nth-child(odd) .svc-icon-col {
      background: var(--gr);
    }

    /* Even cards: sky-blue icon column bg */
    .svc-card-img1:nth-child(even) .svc-icon-col {
      background: var(--sk);
    }

    /* Last CTA card override */
    .svc-card-img1.svc-cta .svc-icon-col {
      background: var(--sk-md);
    }

    .svc-icon-circle {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
      background: rgba(255,255,255,0.2);
      color: #fff;
      transition: background .2s, transform .2s;
    }

    .svc-card-img1:hover .svc-icon-circle {
      background: rgba(255,255,255,0.35);
      transform: scale(1.08);
    }

    .svc-body {
      padding: 20px 20px 20px 18px;
      flex: 1;
    }

    .svc-body h3 {
      font-family: var(--ff-h);
      font-size: 1rem;
      font-weight: 700;
      color: var(--bl);
      margin-bottom: 6px
    }

    .svc-body p {
      font-size: .85rem;
      line-height: 1.72;
      color: var(--mt);
      margin-bottom: 0;
    }

    /* ── PROCESS — zigzag layout ── */
    .process-zigzag {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 15px
    }

    .pz-row {
      display: flex;
      align-items: center;
      gap: 32px
    }

    .pz-row.left .pz-card { order: 2 }
    .pz-row.left .pz-connector { order: 1 }
    .pz-row.right .pz-card { order: 1 }
    .pz-row.right .pz-connector { order: 2 }

    .pz-connector {
      flex: 0 0 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      position: relative;
    }

    .pz-dot {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-h);
      font-size: 1.4rem;
      font-weight: 700;
      color: #fff;
      box-shadow: 0 4px 18px rgba(0, 0, 0, .15);
      flex-shrink: 0;
      position: relative;
      z-index: 2;
      transition: transform .2s;
    }

    .pz-row:hover .pz-dot { transform: scale(1.1) }

    .pz-row:nth-child(odd) .pz-dot { background: var(--gr); }
    .pz-row:nth-child(even) .pz-dot { background: var(--sk); }

    .pz-card {
      flex: 1;
      background: #fff;
      border-radius: 12px;
      padding: 24px 28px;
      border: 1px solid #e0eef0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
      transition: box-shadow .22s, transform .22s, border-color .22s;
    }

    .pz-card:hover {
      box-shadow: 0 10px 30px rgba(0, 0, 0, .09);
      transform: translateY(-3px);
    }

    .pz-row:nth-child(odd) .pz-card { border-left: 4px solid var(--gr); }
    .pz-row:nth-child(even) .pz-card { border-left: 4px solid var(--sk); }

    .pz-card-hd {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px
    }

    .pz-card-ico {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
      flex-shrink: 0;
      transition: background .2s, color .2s;
    }

    .pz-row:nth-child(odd) .pz-card-ico { background: var(--gr-lt); color: var(--gr); }
    .pz-row:nth-child(even) .pz-card-ico { background: var(--sk-lt); color: var(--sk); }

    .pz-row:hover .pz-card-ico { color: #fff; }
    .pz-row:nth-child(odd):hover .pz-card-ico { background: var(--gr); }
    .pz-row:nth-child(even):hover .pz-card-ico { background: var(--sk); }

    .pz-card-hd h4 {
      font-family: var(--ff-h);
      font-size: 1.03rem;
      font-weight: 700;
      color: var(--bl);
      margin: 0
    }

    .pz-card p {
      font-size: .88rem;
      line-height: 1.76;
      color: var(--mt);
      margin: 0
    }

    .pz-line {
      width: 2px;
      height: 32px;
      margin: 0 auto;
    }

    .pz-line.gr { background: linear-gradient(var(--gr), var(--sk)) }
    .pz-line.sk { background: linear-gradient(var(--sk), var(--gr)) }

    @media(max-width:767px) {
      .pz-row {
        flex-direction: column !important;
        gap: 16px
      }

      .pz-row.left .pz-card,
      .pz-row.right .pz-card { order: 2 }

      .pz-row.left .pz-connector,
      .pz-row.right .pz-connector { order: 1 }

      .pz-card { border-left-width: 4px !important }
    }

    /* ── TESTIMONIALS ── */
    .testi-wrap {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px
    }

    @media(max-width:991px) {
      .testi-wrap { grid-template-columns: repeat(2, 1fr) }
    }

    @media(max-width:575px) {
      .testi-wrap { grid-template-columns: 1fr }
    }

    .testi-card {
      background: #fff;
      border: 1px solid var(--bd);
      border-radius: 10px;
      padding: 30px 26px 24px;
      position: relative;
      transition: box-shadow .25s, transform .25s;
    }

    .testi-card:hover {
      box-shadow: 0 12px 36px rgba(0, 0, 0, .09);
      transform: translateY(-4px)
    }

    .testi-big-quote {
      position: absolute;
      right: 20px;
      bottom: 16px;
      font-size: 5.5rem;
      line-height: 1;
      color: rgba(26, 140, 107, .08);
      font-family: Georgia, serif;
      font-weight: 700;
      pointer-events: none;
      user-select: none;
    }

    .testi-stars {
      display: flex;
      gap: 3px;
      color: #e3a600;
      font-size: .78rem;
      margin-bottom: 16px
    }

    .testi-body {
      font-size: .9rem;
      font-style: italic;
      line-height: 1.82;
      color: var(--mt);
      margin-bottom: 22px;
      position: relative;
      z-index: 1
    }

    .testi-body strong {
      font-style: normal;
      color: var(--tx);
      font-weight: 700
    }

    .testi-foot {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--bd)
    }

    .testi-ava {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--gr-lt);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-h);
      font-weight: 700;
      font-size: 1rem;
      color: var(--gr);
      flex-shrink: 0;
    }

    .testi-nm {
      display: block;
      font-size: .88rem;
      font-weight: 700;
      color: var(--bl)
    }

    .testi-role {
      font-size: .8rem;
      color: var(--gr);
      font-weight: 600
    }

    .testi-role::before {
      content: '| ';
      color: var(--bd)
    }

    /* ── CONTACT ── */
    .contact-section {
      padding: 84px 0;
      background: var(--off)
    }

    .contact-left h2 {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      color: var(--bl);
      margin-bottom: 18px
    }

    .contact-left p {
      font-size: .97rem;
      color: var(--mt);
      margin-bottom: 32px;
      line-height: 1.85
    }

    .contact-feat {
      display: flex;
      flex-direction: column;
      gap: 22px
    }

    .contact-feat-item {
      display: flex;
      align-items: flex-start;
      gap: 16px
    }

    .cf-ico {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--gr);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
      flex-shrink: 0;
      transition: transform .22s;
    }

    .contact-feat-item:hover .cf-ico { transform: scale(1.1) }

    .cf-body strong {
      display: block;
      font-size: .95rem;
      color: var(--bl);
      font-weight: 700;
      margin-bottom: 2px
    }

    .cf-body span {
      font-size: .85rem;
      color: var(--mt);
      line-height: 1.65
    }

    .form-card {
      background: #fff;
      border-radius: 16px;
      border: 1px solid #d6eaf5;
      border-top: 4px solid var(--sk);
      padding: 40px 36px;
      box-shadow: 0 6px 30px rgba(74, 158, 202, .1);
    }

    .form-card h3 {
      font-family: var(--ff-h);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--bl);
      margin-bottom: 4px;
    }

    .form-card .fc-sub {
      font-size: .83rem;
      color: var(--mt);
      margin-bottom: 26px
    }

    .fc-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px
    }

    @media(max-width:575px) {
      .fc-row { grid-template-columns: 1fr }
    }

    .fc-field {
      width: 100%;
      border: 1.5px solid #d6eaf5;
      border-radius: 8px;
      padding: 11px 14px;
      font-family: var(--ff-b);
      font-size: .9rem;
      color: var(--tx);
      background: #f8fbfe;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      margin-bottom: 14px;
      display: block;
    }

    .fc-field::placeholder { color: #a0b8c8 }

    .fc-field:focus {
      border-color: var(--sk);
      box-shadow: 0 0 0 3px rgba(74, 158, 202, .12);
      background: #fff
    }

    .fc-select {
      width: 100%;
      border: 1.5px solid #d6eaf5;
      border-radius: 8px;
      padding: 11px 14px;
      font-family: var(--ff-b);
      font-size: .9rem;
      color: var(--tx);
      background: #f8fbfe;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      margin-bottom: 22px;
      display: block;
      appearance: none;
      cursor: pointer;
    }

    .fc-select:focus {
      border-color: var(--sk);
      box-shadow: 0 0 0 3px rgba(74, 158, 202, .12);
      background: #fff
    }

    .fc-submit {
      width: 100%;
      background: var(--gr);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 13px 28px;
      font-size: .95rem;
      font-weight: 700;
      font-family: var(--ff-b);
      cursor: pointer;
      transition: background .2s, transform .18s, box-shadow .2s;
      box-shadow: 0 4px 14px rgba(26, 140, 107, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
    }

    .fc-submit:hover {
      background: var(--gr-dk);
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(26, 140, 107, .3)
    }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: var(--off2);
      border-top: 1px solid var(--sg);
      border-bottom: 1px solid var(--sg);
      padding: 54px 0;
      position: relative;
      overflow: hidden
    }


    .cta-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap
    }

    .cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--gr-lt);
      border: 1px solid rgba(26, 140, 107, .25);
      color: var(--gr);
      font-size: .69rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 3px;
      margin-bottom: 12px
    }

    .cta-banner h2 {
      font-size: clamp(1.4rem, 2.5vw, 1.9rem);
      color: var(--bl);
      margin-bottom: 8px
    }

    .cta-banner p {
      font-size: .95rem;
      color: var(--mt);
      margin: 0;
      max-width: 480px
    }

    .cta-btns {
      display: flex;
      gap: 12px;
      flex-shrink: 0;
      flex-wrap: wrap
    }

    
   /* ABOUT PAGE - EXTERNAL CSS */
/* Unique prefix: ab_ */

/* HERO SECTION */
.ab_hero {
  background: linear-gradient(135deg, var(--gr-lt) 0%, #dff0e8 60%, #eaf7f1 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid rgba(26,140,107,.18);
}

.ab_hero-bg-lines::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 120% at 30% 50%, rgba(255,255,255,0.5) 0%, transparent 100%);
}

/* Breadcrumb inside hero */
.ab_hero-breadcrumb {
  position: relative;
  z-index: 3;
  padding: 12px 0 0;
}

.ab_hero-bc-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.ab_hero-bc-inner a {
  font-size: .74rem;
  font-weight: 600;
  color: var(--gr);
  text-decoration: none;
  opacity: .75;
  transition: opacity .18s;
}

.ab_hero-bc-inner a:hover { opacity: 1; }

.ab_hero-bc-sep {
  font-size: .58rem;
  color: var(--gr);
  opacity: .4;
  margin: 0 7px;
}

.ab_hero-bc-current {
  font-size: .74rem;
  font-weight: 700;
  color: var(--gr);
}

.ab_hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 28px 0 36px;
}

@media (max-width: 991px) {
  .ab_hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px 0 32px;
  }
}

.ab_hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 24px;
}

@media (max-width: 991px) {
  .ab_hero-left { padding-right: 0; }
  .ab_hero-right { display: none; }
}

.ab_hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 12px;
}

.ab_hero h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.12;
  margin-bottom: 14px;
}

.ab_hero h1 em {
  color: var(--gr);
  font-style: normal;
  position: relative;
}

.ab_hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 3px;
  background: var(--gr);
  border-radius: 2px;
  opacity: .22;
}

.ab_hero-desc {
  font-size: .91rem;
  color: var(--mt);
  line-height: 1.78;
  max-width: 460px;
  margin-bottom: 20px;
}

/* Right side stats */
.ab_hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab_ahr-float {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.ab_ahr-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ab_ahr-stat {
  background: rgba(255,255,255,.85);
  border-radius: 12px;
  padding: 16px 14px;
  border: 1px solid rgba(26,140,107,.16);
  box-shadow: 0 4px 16px rgba(26,140,107,.09);
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform .2s, box-shadow .2s;
}

.ab_ahr-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(26,140,107,.14);
}

.ab_ahr-stat-num {
  font-family: var(--ff-h);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gr);
  line-height: 1;
  display: block;
}

.ab_ahr-stat-label {
  font-size: .69rem;
  color: var(--mt);
  font-weight: 600;
  margin-top: 3px;
  display: block;
  line-height: 1.3;
}

.ab_ahr-info-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ab_ahr-info-tile {
  background: var(--bl);
  border-radius: 10px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ab_ahr-info-ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  background: rgba(255,255,255,.12);
  color: #7ecdb4;
}

.ab_ahr-info-txt strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.ab_ahr-info-txt span {
  font-size: .7rem;
  color: rgba(255,255,255,.52);
}

/* WHO IS QIL SECTION */
.ab_who-section {
  padding: 88px 0;
  background: #fff;
}

.ab_who-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

@media (max-width: 991px) {
  .ab_who-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.ab_who-left-wrap { position: relative; }

.ab_who-text-block p {
  font-size: .97rem;
  line-height: 2;
  color: var(--mt);
  margin-bottom: 18px;
  padding-left: 20px;
  border-left: 2px solid transparent;
  transition: border-color .25s;
}

.ab_who-text-block p:first-child {
  border-left-color: var(--gr);
  color: var(--bl);
  font-weight: 500;
  font-size: 1rem;
}

.ab_who-text-block p:nth-child(2) { border-left-color: rgba(26,140,107,.3); }
.ab_who-text-block p:last-child { border-left-color: rgba(26,140,107,.12); margin-bottom: 0; }

.ab_who-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.ab_who-val {
  background: var(--off);
  border-radius: 10px;
  border: 1px solid var(--bd);
  padding: 16px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}

.ab_who-val:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.07);
  border-color: rgba(26,140,107,.25);
  transform: translateY(-2px);
}

.ab_who-val-ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gr-lt);
  color: var(--gr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}

.ab_who-val:nth-child(even) .ab_who-val-ico {
  background: var(--sk-lt);
  color: var(--sk);
}

.ab_who-val-body strong {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 2px;
  line-height: 1.3;
}

.ab_who-val-body span {
  font-size: .78rem;
  color: var(--mt);
  line-height: 1.5;
}

/* Journey panel */
.ab_who-journey { position: relative; }

.ab_wj-header {
  background: var(--bl);
  border-radius: 14px 14px 0 0;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ab_wj-header-ico {
  width: 42px;
  height: 42px;
  background: rgba(126,205,180,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ecdb4;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ab_wj-header-text strong {
  display: block;
  color: #fff;
  font-size: .98rem;
  font-weight: 700;
}

.ab_wj-header-text span {
  font-size: .76rem;
  color: rgba(255,255,255,.5);
}

.ab_wj-body {
  background: var(--off);
  border: 1px solid var(--bd);
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.ab_wj-body::before {
  content: '';
  position: absolute;
  left: 52px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--gr) 0%, rgba(26,140,107,.15) 100%);
  border-radius: 2px;
}

.ab_wj-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 28px;
  position: relative;
  cursor: default;
}

.ab_wj-item:last-child { padding-bottom: 0; }

.ab_wj-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.ab_wj-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .92rem;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.14);
  transition: transform .25s, box-shadow .25s;
  flex-shrink: 0;
}

.ab_wj-item:hover .ab_wj-dot {
  transform: scale(1.12);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.ab_wj-dot.ab_wj-dot1 { background: var(--gr); }
.ab_wj-dot.ab_wj-dot2 { background: var(--sk); }
.ab_wj-dot.ab_wj-dot3 { background: var(--gr); }
.ab_wj-dot.ab_wj-dot4 { background: var(--bl); }

.ab_wj-content {
  flex: 1;
  padding-top: 8px;
}

.ab_wj-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.ab_wj-year-tag {
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gr);
  padding: 3px 10px;
  border-radius: 20px;
  line-height: 1.5;
}

.ab_wj-item:nth-child(2) .ab_wj-year-tag { background: var(--sk); }
.ab_wj-item:nth-child(4) .ab_wj-year-tag { background: var(--bl); }

.ab_wj-content h4 {
  font-size: .96rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 5px;
  line-height: 1.3;
}

.ab_wj-content p {
  font-size: .84rem;
  color: var(--mt);
  line-height: 1.7;
  margin: 0;
}

.ab_wj-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.ab_wj-chip {
  font-size: .68rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
  background: rgba(26,140,107,.09);
  color: var(--gr);
  border: 1px solid rgba(26,140,107,.16);
}

.ab_wj-item:nth-child(2) .ab_wj-chip {
  background: rgba(84,183,157,.09);
  color: var(--sk);
  border-color: rgba(84,183,157,.2);
}

.ab_wj-item:nth-child(4) .ab_wj-chip {
  background: rgba(30,41,59,.07);
  color: var(--bl);
  border-color: rgba(30,41,59,.15);
}

/* TEAM SECTION */
.ab_team-section {
  padding: 88px 0;
  background: var(--off);
}

.ab_team-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 52px;
}

@media (max-width: 991px) {
  .ab_team-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.ab_team-intro-text p {
  font-size: .96rem;
  line-height: 1.9;
  color: var(--mt);
  margin-bottom: 14px;
}

.ab_team-discipline-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.ab_tdc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .77rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1.5px solid var(--bd);
  color: var(--mt);
  background: #fff;
  transition: all .18s;
}

.ab_tdc:hover {
  background: var(--gr-lt);
  border-color: rgba(26,140,107,.3);
  color: var(--gr);
}

.ab_tdc i {
  font-size: .66rem;
  color: var(--gr);
}

.ab_team-stat-panel {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--bd);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
}

.ab_tsp-header {
  background: var(--bl);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ab_tsp-header i { color: #7ecdb4; font-size: 1.1rem; }

.ab_tsp-header strong {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
}

.ab_tsp-body { padding: 0; }

.ab_tsp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--bd);
  transition: background .15s;
}

.ab_tsp-row:last-child { border-bottom: none; }
.ab_tsp-row:hover { background: var(--off); }

.ab_tsp-label {
  font-size: .86rem;
  color: var(--mt);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ab_tsp-label i { color: var(--gr); font-size: .75rem; }

.ab_tsp-val {
  font-size: .88rem;
  font-weight: 700;
  color: var(--bl);
}

.ab_team-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .ab_team-roles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .ab_team-roles-grid { grid-template-columns: 1fr; }
}

.ab_team-role-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--bd);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow .25s, transform .22s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.ab_team-role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gr);
}

.ab_team-role-card:nth-child(even)::before { background: var(--sk); }

.ab_team-role-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
  transform: translateY(-5px);
  border-color: rgba(26,140,107,.2);
}

.ab_trc-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
  transition: transform .22s;
}

.ab_team-role-card:hover .ab_trc-icon { transform: scale(1.08) rotate(-5deg); }
.ab_team-role-card:nth-child(odd) .ab_trc-icon { background: var(--gr-lt); color: var(--gr); }
.ab_team-role-card:nth-child(even) .ab_trc-icon { background: var(--sk-lt); color: var(--sk); }

.ab_trc-title {
  font-size: .96rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 9px;
  line-height: 1.3;
}

.ab_trc-desc {
  font-size: .83rem;
  color: var(--mt);
  line-height: 1.72;
  margin: 0;
}

/* INDIAN PHD REQUIREMENTS SECTION */
.ab_india-section {
  padding: 88px 0;
  background: #fff;
}

.ab_india-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 991px) {
  .ab_india-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.ab_req-tiles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ab_req-tile {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
  cursor: pointer;
}

.ab_req-tile:hover { box-shadow: 0 4px 18px rgba(0,0,0,.07); }
.ab_req-tile.open { border-color: rgba(26,140,107,.3); box-shadow: 0 6px 22px rgba(26,140,107,.1); }

.ab_req-tile-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  user-select: none;
}

.ab_req-tile-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}

.ab_req-tile:nth-child(odd) .ab_req-tile-ico { background: var(--gr-lt); color: var(--gr); }
.ab_req-tile:nth-child(even) .ab_req-tile-ico { background: var(--sk-lt); color: var(--sk); }
.ab_req-tile.open:nth-child(odd) .ab_req-tile-ico { background: var(--gr); color: #fff; }
.ab_req-tile.open:nth-child(even) .ab_req-tile-ico { background: var(--sk); color: #fff; }

.ab_req-tile-title {
  flex: 1;
  font-size: .92rem;
  font-weight: 700;
  color: var(--bl);
  line-height: 1.3;
}

.ab_req-tile-arrow {
  font-size: .75rem;
  color: var(--mt);
  transition: transform .28s;
  flex-shrink: 0;
}

.ab_req-tile.open .ab_req-tile-arrow { transform: rotate(90deg); color: var(--gr); }

.ab_req-tile-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.ab_req-tile.open .ab_req-tile-body { max-height: 400px; }

.ab_req-tile-body-inner {
  padding: 0 20px 18px 74px;
  font-size: .87rem;
  color: var(--mt);
  line-height: 1.85;
}

.ab_india-compare {
  background: var(--off);
  border-radius: 14px;
  border: 1px solid var(--bd);
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,.06);
}

.ab_ic-header {
  background: var(--bl);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ab_ic-header i { color: #7ecdb4; }

.ab_ic-header strong {
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
}

.ab_ic-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--bd);
}

.ab_ic-row:last-child { border-bottom: none; }

.ab_ic-cell {
  padding: 15px 20px;
  font-size: .84rem;
  line-height: 1.6;
  border-right: 1px solid var(--bd);
}

.ab_ic-cell:last-child { border-right: none; }

.ab_ic-cell.ab_ic-head-cell {
  background: var(--off2);
  font-weight: 700;
  color: var(--bl);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ab_ic-cell p { color: var(--mt); margin: 0; }

.ab_ic-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  margin-top: 5px;
}

.ab_ic-tag.ab_ic-tag-gr { background: var(--gr-lt); color: var(--gr); }
.ab_ic-tag.ab_ic-tag-sk { background: var(--sk-lt); color: var(--sk); }

/* CONFIDENTIALITY SECTION */
.ab_conf-section {
  padding: 88px 0;
  background: var(--off);
}

.ab_conf-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .ab_conf-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.ab_conf-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ab_conf-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 12px;
  padding: 22px 22px;
  border: 1px solid var(--bd);
  transition: box-shadow .22s, transform .22s, border-color .22s;
}

.ab_conf-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  transform: translateX(5px);
  border-color: rgba(26,140,107,.25);
}

.ab_conf-card-ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform .2s;
}

.ab_conf-card:hover .ab_conf-card-ico { transform: scale(1.1); }
.ab_conf-card:nth-child(odd) .ab_conf-card-ico { background: var(--gr-lt); color: var(--gr); }
.ab_conf-card:nth-child(even) .ab_conf-card-ico { background: var(--sk-lt); color: var(--sk); }

.ab_conf-card-body h4 {
  font-size: .96rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 6px;
  line-height: 1.3;
}

.ab_conf-card-body p {
  font-size: .85rem;
  color: var(--mt);
  line-height: 1.72;
  margin: 0;
}

.ab_nda-shield {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--bd);
  padding: 38px 34px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
}

.ab_nda-shield::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26,140,107,.07) 0%, transparent 65%);
  pointer-events: none;
}

.ab_nda-icon-wrap {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--gr-lt);
  border: 3px solid rgba(26,140,107,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: var(--gr);
  margin: 0 auto 22px;
  transition: transform .3s;
}

.ab_nda-shield:hover .ab_nda-icon-wrap { transform: scale(1.08); }

.ab_nda-shield h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 10px;
}

.ab_nda-shield p {
  font-size: .88rem;
  color: var(--mt);
  line-height: 1.78;
  margin-bottom: 24px;
}

.ab_nda-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-bottom: 24px;
}

.ab_nda-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: var(--mt);
  font-weight: 500;
}

.ab_nda-bullets li i { color: var(--gr); font-size: .75rem; flex-shrink: 0; }

.ab_nda-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gr);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 30px;
  box-shadow: 0 5px 16px rgba(26,140,107,.3);
  cursor: default;
}

/* CTA SECTION */
.ab_cta {
  background: var(--off2);
  padding: 40px 0;
}

.ab_cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ab_cta-title {
  margin-bottom: 8px;
}

.ab_cta-text {
  color: var(--mt);
  font-size: .95rem;
  max-width: 480px;
  margin: 0;
}

.ab_cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ab_btn-g {
  background: var(--gr);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .22s;
  border: 1px solid transparent;
}

.ab_btn-g:hover {
  background: transparent;
  color: var(--gr);
  border-color: var(--gr);
  transform: translateY(-2px);
}

.ab_btn-o {
  background: transparent;
  color: var(--gr);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gr);
  transition: all .22s;
}

.ab_btn-o:hover {
  background: var(--gr);
  color: #fff;
  transform: translateY(-2px);
}

/* Utility Classes */
.ab_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gr);
  background: var(--gr-lt);
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.ab_eyebrow-center {
  justify-content: center;
}

.ab_sec-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 12px;
}

.ab_sec-rule {
  width: 60px;
  height: 3px;
  background: var(--gr);
  margin: 12px auto 0;
  border-radius: 4px;
}

.ab_sec-desc {
  font-size: .92rem;
  color: var(--mt);
  max-width: 650px;
  margin: 16px auto 0;
}

.ab_mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }
.mb-5 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* Scroll Reveal */
.ab_sr {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.ab_sr.vis {
  opacity: 1;
  transform: translateY(0);
}
.ab_sr-l {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity .55s ease, transform .55s ease;
}
.ab_sr-l.vis {
  opacity: 1;
  transform: translateX(0);
}
.ab_sr-r {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.ab_sr-r.vis {
  opacity: 1;
  transform: translateX(0);
}
/* ═══════════════════════════════════════════
   CONTACT PAGE — EXTERNAL CSS
   Unique prefix: unq_
═══════════════════════════════════════════ */

/* ── HERO ── */
.unq_hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}

.unq_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.unq_hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.unq_hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.12;
  margin-bottom: 10px;
}

.unq_hero h1 em {
  color: var(--gr);
  font-style: normal;
}

/* ── BREADCRUMB ── */
.unq_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.unq_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}

.unq_breadcrumb a:hover {
  color: var(--gr);
}

.unq_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}

.unq_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
}

/* ── MAIN SECTION ── */
.unq_main {
  padding: 60px 0 80px;
  background: var(--off);
}

.unq_layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .unq_layout {
    grid-template-columns: 1fr;
  }
}

/* ── SIDEBAR ── */
.unq_sidebar {
  position: sticky;
  top: 100px;
}

.unq_side-card {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}

.unq_side-card:last-child {
  margin-bottom: 0;
}

.unq_side-head {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--bd);
}

.unq_side-head-sk {
  background: var(--sk);
}

.unq_side-head-gr-lt {
  background: var(--gr-lt);
  border-bottom-color: var(--sg);
}

.unq_side-head-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.unq_side-head-sk .unq_side-head-ico {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.unq_side-head-gr-lt .unq_side-head-ico {
  background: #fff;
  color: var(--gr);
  border: 1px solid var(--sg);
}

.unq_side-head-txt {
  font-size: .92rem;
  font-weight: 700;
}

.unq_side-head-sk .unq_side-head-txt {
  color: #fff;
}

.unq_side-head-gr-lt .unq_side-head-txt {
  color: var(--gr);
}

.unq_side-body {
  padding: 20px;
}

.unq_side-text {
  font-size: .84rem;
  color: var(--mt);
  line-height: 1.72;
  margin-bottom: 14px;
}

/* Contact rows */
.unq_contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bd);
}

.unq_contact-row:first-child {
  padding-top: 0;
}

.unq_contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.unq_cico {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.unq_cico-gr {
  background: var(--gr-lt);
  color: var(--gr);
}

.unq_cico-sk {
  background: var(--sk-lt);
  color: var(--sk);
}

.unq_ctxt small {
  display: block;
  font-size: .67rem;
  color: var(--lt);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}

.unq_ctxt a {
  font-size: .86rem;
  font-weight: 700;
  color: var(--bl);
  text-decoration: none;
  transition: color .18s;
}

.unq_ctxt a:hover {
  color: var(--gr);
}

.unq_hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gr-lt);
  border: 1px solid var(--sg);
  color: var(--gr);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 6px;
}

.unq_wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: var(--gr);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 16px;
  transition: background .2s, transform .18s;
  font-family: var(--ff-b);
  border: none;
  cursor: pointer;
}

.unq_wa-btn:hover {
  background: var(--gr-dk);
  color: #fff;
  transform: translateY(-2px);
}

.unq_meet-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: var(--sk);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .18s;
  font-family: var(--ff-b);
  border: none;
  cursor: pointer;
}

.unq_meet-btn:hover {
  opacity: .9;
  transform: translateY(-2px);
}

.unq_trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.unq_trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .83rem;
  color: var(--mt);
  line-height: 1.5;
}

.unq_trust-list li i {
  color: var(--gr);
  font-size: .75rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── FORM CARD ── */
.unq_form-card {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: 14px;
  overflow: hidden;
}

.unq_form-head {
  background: var(--gr);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.unq_form-head-ico {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.unq_form-head-txt h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
}

.unq_form-head-txt p {
  font-size: .78rem;
  color: rgba(255,255,255,.8);
  margin: 0;
}

.unq_form-body {
  padding: 32px 28px;
}

/* Form fields */
.unq_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

@media (max-width: 575px) {
  .unq_row {
    grid-template-columns: 1fr;
  }
}

.unq_field {
  margin-bottom: 18px;
}

.unq_field:last-child {
  margin-bottom: 0;
}

.unq_label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 7px;
  letter-spacing: .02em;
}

.unq_label span {
  color: var(--gr);
  margin-left: 2px;
}

.unq_optional {
  color: var(--lt);
  font-weight: 500;
}

.unq_input,
.unq_select,
.unq_textarea {
  width: 100%;
  border: 1.5px solid var(--bd);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--ff-b);
  font-size: .9rem;
  color: var(--tx);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}

.unq_input::placeholder,
.unq_textarea::placeholder {
  color: #a8bcc4;
}

.unq_input:focus,
.unq_select:focus,
.unq_textarea:focus {
  border-color: var(--gr);
  box-shadow: 0 0 0 3px rgba(26,140,107,.1);
}

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

.unq_textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.7;
}

/* File upload */
.unq_file-wrap {
  position: relative;
}

.unq_file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px dashed var(--bd);
  border-radius: 8px;
  padding: 13px 16px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: var(--off);
}

.unq_file-label:hover {
  border-color: var(--gr);
  background: var(--gr-lt);
}

.unq_file-label i {
  color: var(--gr);
  font-size: .95rem;
  flex-shrink: 0;
}

.unq_file-label span {
  font-size: .85rem;
  color: var(--mt);
}

.unq_file-label strong {
  color: var(--gr);
  font-weight: 700;
}

.unq_file-label small {
  display: block;
  font-size: .71rem;
  color: var(--lt);
  margin-top: 2px;
}

.unq_file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}

.unq_file-name {
  font-size: .78rem;
  color: var(--gr);
  font-weight: 600;
  margin-top: 6px;
  display: none;
  align-items: center;
  gap: 5px;
}

/* Submit */
.unq_submit-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.unq_submit-btn {
  background: var(--gr);
  color: #fff;
  border: none;
  padding: 13px 34px;
  border-radius: 8px;
  font-family: var(--ff-b);
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: background .2s, transform .18s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(26,140,107,.25);
}

.unq_submit-btn:hover {
  background: var(--gr-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,140,107,.32);
}

.unq_submit-note {
  font-size: .78rem;
  color: var(--lt);
  display: flex;
  align-items: center;
  gap: 5px;
}

.unq_submit-note i {
  color: var(--gr);
}

/* Success */
.unq_success {
  display: none;
  background: var(--gr-lt);
  border: 1.5px solid rgba(26,140,107,.3);
  border-radius: 10px;
  padding: 20px 22px;
  text-align: center;
  margin-top: 18px;
}

.unq_success i {
  font-size: 1.8rem;
  color: var(--gr);
  display: block;
  margin-bottom: 8px;
}

.unq_success h5 {
  color: var(--bl);
  font-weight: 700;
  margin-bottom: 6px;
}

.unq_success p {
  font-size: .86rem;
  color: var(--mt);
  margin: 0;
}

/* ── ASSURANCE STRIP ── */
.unq_assurance {
  background: #fff;
  border-top: 2px solid var(--bd);
  padding: 36px 0;
}

.unq_assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 767px) {
  .unq_assurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.unq_assurance-item {
  text-align: center;
  padding: 20px 18px;
  border-right: 1px solid var(--bd);
}

.unq_assurance-item:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .unq_assurance-item:nth-child(2) {
    border-right: none;
  }
  
  .unq_assurance-item:nth-child(3),
  .unq_assurance-item:nth-child(4) {
    border-top: 1px solid var(--bd);
    border-right: none;
  }
}

.unq_assurance-ico {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

.unq_assurance-item:nth-child(1) .unq_assurance-ico {
  color: var(--gr);
}

.unq_assurance-item:nth-child(2) .unq_assurance-ico {
  color: var(--sk);
}

.unq_assurance-item:nth-child(3) .unq_assurance-ico {
  color: var(--gr);
}

.unq_assurance-item:nth-child(4) .unq_assurance-ico {
  color: var(--sk);
}

.unq_assurance-item strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 4px;
}

.unq_assurance-item span {
  font-size: .77rem;
  color: var(--mt);
}
/* PORTFOLIO PAGE - EXTERNAL CSS */
/* Unique prefix: pf_ */

/* Breadcrumb */
.pf_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.pf_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}
.pf_breadcrumb a:hover { color: var(--gr); }
.pf_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}
.pf_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero Section */
.pf_hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.pf_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.pf_hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.pf_hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.12;
  margin-bottom: 12px;
}
.pf_hero h1 em {
  color: var(--gr);
  font-style: normal;
}

/* Tabs Bar */
.pf_tabs-bar {
  background: #fff;
  border-bottom: 2px solid var(--bd);
  position: sticky;
  top: 68px;
  z-index: 100;
  box-shadow: 0 3px 12px rgba(0,0,0,.05);
}
.pf_tabs-inner {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 14px 0;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .pf_tabs-inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}
.pf_tabs-inner::-webkit-scrollbar { display: none; }
.pf_tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--mt);
  cursor: pointer;
  border-radius: 40px;
  white-space: nowrap;
  transition: all .25s ease;
  background: var(--off);
  border: 1.5px solid var(--bd);
  font-family: var(--ff-b);
  flex-shrink: 0;
}
.pf_tab i { font-size: .9rem; }
.pf_tab:hover {
  color: var(--gr);
  background: var(--gr-lt);
  border-color: rgba(26,140,107,.4);
  transform: translateY(-2px);
}
.pf_tab.active {
  color: #fff;
  background: var(--gr);
  border-color: var(--gr);
  box-shadow: 0 4px 14px rgba(26,140,107,.3);
  transform: translateY(-2px);
}

/* Main Section */
.pf_main {
  background: var(--off);
  padding: 60px 0 80px;
}

/* Section Header */
.pf_sample-section {
  margin-bottom: 64px;
}
.pf_sample-section:last-child { margin-bottom: 0; }
.pf_sample-sec-hd {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bd);
}
.pf_sample-sec-ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.pf_sample-sec-ico.pf_gr { background: var(--gr-lt); color: var(--gr); }
.pf_sample-sec-ico.pf_sk { background: var(--sk-lt); color: var(--sk); }
.pf_sample-sec-hd-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 3px;
  line-height: 1.2;
}
.pf_sample-sec-hd-text p {
  font-size: .82rem;
  color: var(--mt);
  margin: 0;
}
.pf_sample-sec-count {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.pf_sample-sec-count.pf_gr { background: var(--gr-lt); color: var(--gr); }
.pf_sample-sec-count.pf_sk { background: var(--sk-lt); color: var(--sk); }

/* Synopsis Showcase */
.pf_synopsis-showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 991px) {
  .pf_synopsis-showcase { grid-template-columns: 1fr; }
}

/* Synopsis Doc Mock */
.pf_synopsis-doc-mock {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--bd);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transition: box-shadow .25s, transform .22s;
}
.pf_synopsis-doc-mock:hover {
  box-shadow: 0 14px 40px rgba(0,0,0,.11);
  transform: translateY(-3px);
}
.pf_sdm-header {
  background: var(--bl);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pf_sdm-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pf_dot-red { background: #ff5f57; }
.pf_dot-yellow { background: #febc2e; margin-left: 5px; }
.pf_dot-green { background: #28c840; margin-left: 5px; }
.pf_sdm-header span {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  margin-left: 8px;
}
.pf_sdm-body { padding: 24px 26px; }
.pf_sdm-uni-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pf_sdm-uni-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bl);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pf_sdm-uni-badge i { font-size: .65rem; }
.pf_sdm-title-block {
  text-align: center;
  padding: 18px;
  background: var(--off);
  border-radius: 8px;
  border: 1px solid var(--bd);
  margin-bottom: 18px;
}
.pf_sdm-doc-title {
  font-size: .78rem;
  font-weight: 700;
  color: var(--bl);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 6px;
}
.pf_sdm-research-title {
  font-size: .92rem;
  color: var(--mt);
  line-height: 1.6;
}
.pf_sdm-sections {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pf_sdm-sec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--off);
  border-radius: 7px;
  border: 1px solid var(--bd);
  transition: background .15s, border-color .15s;
}
.pf_sdm-sec-item:hover {
  background: var(--gr-lt);
  border-color: rgba(26,140,107,.2);
}
.pf_sdm-sec-num {
  width: 24px;
  height: 24px;
  background: var(--gr);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pf_sdm-sec-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--bl);
  flex: 1;
}
.pf_sdm-sec-pages {
  font-size: .72rem;
  color: var(--lt);
  font-weight: 500;
}

/* Synopsis Features */
.pf_synopsis-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pf_synf-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--bd);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.pf_synf-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.07);
  transform: translateX(4px);
  border-color: rgba(26,140,107,.25);
}
.pf_synf-ico {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  transition: transform .2s;
}
.pf_synf-card:hover .pf_synf-ico { transform: scale(1.08); }
.pf_synf-card:nth-child(odd) .pf_synf-ico { background: var(--gr-lt); color: var(--gr); }
.pf_synf-card:nth-child(even) .pf_synf-ico { background: var(--sk-lt); color: var(--sk); }
.pf_synf-body h5 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 4px;
}
.pf_synf-body p {
  font-size: .82rem;
  color: var(--mt);
  line-height: 1.65;
  margin: 0;
}

/* IEEE Showcase */
.pf_ieee-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 991px) {
  .pf_ieee-showcase { grid-template-columns: 1fr; }
}
.pf_ieee-paper-mock {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--bd);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.07);
  transition: box-shadow .25s, transform .22s;
}
.pf_ieee-paper-mock:hover {
  box-shadow: 0 14px 40px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.pf_ieee-bar {
  background: var(--gr);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pf_ieee-bar span {
  font-size: .72rem;
  color: rgba(255,255,255,.9);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pf_ieee-bar-tag {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}
.pf_ieee-body { padding: 22px 24px; }
.pf_ieee-paper-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bl);
  line-height: 1.4;
  margin-bottom: 8px;
  text-align: center;
}
.pf_ieee-paper-authors {
  text-align: center;
  font-size: .78rem;
  color: var(--mt);
  margin-bottom: 6px;
  font-style: italic;
}
.pf_ieee-affiliation {
  text-align: center;
  font-size: .72rem;
  color: var(--lt);
  margin-bottom: 14px;
}
.pf_ieee-section-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gr);
  border-bottom: 1px solid var(--bd);
  padding-bottom: 4px;
  margin-bottom: 8px;
}
.pf_ieee-abstract-text {
  font-size: .77rem;
  color: var(--mt);
  line-height: 1.78;
  margin-bottom: 14px;
}
.pf_ieee-text-block {
  font-size: .77rem;
  color: var(--mt);
  line-height: 1.78;
  margin-bottom: 14px;
  column-count: 2;
  column-gap: 18px;
}
@media (max-width: 575px) {
  .pf_ieee-text-block { column-count: 1; }
}
.pf_ieee-ref-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pf_ieee-ref-list li {
  font-size: .73rem;
  color: var(--mt);
  line-height: 1.55;
  padding-left: 28px;
  position: relative;
}
.pf_ieee-ref-list li::before {
  content: attr(data-ref);
  position: absolute;
  left: 0;
  color: var(--gr);
  font-weight: 700;
  font-size: .68rem;
}
.pf_ieee-spec-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pf_ieee-spec-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--bd);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .18s;
}
.pf_ieee-spec-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  border-color: rgba(26,140,107,.25);
  transform: translateX(4px);
}
.pf_ieee-spec-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.pf_ieee-spec-card:nth-child(odd) .pf_ieee-spec-ico { background: var(--gr-lt); color: var(--gr); }
.pf_ieee-spec-card:nth-child(even) .pf_ieee-spec-ico { background: var(--sk-lt); color: var(--sk); }
.pf_ieee-spec-text strong {
  display: block;
  font-size: .86rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 2px;
}
.pf_ieee-spec-text span {
  font-size: .78rem;
  color: var(--mt);
}

/* Thesis Chapter Format Grid */
.pf_format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .pf_format-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .pf_format-grid { grid-template-columns: 1fr; }
}
.pf_format-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--bd);
  overflow: hidden;
  transition: box-shadow .25s, transform .22s;
}
.pf_format-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,.09);
  transform: translateY(-4px);
}
.pf_format-card-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--bd);
  position: relative;
}
.pf_format-card:nth-child(1) .pf_format-card-header { border-top: 3px solid var(--gr); }
.pf_format-card:nth-child(2) .pf_format-card-header { border-top: 3px solid var(--sk); }
.pf_format-card:nth-child(3) .pf_format-card-header { border-top: 3px solid var(--gr); }
.pf_fc-style-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pf_format-card:nth-child(1) .pf_fc-style-badge,
.pf_format-card:nth-child(3) .pf_fc-style-badge { background: var(--gr-lt); color: var(--gr); }
.pf_format-card:nth-child(2) .pf_fc-style-badge { background: var(--sk-lt); color: var(--sk); }
.pf_fc-uni-name {
  font-size: .92rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 4px;
  line-height: 1.3;
}
.pf_fc-uni-type {
  font-size: .77rem;
  color: var(--mt);
}
.pf_format-card-body { padding: 16px 20px; }
.pf_fc-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px dashed var(--bd);
  font-size: .8rem;
}
.pf_fc-spec-row:last-child { border-bottom: none; }
.pf_fc-spec-label { color: var(--mt); font-weight: 500; }
.pf_fc-spec-val { color: var(--bl); font-weight: 700; font-size: .78rem; }

/* Stats Showcase */
.pf_stats-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 991px) {
  .pf_stats-showcase { grid-template-columns: 1fr; }
}
.pf_spss-mock {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--bd);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.07);
  transition: box-shadow .25s, transform .22s;
}
.pf_spss-mock:hover {
  box-shadow: 0 14px 40px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.pf_spss-topbar {
  background: #1b2838;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pf_spss-topbar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.pf_spss-topbar span {
  font-size: .73rem;
  color: rgba(255,255,255,.5);
  margin-left: 10px;
  font-weight: 500;
}
.pf_spss-content { padding: 20px 22px; }
.pf_spss-table-title {
  font-size: .78rem;
  font-weight: 700;
  color: var(--bl);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pf_spss-table-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bd);
}
.pf_spss-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .78rem;
  margin-bottom: 18px;
}
.pf_spss-table th {
  background: var(--bl);
  color: rgba(255,255,255,.85);
  padding: 8px 12px;
  text-align: center;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .04em;
}
.pf_spss-table th:first-child { text-align: left; }
.pf_spss-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--bd);
  color: var(--tx);
  text-align: center;
}
.pf_spss-table td:first-child { text-align: left; font-weight: 600; color: var(--bl); }
.pf_spss-table tr:last-child td { border-bottom: none; }
.pf_spss-table tr:hover td { background: var(--off); }
.pf_spss-sig { color: #c0392b; font-weight: 700; }
.pf_spss-sig-low { color: var(--gr); font-weight: 700; }
.pf_spss-note {
  background: var(--off);
  border-left: 3px solid var(--sk);
  border-radius: 0 6px 6px 0;
  padding: 9px 14px;
  font-size: .78rem;
  color: var(--mt);
  margin-bottom: 14px;
}
.pf_spss-note strong { color: var(--bl); }

/* Stats Interpretation */
.pf_stats-interp {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pf_interp-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--bd);
  padding: 18px 20px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.pf_interp-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.07);
  transform: translateX(4px);
  border-color: rgba(26,140,107,.25);
}
.pf_interp-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.pf_interp-step {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pf_interp-card:nth-child(odd) .pf_interp-step { background: var(--gr); color: #fff; }
.pf_interp-card:nth-child(even) .pf_interp-step { background: var(--sk); color: #fff; }
.pf_interp-card h5 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--bl);
  margin: 0;
  line-height: 1.3;
}
.pf_interp-card p {
  font-size: .83rem;
  color: var(--mt);
  line-height: 1.7;
  margin: 0;
}

/* Journal Showcase */
.pf_journal-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 991px) {
  .pf_journal-showcase { grid-template-columns: 1fr; }
}
.pf_paper-mock {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--bd);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.07);
  transition: box-shadow .25s, transform .22s;
}
.pf_paper-mock:hover {
  box-shadow: 0 14px 40px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.pf_pm-topstrip {
  background: var(--sk);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pf_pm-topstrip span {
  font-size: .72rem;
  color: rgba(255,255,255,.85);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pf_pm-doi {
  font-size: .68rem;
  color: rgba(255,255,255,.6);
  font-family: 'Courier New', monospace;
}
.pf_pm-body { padding: 24px 24px 20px; }
.pf_pm-journal-name {
  font-size: .72rem;
  font-weight: 700;
  color: var(--sk);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pf_pm-paper-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bl);
  line-height: 1.4;
  margin-bottom: 10px;
}
.pf_pm-authors {
  font-size: .78rem;
  color: var(--mt);
  margin-bottom: 14px;
  font-style: italic;
}
.pf_pm-divider {
  height: 1px;
  background: var(--bd);
  margin: 14px 0;
}
.pf_pm-abstract-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sk);
  margin-bottom: 7px;
}
.pf_pm-abstract-text {
  font-size: .78rem;
  color: var(--mt);
  line-height: 1.75;
  margin-bottom: 16px;
}
.pf_pm-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.pf_pm-kw {
  background: var(--sk-lt);
  color: var(--sk);
  font-size: .68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(74,158,202,.2);
}
.pf_pm-acknowledgement {
  background: var(--off);
  border-left: 3px solid var(--gr);
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  font-size: .76rem;
  color: var(--mt);
  font-style: italic;
  line-height: 1.7;
}
.pf_pm-acknowledgement strong {
  font-style: normal;
  color: var(--bl);
}

/* Journal Info Cards */
.pf_journal-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pf_ji-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--bd);
  padding: 20px 22px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.pf_ji-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.07);
  border-color: rgba(74,158,202,.3);
  transform: translateX(4px);
}
.pf_ji-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.pf_ji-ico {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.pf_ji-card:nth-child(odd) .pf_ji-ico { background: var(--sk-lt); color: var(--sk); }
.pf_ji-card:nth-child(even) .pf_ji-ico { background: var(--gr-lt); color: var(--gr); }
.pf_ji-card h5 {
  font-size: .93rem;
  font-weight: 700;
  color: var(--bl);
  margin: 0;
  line-height: 1.3;
}
.pf_ji-card p {
  font-size: .83rem;
  color: var(--mt);
  line-height: 1.7;
  margin: 0;
}

/* CTA Section */
.pf_cta {
  background: var(--off2);
  border-top: 1px solid var(--sg);
  padding: 54px 0;
}
.pf_cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pf_cta-wrap h2 {
  margin-bottom: 8px;
  color: var(--bl);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
}
.pf_cta-wrap p {
  color: var(--mt);
  font-size: .95rem;
  max-width: 580px;
  margin: 0;
}
.pf_cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.pf_btn-g {
  background: var(--gr);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .22s;
  border: 1px solid transparent;
}
.pf_btn-g:hover {
  background: transparent;
  color: var(--gr);
  border-color: var(--gr);
  transform: translateY(-2px);
}
.pf_btn-o {
  background: transparent;
  color: var(--gr);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gr);
  transition: all .22s;
}
.pf_btn-o:hover {
  background: var(--gr);
  color: #fff;
  transform: translateY(-2px);
}

/* Scroll Reveal */
.sr {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.sr.vis {
  opacity: 1;
  transform: translateY(0);
}
.sr-l {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .5s ease, transform .5s ease;
}
.sr-l.vis {
  opacity: 1;
  transform: translateX(0);
}
.sr-r {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.sr-r.vis {
  opacity: 1;
  transform: translateX(0);
}
/* FAQ PAGE - EXTERNAL CSS */
/* Unique prefix: faq_ */

/* Breadcrumb */
.faq_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.faq_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}
.faq_breadcrumb a:hover {
  color: var(--gr);
}
.faq_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}
.faq_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero */
.faq_hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.faq_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.faq_hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.faq_hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.12;
  margin-bottom: 12px;
}
.faq_hero h1 em {
  color: var(--gr);
  font-style: normal;
}

/* Category Tabs */
.faq_tabs-bar {
  background: #fff;
  border-bottom: 2px solid var(--bd);
  position: sticky;
  top: 68px;
  z-index: 100;
  box-shadow: 0 3px 12px rgba(0,0,0,.05);
}
.faq_tabs-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 14px 0;
}
.faq_tabs-inner::-webkit-scrollbar {
  display: none;
}
.faq_tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: .81rem;
  font-weight: 600;
  color: var(--mt);
  cursor: pointer;
  border-radius: 8px;
  white-space: nowrap;
  transition: color .2s, background .2s, box-shadow .2s, transform .15s;
  background: var(--off);
  border: 1.5px solid var(--bd);
  font-family: var(--ff-b);
  flex-shrink: 0;
}
.faq_tab i {
  font-size: .8rem;
}
.faq_tab:hover {
  color: var(--gr);
  background: var(--gr-lt);
  border-color: rgba(26,140,107,.3);
  transform: translateY(-1px);
}
.faq_tab.active {
  color: #fff;
  background: var(--gr);
  border-color: var(--gr);
  box-shadow: 0 4px 14px rgba(26,140,107,.28);
  transform: translateY(-1px);
}
.faq_tab-count {
  background: rgba(255,255,255,.25);
  color: inherit;
  font-size: .63rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  min-width: 20px;
  text-align: center;
}
.faq_tab:not(.active) .faq_tab-count {
  background: var(--gr-lt);
  color: var(--gr);
}

/* Main Layout */
.faq_main {
  padding: 60px 0 80px;
  background: var(--off);
}

/* Category Section Header */
.faq_cat-section {
  margin-bottom: 40px;
}
.faq_cat-section:last-child {
  margin-bottom: 0;
}
.faq_cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--bd);
}
.faq_cat-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.faq_cat-icon-box.faq_gr {
  background: var(--gr-lt);
  color: var(--gr);
}
.faq_cat-icon-box.faq_sk {
  background: var(--sk-lt);
  color: var(--sk);
}
.faq_cat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bl);
  margin: 0;
}
.faq_cat-count-pill {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.faq_cat-count-pill.faq_gr {
  background: var(--gr-lt);
  color: var(--gr);
}
.faq_cat-count-pill.faq_sk {
  background: var(--sk-lt);
  color: var(--sk);
}

/* Accordion Items */
.faq_item {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
}
.faq_item:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,.07);
}
.faq_item.open {
  box-shadow: 0 6px 24px rgba(26,140,107,.1);
  border-color: rgba(26,140,107,.3);
}
.faq_item.faq_sk-item.open {
  box-shadow: 0 6px 24px rgba(74,158,202,.1);
  border-color: rgba(74,158,202,.3);
}
.faq_q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  transition: background .18s;
}
.faq_q:hover {
  background: var(--off);
}
.faq_item.open .faq_q {
  background: var(--off);
}
.faq_q-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.faq_q-num.faq_gr {
  background: var(--gr-lt);
  color: var(--gr);
}
.faq_q-num.faq_sk {
  background: var(--sk-lt);
  color: var(--sk);
}
.faq_item.open .faq_q-num.faq_gr {
  background: var(--gr);
  color: #fff;
}
.faq_item.open .faq_q-num.faq_sk {
  background: var(--sk);
  color: #fff;
}
.faq_q-text {
  flex: 1;
  font-size: .94rem;
  font-weight: 600;
  color: var(--bl);
  line-height: 1.45;
}
.faq_chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mt);
  font-size: .75rem;
  flex-shrink: 0;
  transition: transform .28s, background .2s, color .2s;
  border: 1px solid var(--bd);
}
.faq_item.open .faq_chevron {
  transform: rotate(180deg);
  background: var(--gr);
  color: #fff;
  border-color: var(--gr);
}
.faq_item.faq_sk-item.open .faq_chevron {
  background: var(--sk);
  border-color: var(--sk);
}
.faq_a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1), padding .28s;
}
.faq_item.open .faq_a {
  max-height: 600px;
}
.faq_a-inner {
  padding: 0 22px 20px 66px;
  font-size: .9rem;
  color: var(--mt);
  line-height: 1.88;
}
.faq_a-inner p {
  margin-bottom: 10px;
}
.faq_a-inner p:last-child {
  margin-bottom: 0;
}
.faq_a-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 10px;
}
.faq_a-tag.faq_gr {
  background: var(--gr-lt);
  color: var(--gr);
}
.faq_a-tag.faq_sk {
  background: var(--sk-lt);
  color: var(--sk);
}
.faq_a-tag.faq_gd {
  background: var(--gr-lt);
  color: var(--gr);
  border: 1px solid var(--gr-bd);
}
.faq_a-inner hr {
  border: none;
  border-top: 1px solid var(--bd);
  margin: 12px 0;
}

/* Highlight box inside answers */
.faq_highlight {
  background: var(--gr-lt);
  border-left: 3px solid var(--gr);
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  margin: 10px 0;
  font-size: .87rem;
  color: var(--mt);
}
.faq_highlight.faq_sk-highlight {
  background: var(--sk-lt);
  border-left-color: var(--sk);
}

/* No results state */
.faq_no-results {
  text-align: center;
  padding: 60px 20px;
  display: none;
}
.faq_no-results i {
  font-size: 3rem;
  color: var(--bd);
  display: block;
  margin-bottom: 16px;
}
.faq_no-results h4 {
  color: var(--bl);
  margin-bottom: 8px;
}
.faq_no-results p {
  color: var(--mt);
  font-size: .9rem;
}

/* Bottom CTA */
.faq_bottom-cta {
  background: var(--off2);
  border-top: 1px solid var(--sg);
  padding: 54px 0;
}
.faq_cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .faq_cta-grid {
    grid-template-columns: 1fr;
  }
}
.faq_cta-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--bd);
  transition: box-shadow .22s, transform .22s, border-color .22s;
}
.faq_cta-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transform: translateY(-4px);
}
.faq_cta-card:nth-child(1) {
  border-top: 3px solid var(--gr);
}
.faq_cta-card:nth-child(2) {
  border-top: 3px solid var(--sk);
}
.faq_cta-card:nth-child(3) {
  border-top: 3px solid var(--gr);
}
.faq_cta-ico {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  transition: transform .22s;
}
.faq_cta-card:hover .faq_cta-ico {
  transform: scale(1.1) rotate(-5deg);
}
.faq_cta-card:nth-child(1) .faq_cta-ico {
  background: var(--gr-lt);
  color: var(--gr);
}
.faq_cta-card:nth-child(2) .faq_cta-ico {
  background: var(--sk-lt);
  color: var(--sk);
}
.faq_cta-card:nth-child(3) .faq_cta-ico {
  background: var(--gr-lt);
  color: var(--gr);
}
.faq_cta-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 8px;
}
.faq_cta-card p {
  font-size: .84rem;
  color: var(--mt);
  line-height: 1.72;
  margin-bottom: 18px;
}
.faq_cta-card a {
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.faq_cta-card:nth-child(1) a {
  color: var(--gr);
}
.faq_cta-card:nth-child(2) a {
  color: var(--sk);
}
.faq_cta-card:nth-child(3) a {
  color: var(--gr);
}
.faq_cta-card a:hover {
  gap: 10px;
}
.faq_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gr-lt);
  border: 1px solid rgba(26,140,107,.25);
  color: var(--gr);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
}
.faq_eyebrow-center {
  justify-content: center;
}
.faq_sec-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 12px;
}
.faq_sec-rule {
  width: 60px;
  height: 3px;
  background: var(--gr);
  margin: 12px auto 0;
  border-radius: 4px;
}
.text-center {
  text-align: center;
}
.mb-4 {
  margin-bottom: 1.5rem;
}

/* Scroll Reveal */
.sr {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.sr.vis {
  opacity: 1;
  transform: translateY(0);
}
.sr-l {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .5s ease, transform .5s ease;
}
.sr-l.vis {
  opacity: 1;
  transform: translateX(0);
}
.sr-r {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.sr-r.vis {
  opacity: 1;
  transform: translateX(0);
}
/* PRICING PAGE CSS - Unique prefix: unq_ */

/* Breadcrumb */
.unq_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.unq_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}
.unq_breadcrumb a:hover { color: var(--gr); }
.unq_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}
.unq_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero */
.unq_faq-hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.unq_faq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.unq_faq-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.unq_faq-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.12;
  margin-bottom: 12px;
}
.unq_faq-hero h1 em { color: var(--gr); font-style: normal; }

/* Value Strip */
.unq_pr-value-strip {
  background: #fff;
  border-bottom: 1px solid var(--bd);
}
.unq_pr-value-inner {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-left: 1px solid var(--bd);
}
.unq_pr-value-cell {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid var(--bd);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background .2s;
}
.unq_pr-value-cell:hover { background: var(--off); }
.unq_pr-value-ico {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  background: var(--gr-lt);
  color: var(--gr);
}
.unq_pr-value-txt strong {
  display: block;
  font-size: .83rem;
  font-weight: 700;
  color: var(--bl);
  line-height: 1.3;
}
.unq_pr-value-txt span { font-size: .74rem; color: var(--mt); }

@media (max-width: 767px) {
  .unq_pr-value-inner { flex-wrap: wrap; }
  .unq_pr-value-cell { flex: 0 0 50%; border-bottom: 1px solid var(--bd); }
}
@media (max-width: 479px) {
  .unq_pr-value-cell { flex: 0 0 100%; }
}

/* Pricing Section */
.unq_pr-section {
  padding: 40px 0 40px;
  background: #ffffff;
}
.unq_pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.unq_pr-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .unq_pr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .unq_pr-grid { grid-template-columns: 1fr; }
  .unq_pr-grid-2 { grid-template-columns: 1fr; }
}

.unq_pr-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid var(--bd);
  overflow: hidden;
  position: relative;
  transition: all .28s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.unq_pr-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  transform: translateY(-5px);
}
.unq_pr-card.unq_featured {
  border-color: var(--gr);
  border-width: 2px;
}
.unq_pr-card-bar { height: 4px; width: 100%; }
.unq_pr-card.unq_c-gr .unq_pr-card-bar { background: var(--gr); }
.unq_pr-card.unq_c-sk .unq_pr-card-bar { background: var(--gr); }

.unq_pr-ribbon {
  position: absolute;
  top: 14px;
  right: -28px;
  background: var(--gr);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(35deg);
  white-space: nowrap;
}
.unq_pr-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.unq_pr-card-ico-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.unq_pr-card-ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform .22s;
}
.unq_pr-card:hover .unq_pr-card-ico { transform: scale(1.1) rotate(-5deg); }
.unq_pr-card.unq_c-gr .unq_pr-card-ico { background: var(--gr-lt); color: var(--gr); }
.unq_pr-card.unq_c-sk .unq_pr-card-ico { background: var(--gr-lt); color: var(--gr); }

.unq_pr-card-name { font-size: .95rem; font-weight: 700; color: var(--bl); }
.unq_pr-card-tag {
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 4px;
}
.unq_pr-card.unq_c-gr .unq_pr-card-tag { background: var(--gr-lt); color: var(--gr); }
.unq_pr-card.unq_c-sk .unq_pr-card-tag { background: var(--gr-lt); color: var(--gr); }

.unq_pr-price-block {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 14px 0 12px;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}
.unq_pr-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mt);
  padding-bottom: 6px;
}
.unq_pr-amount { font-size: 2.2rem; font-weight: 700; line-height: 1; }
.unq_pr-card.unq_c-gr .unq_pr-amount { color: var(--gr); }
.unq_pr-card.unq_c-sk .unq_pr-amount { color: var(--gr); }
.unq_pr-unit {
  font-size: .78rem;
  color: var(--lt);
  padding-bottom: 5px;
}
.unq_pr-price-note {
  font-size: .75rem;
  color: var(--mt);
  margin-bottom: 14px;
  font-style: italic;
}
.unq_pr-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.unq_pr-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .83rem;
  color: var(--mt);
}
.unq_pr-features li i {
  font-size: .65rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.unq_pr-card.unq_c-gr .unq_pr-features li i { color: var(--gr); }
.unq_pr-card.unq_c-sk .unq_pr-features li i { color: var(--gr); }

.unq_pr-card-cta {
  display: block;
  text-align: center;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  margin-top: auto;
}
.unq_pr-card.unq_c-gr .unq_pr-card-cta {
  background: var(--gr-lt);
  color: var(--gr);
  border: 1.5px solid rgba(26,140,107,.3);
}
.unq_pr-card.unq_c-gr .unq_pr-card-cta:hover {
  background: var(--gr);
  color: #fff;
}
.unq_pr-card.unq_c-sk .unq_pr-card-cta {
  background: var(--gr-lt);
  color: var(--gr);
  border: 1.5px solid rgba(74,158,202,.3);
}
.unq_pr-card.unq_c-sk .unq_pr-card-cta:hover {
  background: var(--gr);
  color: #fff;
}

/* Full Package Card */
.unq_pr-package-card {
  background: #fff;
  border: 2px solid var(--gr);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 28px;
  transition: all .28s;
}
.unq_pr-package-card:hover {
  box-shadow: 0 16px 52px rgba(26,140,107,.18);
  transform: translateY(-4px);
}
.unq_pr-package-top {
  background: var(--gr-lt);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.unq_pr-package-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gr-lt);
  border: 1px solid var(--gr);
  color: var(--gr);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}
.unq_pr-package-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 6px;
}
.unq_pr-package-desc {
  font-size: .9rem;
  color: var(--mt);
  max-width: 500px;
}
.unq_pr-package-price { text-align: right; }
.unq_pr-package-price .unq_pr-amount {
  font-size: 2rem;
  color: var(--gr);
  display: block;
  font-weight: 700;
}
.unq_pr-package-price small {
  font-size: .78rem;
  color: var(--mt);
  display: block;
}
.unq_pr-package-body {
  padding: 28px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 767px) {
  .unq_pr-package-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .unq_pr-package-price { text-align: left; }
  .unq_pr-package-body { grid-template-columns: 1fr; }
}
.unq_pr-package-col {
  padding: 0 24px;
  border-right: 1px solid var(--bd);
}
.unq_pr-package-col:first-child { padding-left: 0; }
.unq_pr-package-col:last-child {
  border-right: none;
  padding-right: 0;
}
.unq_pr-package-col-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gr-lt);
}
.unq_pr-package-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.unq_pr-package-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .83rem;
  color: var(--mt);
}
.unq_pr-package-col ul li i {
  color: var(--gr);
  font-size: .65rem;
  margin-top: 4px;
}
.unq_pr-package-footer {
  padding: 20px 36px;
  border-top: 1px solid rgba(26,140,107,.15);
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.unq_pr-emi-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--mt);
}
.unq_pr-emi-note i { color: var(--gr); }
.unq_pr-emi-note strong { color: var(--bl); }
.unq_pr-note-banner {
  background: var(--gr-lt);
  border: 1px solid var(--gr);
  border-radius: 10px;
  padding: 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
}
.unq_pr-note-banner i {
  color: var(--gr);
  font-size: 1.1rem;
}
.unq_pr-note-banner p {
  font-size: .85rem;
  color: var(--mt);
  margin: 0;
}

/* How Pricing Works */
.unq_pr-how-strip {
  background: linear-gradient(135deg, #fff 0%, var(--off) 100%);
  padding: 70px 0;
  position: relative;
}
.unq_pr-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 50px;
  flex-wrap: wrap;
}
.unq_pr-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--gr) 0%, var(--gr) 25%, var(--sk) 25%, var(--sk) 50%, var(--gr) 50%, var(--gr) 75%, var(--sk) 75%, var(--sk) 100%);
  border-radius: 3px;
}
@media (max-width: 768px) {
  .unq_pr-timeline::before { display: none; }
  .unq_pr-timeline { flex-direction: column; gap: 30px; }
}
.unq_pr-timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  background: #fff;
  margin: 0 8px;
  padding: 28px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,.05);
  transition: all .3s ease;
  border: 1px solid var(--bd);
}
.unq_pr-timeline-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(26,140,107,.12);
  border-color: var(--gr);
}
.unq_pr-step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  transition: all .3s ease;
  border: 2px solid transparent;
}
.unq_pr-timeline-step:nth-child(1) .unq_pr-step-icon { background: var(--gr-lt); color: var(--gr); }
.unq_pr-timeline-step:nth-child(1):hover .unq_pr-step-icon { background: var(--gr); color: #fff; transform: scale(1.08); }
.unq_pr-timeline-step:nth-child(2) .unq_pr-step-icon { background: var(--sk-lt); color: var(--sk); }
.unq_pr-timeline-step:nth-child(2):hover .unq_pr-step-icon { background: var(--sk); color: #fff; transform: scale(1.08); }
.unq_pr-timeline-step:nth-child(3) .unq_pr-step-icon { background: var(--gr-lt); color: var(--gr); }
.unq_pr-timeline-step:nth-child(3):hover .unq_pr-step-icon { background: var(--gr); color: #fff; transform: scale(1.08); }
.unq_pr-timeline-step:nth-child(4) .unq_pr-step-icon { background: var(--sk-lt); color: var(--sk); }
.unq_pr-timeline-step:nth-child(4):hover .unq_pr-step-icon { background: var(--sk); color: #fff; transform: scale(1.08); }

.unq_pr-step-number {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gr);
  background: var(--gr-lt);
  padding: 3px 10px;
  border-radius: 30px;
  margin-bottom: 15px;
}
.unq_pr-timeline-step:nth-child(2) .unq_pr-step-number { color: var(--sk); background: var(--sk-lt); }
.unq_pr-timeline-step:nth-child(4) .unq_pr-step-number { color: var(--sk); background: var(--sk-lt); }
.unq_pr-timeline-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 10px;
}
.unq_pr-timeline-step p {
  font-size: .82rem;
  color: var(--mt);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.unq_pr-cta {
  background: var(--gr-lt);
  padding: 52px 0;
}
.unq_pr-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.unq_pr-cta h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--bl);
  margin-bottom: 8px;
}
.unq_pr-cta h2 em {
  color: var(--gr);
  font-style: normal;
}
.unq_pr-cta p {
  font-size: .92rem;
  color: var(--mt);
  max-width: 440px;
}
.unq_pr-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Utility Classes */
.unq_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gr);
  background: var(--gr-lt);
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.unq_sec-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 12px;
}
.unq_sec-rule {
  width: 60px;
  height: 3px;
  background: var(--gr);
  margin: 12px auto 0;
  border-radius: 4px;
}
.unq_sec-desc {
  font-size: .92rem;
  color: var(--mt);
  max-width: 650px;
  margin: 16px auto 0;
}
.unq_mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.unq_btn-g {
  background: var(--gr);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.unq_btn-g:hover {
  background: #0e6b4f;
  transform: translateY(-2px);
  color: #fff;
}
.unq_btn-o {
  background: transparent;
  border: 2px solid var(--gr);
  color: var(--gr);
  padding: 9px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.unq_btn-o:hover {
  background: var(--gr);
  color: #fff;
  transform: translateY(-2px);
}

/* Scroll Reveal */
.sr {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.sr.vis {
  opacity: 1;
  transform: translateY(0);
}
.sr-l {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .5s ease, transform .5s ease;
}
.sr-l.vis {
  opacity: 1;
  transform: translateX(0);
}
.sr-r {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.sr-r.vis {
  opacity: 1;
  transform: translateX(0);
}
/* HOW IT WORKS PAGE - EXTERNAL CSS */
/* Unique prefix: unq_ */

/* Breadcrumb */
.unq_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.unq_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}
.unq_breadcrumb a:hover { color: var(--gr); }
.unq_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}
.unq_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero */
.unq_faq-hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.unq_faq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.unq_faq-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.unq_faq-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.12;
  margin-bottom: 12px;
}
.unq_faq-hero h1 em { color: var(--gr); font-style: normal; }

/* Utility Classes */
.unq_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gr);
  background: var(--gr-lt);
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.unq_sec-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 12px;
}
.unq_sec-rule {
  width: 60px;
  height: 3px;
  background: var(--gr);
  margin: 12px auto 0;
  border-radius: 4px;
}
.unq_sec-desc {
  font-size: .92rem;
  color: var(--mt);
  max-width: 650px;
  margin: 16px auto 0;
}
.text-center { text-align: center; }
.unq_mx-auto { margin-left: auto; margin-right: auto; }
.mb-5 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* Steps Section */
.unq_steps-section {
  padding: 64px 0 80px;
  background: #ffffff;
}
.unq_steps-container {
  max-width: 900px;
  margin: 0 auto;
}
.unq_step-wrapper {
  margin-bottom: 0;
}
.unq_step-item {
  position: relative;
  display: flex;
  gap: 28px;
  padding: 32px 36px;
  background: #fff;
  border: 2px solid var(--bd);
  border-radius: 24px;
  transition: all .35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
}
.unq_step-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,.12);
}
.unq_step-item:nth-child(1):hover { border-color: var(--gr); }
.unq_step-item:nth-child(2):hover { border-color: var(--sk); }
.unq_step-item:nth-child(3):hover { border-color: var(--gr); }
.unq_step-item:nth-child(4):hover { border-color: var(--sk); }
.unq_step-item:nth-child(5):hover { border-color: var(--gr); }

.unq_step-number {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  transition: all .3s ease;
}
.unq_step-item:nth-child(1) .unq_step-number,
.unq_step-item:nth-child(3) .unq_step-number,
.unq_step-item:nth-child(5) .unq_step-number {
  background: var(--gr-lt);
  color: var(--gr);
}
.unq_step-item:nth-child(2) .unq_step-number,
.unq_step-item:nth-child(4) .unq_step-number {
  background: var(--sk-lt);
  color: var(--sk);
}
.unq_step-item:hover .unq_step-number {
  transform: scale(1.08);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.unq_step-content {
  flex: 1;
}
.unq_step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 14px;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 14px;
}
.unq_step-title i {
  font-size: 1.6rem;
  transition: all .3s ease;
}
.unq_step-item:nth-child(1) .unq_step-title i,
.unq_step-item:nth-child(3) .unq_step-title i,
.unq_step-item:nth-child(5) .unq_step-title i { color: var(--gr); }
.unq_step-item:nth-child(2) .unq_step-title i,
.unq_step-item:nth-child(4) .unq_step-title i { color: var(--sk); }
.unq_step-item:hover .unq_step-title i {
  transform: scale(1.1) rotate(-5deg);
}
.unq_step-description {
  font-size: .92rem;
  color: var(--mt);
  line-height: 1.7;
  margin-bottom: 18px;
}
.unq_step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.unq_step-feature {
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--bd);
  color: var(--mt);
  transition: all .25s ease;
}
.unq_step-item:nth-child(1):hover .unq_step-feature:hover,
.unq_step-item:nth-child(3):hover .unq_step-feature:hover,
.unq_step-item:nth-child(5):hover .unq_step-feature:hover {
  background: var(--gr-lt);
  border-color: var(--gr);
  color: var(--gr);
  transform: translateY(-2px);
}
.unq_step-item:nth-child(2):hover .unq_step-feature:hover,
.unq_step-item:nth-child(4):hover .unq_step-feature:hover {
  background: var(--sk-lt);
  border-color: var(--sk);
  color: var(--sk);
  transform: translateY(-2px);
}
.unq_step-note {
  padding: 12px 18px;
  background: var(--off);
  border-radius: 14px;
  font-size: .83rem;
  color: var(--mt);
  line-height: 1.6;
  transition: all .25s ease;
}
.unq_step-item:nth-child(1) .unq_step-note,
.unq_step-item:nth-child(3) .unq_step-note,
.unq_step-item:nth-child(5) .unq_step-note {
  border-left: 3px solid var(--gr);
}
.unq_step-item:nth-child(2) .unq_step-note,
.unq_step-item:nth-child(4) .unq_step-note {
  border-left: 3px solid var(--sk);
}
.unq_step-item:hover .unq_step-note {
  background: #fff;
}

/* Connector Arrow */
.unq_step-connector {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0 20px 0;
}
.unq_step-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: unq_bounce 2s ease-in-out infinite;
}
.unq_step-arrow i {
  font-size: 1.3rem;
}
.unq_arrow-line {
  width: 2px;
  height: 30px;
}
.unq_step-wrapper:nth-child(1) .unq_step-arrow i { color: var(--gr); }
.unq_step-wrapper:nth-child(1) .unq_arrow-line { background: var(--gr); }
.unq_step-wrapper:nth-child(2) .unq_step-arrow i { color: var(--sk); }
.unq_step-wrapper:nth-child(2) .unq_arrow-line { background: var(--sk); }
.unq_step-wrapper:nth-child(3) .unq_step-arrow i { color: var(--gr); }
.unq_step-wrapper:nth-child(3) .unq_arrow-line { background: var(--gr); }
.unq_step-wrapper:nth-child(4) .unq_step-arrow i { color: var(--sk); }
.unq_step-wrapper:nth-child(4) .unq_arrow-line { background: var(--sk); }
.unq_step-wrapper:last-child .unq_step-connector { display: none; }

@keyframes unq_bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.unq_step-wrapper:hover .unq_step-arrow i {
  animation: none;
  transform: translateY(8px);
  transition: transform .25s ease;
}

/* Trust Section */
.unq_trust-section {
  background: var(--off);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: 56px 0;
}
.unq_trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .unq_trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .unq_trust-grid { grid-template-columns: 1fr; }
}
.unq_trust-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--bd);
  padding: 28px 24px;
  text-align: center;
  transition: all .3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.unq_trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  border-color: var(--gr);
}
.unq_trust-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  transition: all .3s ease;
}
.unq_trust-card:nth-child(1) .unq_trust-icon {
  background: var(--gr-lt);
  color: var(--gr);
}
.unq_trust-card:nth-child(1):hover .unq_trust-icon {
  background: var(--gr);
  color: #fff;
  transform: scale(1.08) rotate(-5deg);
}
.unq_trust-card:nth-child(2) .unq_trust-icon {
  background: var(--sk-lt);
  color: var(--sk);
}
.unq_trust-card:nth-child(2):hover .unq_trust-icon {
  background: var(--sk);
  color: #fff;
  transform: scale(1.08) rotate(-5deg);
}
.unq_trust-card:nth-child(3) .unq_trust-icon {
  background: var(--gr-lt);
  color: var(--gr);
}
.unq_trust-card:nth-child(3):hover .unq_trust-icon {
  background: var(--gr);
  color: #fff;
  transform: scale(1.08) rotate(-5deg);
}
.unq_trust-card:nth-child(4) .unq_trust-icon {
  background: var(--sk-lt);
  color: var(--sk);
}
.unq_trust-card:nth-child(4):hover .unq_trust-icon {
  background: var(--sk);
  color: #fff;
  transform: scale(1.08) rotate(-5deg);
}
.unq_trust-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 10px;
}
.unq_trust-desc {
  font-size: .8rem;
  color: var(--mt);
  line-height: 1.65;
  margin: 0;
}

/* CTA Section */
.unq_hiw-cta {
  background: var(--gr-lt);
  padding: 52px 0;
}
.unq_hiw-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.unq_hiw-cta h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: var(--bl);
  margin-bottom: 8px;
}
.unq_hiw-cta h2 em { color: var(--gr); font-style: normal; }
.unq_hiw-cta p {
  font-size: .93rem;
  color: var(--mt);
  margin: 0;
  max-width: 420px;
  line-height: 1.75;
}
.unq_hiw-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Button Styles */
.unq_btn-g {
  background: var(--gr);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.unq_btn-g:hover {
  background: #0e6b4f;
  transform: translateY(-2px);
  color: #fff;
}
.unq_btn-o {
  background: transparent;
  border: 2px solid var(--gr);
  color: var(--gr);
  padding: 9px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.unq_btn-o:hover {
  background: var(--gr);
  color: #fff;
  transform: translateY(-2px);
}

/* Scroll Reveal */
.sr {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.sr.vis {
  opacity: 1;
  transform: translateY(0);
}
.sr-l {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .5s ease, transform .5s ease;
}
.sr-l.vis {
  opacity: 1;
  transform: translateX(0);
}
.sr-r {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.sr-r.vis {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Responsive */
@media (max-width: 575px) {
  .unq_step-item {
    padding: 20px 20px;
    flex-direction: column;
  }
  .unq_step-number {
    position: static;
    margin-bottom: 12px;
    width: 32px;
    height: 32px;
    font-size: .9rem;
  }
  .unq_step-content {
    padding-right: 0;
  }
  .unq_step-title {
    font-size: 1.05rem;
  }
  .unq_step-title i {
    font-size: 1.3rem;
  }
  .unq_step-connector {
    padding: 8px 0 16px 0;
  }
  .unq_step-arrow i {
    font-size: 1rem;
  }
  .unq_arrow-line {
    height: 20px;
  }
}
/* 404 PAGE - EXTERNAL CSS */
/* Unique prefix: err_ */

.err_hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.err_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.err_hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.err_code {
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 800;
  color: var(--gr);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-shadow: 4px 4px 12px rgba(26,140,107,.15);
}
.err_hero h1 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.3;
  margin-bottom: 16px;
}
.err_message {
  font-size: 1rem;
  color: var(--mt);
  max-width: 500px;
  margin-bottom: 30px;
}
.err_actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.err_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  transition: all .22s ease;
}
.err_btn-primary {
  background: var(--gr);
  color: #fff;
  border: 2px solid var(--gr);
}
.err_btn-primary:hover {
  background: transparent;
  color: var(--gr);
  transform: translateY(-2px);
}
.err_btn-secondary {
  background: transparent;
  color: var(--gr);
  border: 2px solid var(--gr);
}
.err_btn-secondary:hover {
  background: var(--gr);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .err_actions {
    flex-direction: column;
    align-items: center;
  }
  .err_btn {
    width: 200px;
    justify-content: center;
  }
}

/* Scroll Reveal */
.sr {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.sr.vis {
  opacity: 1;
  transform: translateY(0);
}
/* TERMS & CONDITIONS PAGE - EXTERNAL CSS */
/* Unique prefix: tc_ */

/* Breadcrumb */
.tc_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.tc_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}
.tc_breadcrumb a:hover { color: var(--gr); }
.tc_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}
.tc_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero Section */
.tc_hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.tc_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.tc_hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.tc_hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.12;
  margin-bottom: 12px;
}
.tc_hero h1 em {
  color: var(--gr);
  font-style: normal;
}

/* Main Content */
.tc_main {
  padding: 60px 0 80px;
  background: var(--off);
}

.tc_updated {
  background: var(--gr-lt);
  border-left: 3px solid var(--gr);
  padding: 12px 20px;
  margin-bottom: 40px;
}
.tc_updated p {
  margin: 0;
  color: var(--mt);
  font-size: .85rem;
}
.tc_updated strong {
  color: var(--bl);
}
.tc_section {
  margin-bottom: 40px;
}
.tc_section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bl);
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gr);
  display: inline-block;
}
.tc_section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bl);
  margin: 20px 0 12px 0;
}
.tc_section p {
  color: var(--mt);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: .92rem;
}
.tc_section p:last-child {
  margin-bottom: 0;
}
.tc_list {
  margin: 16px 0;
  padding-left: 24px;
}
.tc_list li {
  color: var(--mt);
  line-height: 1.85;
  margin-bottom: 10px;
  font-size: .92rem;
}
.tc_list li strong {
  color: var(--bl);
}
.tc_highlight {
  background: var(--gr-lt);
  border-left: 3px solid var(--gr);
  padding: 14px 20px;
  margin: 20px 0;
}
.tc_highlight p {
  margin-bottom: 0;
}
.tc_footer {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--bd);
}
.tc_footer p {
  color: var(--mt);
  font-size: .88rem;
  margin-bottom: 0;
}
.tc_footer a {
  color: var(--gr);
  text-decoration: none;
}
.tc_footer a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .tc_container {
    padding: 0 20px;
  }
  .tc_section h2 {
    font-size: 1.1rem;
  }
}

/* Scroll Reveal */
.sr {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.sr.vis {
  opacity: 1;
  transform: translateY(0);
}
/* PRIVACY POLICY PAGE - EXTERNAL CSS */
/* Unique prefix: pp_ */

/* Breadcrumb */
.pp_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.pp_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}
.pp_breadcrumb a:hover { color: var(--gr); }
.pp_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}
.pp_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero Section */
.pp_hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.pp_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.pp_hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.pp_hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.12;
  margin-bottom: 12px;
}
.pp_hero h1 em {
  color: var(--gr);
  font-style: normal;
}

/* Main Content */
.pp_main {
  padding: 60px 0 80px;
  background: var(--off);
}

.pp_updated {
  background: var(--gr-lt);
  border-left: 3px solid var(--gr);
  padding: 12px 20px;
  margin-bottom: 40px;
}
.pp_updated p {
  margin: 0;
  color: var(--mt);
  font-size: .85rem;
}
.pp_updated strong {
  color: var(--bl);
}
.pp_section {
  margin-bottom: 40px;
}
.pp_section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bl);
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gr);
  display: inline-block;
}
.pp_section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bl);
  margin: 20px 0 12px 0;
}
.pp_section p {
  color: var(--mt);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: .92rem;
}
.pp_section p:last-child {
  margin-bottom: 0;
}
.pp_list {
  margin: 16px 0;
  padding-left: 24px;
}
.pp_list li {
  color: var(--mt);
  line-height: 1.85;
  margin-bottom: 10px;
  font-size: .92rem;
}
.pp_list li strong {
  color: var(--bl);
}
.pp_highlight {
  background: var(--gr-lt);
  border-left: 3px solid var(--gr);
  padding: 14px 20px;
  margin: 20px 0;
}
.pp_highlight p {
  margin-bottom: 0;
}
.pp_footer {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--bd);
}
.pp_footer p {
  color: var(--mt);
  font-size: .88rem;
  margin-bottom: 0;
}
.pp_footer a {
  color: var(--gr);
  text-decoration: none;
}
.pp_footer a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 767px) {

  .pp_section h2 {
    font-size: 1.1rem;
  }
}

/* Scroll Reveal */
.sr {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.sr.vis {
  opacity: 1;
  transform: translateY(0);
}
/* REGULATIONS PAGE - EXTERNAL CSS */
/* Unique prefix: reg_ */

/* Breadcrumb */
.reg_breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.reg_breadcrumb a {
    font-size: .78rem;
    font-weight: 600;
    color: var(--mt);
    text-decoration: none;
    transition: color .18s;
}
.reg_breadcrumb a:hover {
    color: var(--gr);
}
.reg_breadcrumb-sep {
    font-size: .7rem;
    color: var(--lt);
    margin: 0 8px;
}
.reg_breadcrumb-current {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gr);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Hero */
.reg_hero {
    background: #dff0e8;
    background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
    padding: 40px 0 45px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--sg);
}
.reg_hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}
.reg_hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.reg_hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--bl);
    line-height: 1.15;
    margin-bottom: 16px;
}
.reg_hero h1 em {
    color: var(--gr);
    font-style: normal;
}
.mt-3 {
    margin-top: 16px;
}

/* Main Layout */
.reg_main {
    background: #fff;
}
.reg_section {
    padding: 70px 0;
}
.reg_section:nth-child(even) {
    background: var(--off);
}
.reg_section:nth-child(odd) {
    background: #fff;
}
.reg_section:first-child {
    padding-top: 60px;
}
.reg_section:last-child {
    padding-bottom: 60px;
}

/* Section Header */
.reg_section-header {
    text-align: center;
    margin-bottom: 48px;
}
.reg_section-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--gr);
    background: var(--gr-lt);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.reg_section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bl);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.reg_section-desc {
    font-size: .95rem;
    color: var(--mt);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Rules Grid */
.reg_rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .reg_rules-grid {
        grid-template-columns: 1fr;
    }
}
.reg_rule-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid var(--bd);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.reg_rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gr);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.reg_rule-card:hover::before {
    transform: scaleX(1);
}
.reg_rule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(0,0,0,.12);
    border-color: rgba(26,140,107,.2);
}
.reg_rule-icon {
    width: 56px;
    height: 56px;
    background: var(--gr-lt);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--gr);
}
.reg_rule-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bl);
    margin-bottom: 10px;
}
.reg_rule-card p {
    font-size: .85rem;
    color: var(--mt);
    line-height: 1.7;
    margin: 0;
}
.reg_rule-highlight {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gr);
    margin-top: 16px;
    display: inline-block;
}
.reg_note {
    display: flex;
    gap: 14px;
    background: var(--gr-lt);
    border-radius: 14px;
    padding: 18px 24px;
    margin-top: 24px;
}
.reg_note i {
    font-size: 1rem;
    color: var(--gr);
    margin-top: 2px;
}
.reg_note p {
    font-size: .86rem;
    color: var(--mt);
    line-height: 1.75;
    margin: 0;
}

/* Table */
.reg_table-wrapper {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--bd);
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.reg_table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}
.reg_table thead {
    background: var(--gr);
    color: #fff;
}
.reg_table thead th {
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    font-size: .8rem;
}
.reg_table tbody tr {
    border-bottom: 1px solid var(--off);
}
.reg_table tbody tr:last-child {
    border-bottom: none;
}
.reg_table tbody td {
    padding: 14px 20px;
    color: var(--mt);
}
.reg_table tbody td:first-child {
    font-weight: 600;
    color: var(--bl);
}
.reg_pill {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.reg_pill-mandatory {
    background: var(--gr-lt);
    color: var(--gr);
}
.reg_pill-elective {
    background: var(--sk-lt);
    color: var(--sk);
}

/* Steps */
.reg_steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .reg_steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .reg_steps {
        grid-template-columns: 1fr;
    }
}
.reg_step {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--bd);
    transition: all .25s;
    position: relative;
}
.reg_step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
    border-color: var(--gr);
}
.reg_step-num {
    width: 44px;
    height: 44px;
    background: var(--gr-lt);
    color: var(--gr);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.reg_step h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--bl);
    margin-bottom: 8px;
}
.reg_step p {
    font-size: .8rem;
    color: var(--mt);
    line-height: 1.65;
    margin: 0;
}

/* Split Grid for Supervisor */
.reg_split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .reg_split {
        grid-template-columns: 1fr;
    }
}
.reg_split-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--bd);
    overflow: hidden;
    transition: box-shadow .25s;
}
.reg_split-card:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.reg_split-header {
    padding: 18px 24px;
    background: var(--off);
    border-bottom: 1px solid var(--bd);
    display: flex;
    align-items: center;
    gap: 10px;
}
.reg_split-header i {
    font-size: 1rem;
    color: var(--gr);
}
.reg_split-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bl);
    margin: 0;
}
.reg_split-list {
    padding: 18px 24px;
    list-style: none;
    margin: 0;
}
.reg_split-list li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--off);
    font-size: .84rem;
    color: var(--mt);
    line-height: 1.6;
}
.reg_split-list li:last-child {
    border-bottom: none;
}
.reg_split-list li i {
    color: var(--gr);
    font-size: .75rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Tools Grid */
.reg_tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}
@media (max-width: 768px) {
    .reg_tools-grid {
        grid-template-columns: 1fr;
    }
}
.reg_tool-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--bd);
    transition: all .25s;
}
.reg_tool-card:hover {
    transform: translateY(-3px);
    border-color: var(--gr);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.reg_tool-icon {
    width: 56px;
    height: 56px;
    background: var(--gr-lt);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--gr);
}
.reg_tool-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bl);
    margin-bottom: 8px;
}
.reg_tool-card p {
    font-size: .8rem;
    color: var(--mt);
    line-height: 1.7;
    margin: 0;
}

/* Threshold Card */
.reg_threshold-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--bd);
    padding: 28px;
}
.reg_threshold-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bl);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.reg_bar-item {
    margin-bottom: 18px;
}
.reg_bar-item:last-child {
    margin-bottom: 0;
}
.reg_bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: .8rem;
}
.reg_bar-label span:first-child {
    font-weight: 600;
    color: var(--bl);
}
.reg_bar-label span:last-child {
    font-weight: 700;
    color: var(--gr);
}
.reg_bar-track {
    height: 8px;
    background: var(--off);
    border-radius: 99px;
    overflow: hidden;
}
.reg_bar-fill {
    height: 100%;
    border-radius: 99px;
    background: var(--gr);
}
.reg_info-note {
    display: flex;
    gap: 14px;
    background: var(--gr-lt);
    border-radius: 14px;
    padding: 18px 24px;
    margin-top: 28px;
}
.reg_info-note i {
    font-size: 1.1rem;
    color: var(--gr);
    margin-top: 2px;
}
.reg_info-note p {
    font-size: .86rem;
    color: var(--mt);
    line-height: 1.75;
    margin: 0;
}

/* CTA Section */
.reg_cta {
    background: var(--gr-lt);
    padding: 52px 0;
}
.reg_cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.reg_cta h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    color: var(--bl);
    margin-bottom: 8px;
}
.reg_cta h2 em {
    color: var(--gr);
    font-style: normal;
}
.reg_cta p {
    font-size: .92rem;
    color: var(--mt);
    max-width: 440px;
}
.reg_cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.reg_btn-g {
    background: var(--gr);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}
.reg_btn-g:hover {
    background: #0e6b4f;
    transform: translateY(-2px);
    color: #fff;
}
.reg_btn-o {
    background: transparent;
    border: 2px solid var(--gr);
    color: var(--gr);
    padding: 9px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}
.reg_btn-o:hover {
    background: var(--gr);
    color: #fff;
    transform: translateY(-2px);
}

/* Utility Classes */
.text-center {
    text-align: center;
}
.mb-4 {
    margin-bottom: 24px;
}

/* Scroll Reveal */
.sr {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .55s ease, transform .55s ease;
}
.sr.vis {
    opacity: 1;
    transform: translateY(0);
}
.sr-l {
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity .55s ease, transform .55s ease;
}
.sr-l.vis {
    opacity: 1;
    transform: translateX(0);
}
.sr-r {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity .55s ease, transform .55s ease;
}
.sr-r.vis {
    opacity: 1;
    transform: translateX(0);
}
/* PROGRESS TRACKING PAGE - EXTERNAL CSS */
/* Unique prefix: pt_ */

/* Breadcrumb */
.pt_breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.pt_breadcrumb a {
    font-size: .78rem;
    font-weight: 600;
    color: var(--mt);
    text-decoration: none;
    transition: color .18s;
}
.pt_breadcrumb a:hover {
    color: var(--gr);
}
.pt_breadcrumb-sep {
    font-size: .7rem;
    color: var(--lt);
    margin: 0 8px;
}
.pt_breadcrumb-current {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gr);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.mt-3 {
    margin-top: 16px;
}

/* Hero */
.pt_hero {
    background: #dff0e8;
    background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
    padding: 40px 0 45px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--sg);
}
.pt_hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}
.pt_hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.pt_hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--bl);
    line-height: 1.15;
    margin-bottom: 16px;
}
.pt_hero h1 em {
    color: var(--gr);
    font-style: normal;
}

/* Main Layout */
.pt_main {
    background: #fff;
}
.pt_section {
    padding: 60px 0;
}
.pt_section:nth-child(even) {
    background: var(--off);
}
.pt_section:nth-child(odd) {
    background: #fff;
}

/* Section Header */
.pt_section-header {
    text-align: center;
    margin-bottom: 40px;
}
.pt_section-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--gr);
    background: var(--gr-lt);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.pt_section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bl);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.pt_section-desc {
    font-size: .95rem;
    color: var(--mt);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Grid Cards */
.pt_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .pt_grid {
        grid-template-columns: 1fr;
    }
}
.pt_card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    border: 1px solid var(--bd);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.pt_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gr);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.pt_card:hover::before {
    transform: scaleX(1);
}
.pt_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(0,0,0,.12);
    border-color: rgba(26,140,107,.2);
}
.pt_icon {
    width: 70px;
    height: 70px;
    background: var(--gr-lt);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--gr);
    transition: all .3s;
}
.pt_card:hover .pt_icon {
    background: var(--gr);
    color: #fff;
    transform: scale(1.05);
}
.pt_card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bl);
    margin-bottom: 10px;
}
.pt_card p {
    font-size: .85rem;
    color: var(--mt);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Steps */
.pt_steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .pt_steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .pt_steps {
        grid-template-columns: 1fr;
    }
}
.pt_step {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid var(--bd);
    transition: all .25s;
}
.pt_step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
    border-color: var(--gr);
}
.pt_step-num {
    width: 44px;
    height: 44px;
    background: var(--gr-lt);
    color: var(--gr);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.pt_step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bl);
    margin-bottom: 8px;
}
.pt_step p {
    font-size: .8rem;
    color: var(--mt);
    line-height: 1.65;
    margin: 0;
}

/* Split Grid */
.pt_split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .pt_split {
        grid-template-columns: 1fr;
    }
}
.pt_checklist {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--bd);
    overflow: hidden;
}
.pt_checklist-header {
    padding: 16px 24px;
    background: var(--off);
    border-bottom: 1px solid var(--bd);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pt_checklist-header i {
    font-size: 1rem;
    color: var(--gr);
}
.pt_checklist-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bl);
    margin: 0;
}
.pt_checklist-list {
    padding: 16px 24px;
    list-style: none;
    margin: 0;
}
.pt_checklist-list li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--off);
    font-size: .84rem;
    color: var(--mt);
    line-height: 1.6;
}
.pt_checklist-list li:last-child {
    border-bottom: none;
}
.pt_checklist-list li i {
    color: var(--gr);
    font-size: .85rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.pt_checklist-list li i.pt_sk {
    color: var(--sk);
}

/* Note Box */
.pt_note {
    display: flex;
    gap: 14px;
    background: var(--gr-lt);
    border-radius: 14px;
    padding: 16px 24px;
    margin-top: 28px;
}
.pt_note i {
    font-size: 1rem;
    color: var(--gr);
    margin-top: 2px;
}
.pt_note p {
    font-size: .86rem;
    color: var(--mt);
    line-height: 1.75;
    margin: 0;
}

/* CTA Section */
.pt_cta {
    background: var(--gr-lt);
    padding: 52px 0;
}
.pt_cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.pt_cta h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    color: var(--bl);
    margin-bottom: 8px;
}
.pt_cta h2 em {
    color: var(--gr);
    font-style: normal;
}
.pt_cta p {
    font-size: .92rem;
    color: var(--mt);
    max-width: 440px;
}
.pt_cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.pt_btn-g {
    background: var(--gr);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}
.pt_btn-g:hover {
    background: #0e6b4f;
    transform: translateY(-2px);
    color: #fff;
}
.pt_btn-o {
    background: transparent;
    border: 2px solid var(--gr);
    color: var(--gr);
    padding: 9px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}
.pt_btn-o:hover {
    background: var(--gr);
    color: #fff;
    transform: translateY(-2px);
}

/* Scroll Reveal */
.sr {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .55s ease, transform .55s ease;
}
.sr.vis {
    opacity: 1;
    transform: translateY(0);
}
.sr-l {
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity .55s ease, transform .55s ease;
}
.sr-l.vis {
    opacity: 1;
    transform: translateX(0);
}
.sr-r {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity .55s ease, transform .55s ease;
}
.sr-r.vis {
    opacity: 1;
    transform: translateX(0);
}
/* PRE-SUBMISSION & VIVA SUPPORT PAGE - EXTERNAL CSS */
/* Unique prefix: vs_ */

/* Breadcrumb */
.vs_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.vs_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}
.vs_breadcrumb a:hover {
  color: var(--gr);
}
.vs_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}
.vs_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.mt-3 {
  margin-top: 16px;
}

/* Hero */
.vs_hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 40px 0 45px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.vs_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.vs_hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.vs_hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.15;
  margin-bottom: 16px;
}
.vs_hero h1 em {
  color: var(--gr);
  font-style: normal;
}

/* Main Layout */
.vs_main {
  background: #fff;
}
.vs_section {
  padding: 70px 0;
}
.vs_section:nth-child(even) {
  background: var(--off);
}
.vs_section:nth-child(odd) {
  background: #fff;
}
.vs_section:first-child {
  padding-top: 60px;
}
.vs_section:last-child {
  padding-bottom: 60px;
}

/* Section Header */
.vs_section-header {
  text-align: center;
  margin-bottom: 48px;
}
.vs_section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gr);
  background: var(--gr-lt);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.vs_section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.vs_section-desc {
  font-size: .95rem;
  color: var(--mt);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Service Grid */
.vs_service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .vs_service-grid {
    grid-template-columns: 1fr;
  }
}
.vs_service-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--bd);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.vs_service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gr);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.vs_service-card:hover::before {
  transform: scaleX(1);
}
.vs_service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px -12px rgba(0,0,0,.12);
  border-color: rgba(26,140,107,.2);
}
.vs_service-icon {
  width: 70px;
  height: 70px;
  background: var(--gr-lt);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--gr);
  transition: all .3s;
}
.vs_service-card:hover .vs_service-icon {
  background: var(--gr);
  color: #fff;
  transform: scale(1.05);
}
.vs_service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 10px;
}
.vs_service-card p {
  font-size: .85rem;
  color: var(--mt);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Steps Grid */
.vs_steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .vs_steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .vs_steps-grid {
    grid-template-columns: 1fr;
  }
}
.vs_step-item {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--bd);
  transition: all .25s;
}
.vs_step-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  border-color: var(--gr);
}
.vs_step-number {
  width: 44px;
  height: 44px;
  background: var(--gr-lt);
  color: var(--gr);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.vs_step-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 8px;
}
.vs_step-item p {
  font-size: .8rem;
  color: var(--mt);
  line-height: 1.65;
  margin: 0;
}

/* Split Grid for Checklists */
.vs_split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .vs_split-grid {
    grid-template-columns: 1fr;
  }
}
.vs_checklist-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--bd);
  overflow: hidden;
  transition: box-shadow .25s;
}
.vs_checklist-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.vs_checklist-header {
  padding: 18px 24px;
  background: var(--off);
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  gap: 10px;
}
.vs_checklist-header i {
  font-size: 1.1rem;
  color: var(--gr);
}
.vs_checklist-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bl);
  margin: 0;
}
.vs_checklist-list {
  padding: 18px 24px;
  list-style: none;
  margin: 0;
}
.vs_checklist-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--off);
  font-size: .84rem;
  color: var(--mt);
  line-height: 1.6;
}
.vs_checklist-list li:last-child {
  border-bottom: none;
}
.vs_checklist-list li i {
  color: var(--gr);
  font-size: .85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Q&A Section */
.vs_qa-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .vs_qa-grid {
    grid-template-columns: 1fr;
  }
}
.vs_qa-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vs_qa-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--bd);
  overflow: hidden;
  cursor: pointer;
  transition: all .2s;
}
.vs_qa-item:hover {
  border-color: var(--gr);
}
.vs_qa-item.open {
  border-color: var(--gr);
  box-shadow: 0 8px 20px rgba(26,140,107,.1);
}
.vs_qa-question {
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
}
.vs_qa-badge {
  font-size: .6rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--gr-lt);
  color: var(--gr);
  flex-shrink: 0;
}
.vs_qa-question span:not(.vs_qa-badge) {
  flex: 1;
  font-size: .88rem;
  font-weight: 600;
  color: var(--bl);
  line-height: 1.5;
}
.vs_qa-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--mt);
  transition: all .25s;
  flex-shrink: 0;
}
.vs_qa-item.open .vs_qa-chevron {
  transform: rotate(180deg);
  background: var(--gr);
  color: #fff;
}
.vs_qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.vs_qa-item.open .vs_qa-answer {
  max-height: 250px;
}
.vs_qa-answer-inner {
  padding: 0 20px 18px 54px;
  font-size: .84rem;
  color: var(--mt);
  line-height: 1.75;
}

/* Sidebar Cards */
.vs_sidebar-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--bd);
  overflow: hidden;
  margin-bottom: 20px;
}
.vs_sidebar-card:last-child {
  margin-bottom: 0;
}
.vs_sidebar-header {
  background: var(--gr);
  color: #fff;
  padding: 14px 20px;
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vs_sidebar-body {
  padding: 18px 20px;
}
.vs_stat-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--off);
  font-size: .83rem;
}
.vs_stat-row:last-child {
  border-bottom: none;
}
.vs_stat-row span:first-child {
  color: var(--mt);
}
.vs_stat-row span:last-child {
  font-weight: 700;
  color: var(--bl);
}

/* Correction Grid */
.vs_correction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .vs_correction-grid {
    grid-template-columns: 1fr;
  }
}
.vs_workflow-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--bd);
  padding: 28px;
}
.vs_workflow-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vs_workflow-card h4 i {
  color: var(--gr);
}
.vs_workflow-step {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.vs_workflow-step:last-child {
  margin-bottom: 0;
}
.vs_workflow-num {
  width: 32px;
  height: 32px;
  background: var(--gr-lt);
  color: var(--gr);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.vs_workflow-text h5 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 4px;
}
.vs_workflow-text p {
  font-size: .8rem;
  color: var(--mt);
  line-height: 1.65;
  margin: 0;
}

.vs_types-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vs_type-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--bd);
  padding: 18px 22px;
  border-left: 3px solid var(--gr);
  transition: all .2s;
}
.vs_type-card-sk {
  border-left-color: var(--sk);
}
.vs_type-card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}
.vs_type-card h5 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vs_type-card p {
  font-size: .82rem;
  color: var(--mt);
  line-height: 1.7;
  margin-bottom: 10px;
}
.vs_type-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--gr-lt);
  color: var(--gr);
}
.vs_type-tag-sk {
  background: var(--sk-lt);
  color: var(--sk);
}

/* Info Note */
.vs_info-note {
  display: flex;
  gap: 14px;
  background: var(--gr-lt);
  border-radius: 14px;
  padding: 18px 24px;
  margin-top: 28px;
}
.vs_info-note i {
  font-size: 1.1rem;
  color: var(--gr);
  margin-top: 2px;
}
.vs_info-note p {
  font-size: .86rem;
  color: var(--mt);
  line-height: 1.75;
  margin: 0;
}

/* CTA Section */
.vs_cta {
  background: var(--gr-lt);
  padding: 52px 0;
}
.vs_cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.vs_cta h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--bl);
  margin-bottom: 8px;
}
.vs_cta h2 em {
  color: var(--gr);
  font-style: normal;
}
.vs_cta p {
  font-size: .92rem;
  color: var(--mt);
  max-width: 440px;
}
.vs_cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.vs_btn-g {
  background: var(--gr);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.vs_btn-g:hover {
  background: #0e6b4f;
  transform: translateY(-2px);
  color: #fff;
}
.vs_btn-o {
  background: transparent;
  border: 2px solid var(--gr);
  color: var(--gr);
  padding: 9px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.vs_btn-o:hover {
  background: var(--gr);
  color: #fff;
  transform: translateY(-2px);
}

/* Scroll Reveal */
.sr {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .55s ease, transform .55s ease;
}
.sr.vis {
  opacity: 1;
  transform: translateY(0);
}
.sr-l {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity .55s ease, transform .55s ease;
}
.sr-l.vis {
  opacity: 1;
  transform: translateX(0);
}
.sr-r {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.sr-r.vis {
  opacity: 1;
  transform: translateX(0);
}
/* SYNOPSIS / PROPOSAL SUPPORT PAGE - EXTERNAL CSS */
/* Unique prefix: sp_ */

/* Breadcrumb */
.sp_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 14px;
}
.sp_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}
.sp_breadcrumb a:hover {
  color: var(--gr);
}
.sp_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}
.sp_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero */
.sp_hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.sp_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.sp_hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.sp_hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.12;
  margin-bottom: 12px;
}
.sp_hero h1 em {
  color: var(--gr);
  font-style: normal;
}

/* Section Backgrounds */
.sp_section {
  padding: 72px 0;
}
.sp_bg-off {
  background: var(--off);
}
.sp_bg-wh {
  background: #fff;
}
.sp_bg-off2 {
  background: var(--off2);
}

.text-center {
  text-align: center;
}

/* Section Headers */
.sp_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 10px;
  justify-content: center;
}
.sp_title {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 14px;
  text-align: center;
}
.sp_rule {
  width: 40px;
  height: 3px;
  background: var(--gr);
  border-radius: 2px;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
}
.sp_desc {
  font-size: .95rem;
  color: var(--mt);
  line-height: 1.85;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Offer Grid */
.sp_offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
@media (max-width: 991px) {
  .sp_offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .sp_offer-grid {
    grid-template-columns: 1fr;
  }
}
.sp_offer-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--bd);
  padding: 28px 24px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.sp_offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,.09);
}
.sp_offer-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(26,140,107,.07);
  line-height: 1;
  user-select: none;
}
.sp_offer-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gr-lt);
  color: var(--gr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
  transition: background .2s, color .2s, transform .2s;
}
.sp_offer-card:nth-child(even) .sp_offer-icon {
  background: var(--sk-lt);
  color: var(--sk);
}
.sp_offer-card:hover .sp_offer-icon {
  transform: scale(1.1) rotate(-5deg);
}
.sp_offer-card h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 8px;
}
.sp_offer-card p {
  font-size: .84rem;
  color: var(--mt);
  line-height: 1.72;
  margin: 0;
}
.sp_offer-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gr);
  border-radius: 12px 0 0 12px;
}
.sp_offer-card:nth-child(even)::before {
  background: var(--sk);
}

/* Steps */
.sp_steps-wrapper {
  margin-top: 48px;
  overflow-x: auto;
}
.sp_steps-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  min-width: 900px;
}
@media (max-width: 991px) {
  .sp_steps-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    min-width: auto;
  }
  .sp_step-arrow {
    display: none;
  }
}
.sp_step-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--bd);
  padding: 28px 20px;
  text-align: center;
  transition: all .25s;
  flex: 1;
  min-width: 160px;
  position: relative;
}
.sp_step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  border-color: var(--gr);
}
.sp_step-num {
  width: 48px;
  height: 48px;
  background: var(--gr);
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.sp_step-card:nth-child(odd) .sp_step-num {
  background: var(--gr);
}
.sp_step-card:nth-child(even) .sp_step-num {
  background: var(--sk);
}
.sp_step-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 8px;
}
.sp_step-card p {
  font-size: .8rem;
  color: var(--mt);
  line-height: 1.65;
  margin: 0;
}
.sp_step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: var(--gr);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Why Choose Us */
.sp_choose-wrapper {
  background: linear-gradient(135deg, #fff 0%, var(--off) 100%);
  border-radius: 28px;
  padding: 48px 40px;
  margin-top: 48px;
  border: 1px solid var(--bd);
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.sp_choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .sp_choose-grid {
    grid-template-columns: 1fr;
  }
  .sp_choose-wrapper {
    padding: 32px 24px;
  }
}
.sp_choose-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 12px 0;
}
.sp_choose-icon {
  width: 56px;
  height: 56px;
  background: var(--gr-lt);
  color: var(--gr);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all .25s;
}
.sp_choose-item:hover .sp_choose-icon {
  transform: scale(1.05);
  background: var(--gr);
  color: white;
}
.sp_choose-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 8px;
}
.sp_choose-text p {
  font-size: .88rem;
  color: var(--mt);
  line-height: 1.7;
  margin: 0;
}

/* Metrics Grid */
.sp_metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 991px) {
  .sp_metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .sp_metrics-grid {
    grid-template-columns: 1fr;
  }
}
.sp_metric-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  border: 1px solid var(--bd);
  transition: all .25s;
}
.sp_metric-card:hover {
  transform: translateY(-4px);
  border-color: var(--gr);
}
.sp_metric-icon {
  font-size: 2.2rem;
  color: var(--gr);
  margin-bottom: 12px;
}
.sp_metric-card:nth-child(even) .sp_metric-icon {
  color: var(--sk);
}
.sp_metric-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bl);
  line-height: 1.2;
}
.sp_metric-label {
  font-size: .85rem;
  color: var(--mt);
  margin-top: 6px;
}

/* Disciplines */
.sp_disciplines-wrap {
  background: linear-gradient(135deg, var(--off) 0%, #fff 100%);
  border-radius: 28px;
  padding: 44px 32px;
  margin-top: 32px;
  border: 1px solid var(--bd);
}
.sp_domains {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.sp_domain-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 60px;
  font-size: .85rem;
  font-weight: 600;
  background: #fff;
  border: 1.5px solid var(--bd);
  color: var(--bl);
  transition: all .25s;
  cursor: default;
}
.sp_domain-pill i {
  color: var(--gr);
  font-size: .8rem;
}
.sp_domain-pill:hover {
  border-color: var(--gr);
  background: var(--gr-lt);
  color: var(--gr);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(26,140,107,.12);
}

/* CTA Section */
.sp_cta {
  background: var(--gr-lt);
  padding: 52px 0;
}
.sp_cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.sp_cta h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: var(--bl);
  margin-bottom: 8px;
}
.sp_cta h2 em {
  color: var(--gr);
  font-style: normal;
}
.sp_cta p {
  font-size: .93rem;
  color: var(--mt);
  margin: 0;
  max-width: 420px;
  line-height: 1.75;
}
.sp_cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.sp_btn-g {
  background: var(--gr);
  color: #fff;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.sp_btn-g:hover {
  background: #136e52;
  transform: translateY(-2px);
  color: #fff;
}
.sp_btn-o {
  background: transparent;
  border: 1.5px solid var(--gr);
  color: var(--gr);
  padding: 9px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.sp_btn-o:hover {
  background: var(--gr-lt);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .sp_cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Scroll Reveal */
.sv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s;
}
.sv.vis {
  opacity: 1;
  transform: none;
}
.sr-l {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s, transform .5s;
}
.sr-l.vis {
  opacity: 1;
  transform: none;
}
.sr-r {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .5s, transform .5s;
}
.sr-r.vis {
  opacity: 1;
  transform: none;
}
/* THESIS & DISSERTATION WRITING PAGE - EXTERNAL CSS */
/* Unique prefix: td_ */

/* Breadcrumb */
.td_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 14px;
}
.td_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}
.td_breadcrumb a:hover {
  color: var(--gr);
}
.td_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}
.td_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero */
.td_hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.td_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.td_hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.td_hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.2;
  margin-bottom: 12px;
}
.td_hero h1 em {
  color: var(--gr);
  font-style: normal;
}

/* Section Backgrounds */
.td_section {
  padding: 72px 0;
}
.td_bg-off {
  background: var(--off);
}
.td_bg-wh {
  background: #fff;
}
.td_bg-off2 {
  background: var(--off2);
}

.text-center {
  text-align: center;
}

/* Section Headers */
.td_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 10px;
  justify-content: center;
}
.td_title {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 14px;
  text-align: center;
}
.td_rule {
  width: 50px;
  height: 3px;
  background: var(--gr);
  border-radius: 2px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.td_desc {
  font-size: .95rem;
  color: var(--mt);
  line-height: 1.85;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Features Strip */
.td_features-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}
.td_feature-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--bd);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
}
.td_feature-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gr);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.td_feature-item:hover::before {
  transform: scaleX(1);
}
.td_feature-item:hover {
  transform: translateY(-8px);
  border-color: var(--gr);
  box-shadow: 0 20px 35px rgba(26,140,107,.12);
}
.td_feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gr-lt);
  color: var(--gr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  transition: all 0.3s ease;
}
.td_feature-item:hover .td_feature-icon {
  background: var(--gr);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}
.td_feature-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 10px;
}
.td_feature-item p {
  font-size: .83rem;
  color: var(--mt);
  line-height: 1.65;
  margin: 0;
}

/* Chapter Timeline */
.td_chapter-timeline {
  max-width: 900px;
  margin: 50px auto 0;
  position: relative;
}
.td_chapter-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gr), var(--sk), var(--gr-lt));
}
.td_chapter-item {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  position: relative;
}
.td_chapter-item:last-child {
  margin-bottom: 0;
}
.td_chapter-num {
  width: 56px;
  height: 56px;
  background: var(--gr);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.td_chapter-item:hover .td_chapter-num {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px var(--gr-lt);
}
.td_chapter-item:nth-child(even) .td_chapter-num {
  background: var(--sk);
}
.td_chapter-item:nth-child(even):hover .td_chapter-num {
  box-shadow: 0 0 0 6px var(--sk-lt);
}
.td_chapter-content {
  flex: 1;
  background: #fff;
  padding: 18px 24px;
  border-radius: 16px;
  border: 1px solid var(--bd);
  transition: all 0.3s ease;
}
.td_chapter-content:hover {
  border-color: var(--gr);
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.td_chapter-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 8px;
}
.td_chapter-content p {
  font-size: .85rem;
  color: var(--mt);
  line-height: 1.7;
  margin: 0;
}

/* Compliance Grid */
.td_compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .td_compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .td_compliance-grid {
    grid-template-columns: 1fr;
  }
}
.td_compliance-card {
  background: #fff;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--bd);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.td_compliance-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--gr-lt), transparent);
  transition: width 0.3s ease;
  z-index: 0;
}
.td_compliance-card:hover::after {
  width: 100%;
}
.td_compliance-card:hover {
  border-color: var(--gr);
  transform: translateX(8px);
}
.td_compliance-icon {
  width: 48px;
  height: 48px;
  background: var(--gr-lt);
  color: var(--gr);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.td_compliance-card:hover .td_compliance-icon {
  background: var(--gr);
  color: white;
  transform: scale(1.05);
}
.td_compliance-text {
  position: relative;
  z-index: 1;
}
.td_compliance-text h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 4px;
}
.td_compliance-text p {
  font-size: .78rem;
  color: var(--mt);
  margin: 0;
}

/* Packages Grid */
.td_packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .td_packages-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}
.td_package-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--bd);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
}
.td_package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(26,140,107,.15);
  border-color: var(--gr);
}
.td_package-header {
  background: linear-gradient(135deg, var(--off2) 0%, #fff 100%);
  padding: 28px 20px;
  text-align: center;
  border-bottom: 1px solid var(--bd);
  transition: all 0.3s ease;
}
.td_package-card:hover .td_package-header {
  background: linear-gradient(135deg, var(--gr-lt) 0%, var(--off2) 100%);
}
.td_package-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bl);
  margin-bottom: 10px;
}
.td_price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gr);
}
.td_price-amount {
  font-size: 1.8rem;
}
.td_price small {
  font-size: .75rem;
  font-weight: 500;
  color: var(--mt);
}
.td_package-body {
  padding: 28px 24px;
}
.td_package-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.td_package-body li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: .85rem;
  color: var(--mt);
  border-bottom: 1px solid var(--off);
  transition: all 0.2s ease;
}
.td_package-body li:hover {
  transform: translateX(5px);
  color: var(--bl);
}
.td_package-body li i {
  color: var(--gr);
  font-size: .8rem;
  width: 20px;
  transition: transform 0.2s ease;
}
.td_package-body li:hover i {
  transform: scale(1.2);
}
.td_btn-outline {
  display: block;
  margin: 20px 24px 28px;
  text-align: center;
  padding: 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  border: 1.5px solid var(--gr);
  color: var(--gr);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
}
.td_btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gr);
  transition: left 0.3s ease;
  z-index: -1;
}
.td_btn-outline:hover::before {
  left: 0;
}
.td_btn-outline:hover {
  color: white;
}
.td_popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gr);
  color: white;
  font-size: .65rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* Process Flow */
.td_process-connector {
  position: relative;
  margin-top: 60px;
}
.td_process-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  position: relative;
}
.td_process-flow-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  padding: 0 15px;
}
@media (min-width: 992px) {
  .td_process-flow-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 55px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--gr), var(--sk));
    z-index: 1;
  }
  .td_process-flow-item:not(:last-child) .td_process-icon-wrapper::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gr);
    font-size: 1rem;
    z-index: 2;
  }
}
.td_process-card {
  background: #fff;
  border-radius: 28px;
  padding: 30px 20px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid var(--bd);
  height: 100%;
}
.td_process-card:hover {
  transform: translateY(-10px);
  border-color: var(--gr);
  box-shadow: 0 20px 35px rgba(26,140,107,.12);
}
.td_process-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.td_process-icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gr-lt) 0%, var(--off) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.35s ease;
  position: relative;
}
.td_process-card:hover .td_process-icon-circle {
  background: linear-gradient(135deg, var(--gr) 0%, var(--sk) 100%);
  transform: scale(1.05) rotate(5deg);
}
.td_process-icon-circle i {
  font-size: 2rem;
  color: var(--gr);
  transition: all 0.35s ease;
}
.td_process-card:hover .td_process-icon-circle i {
  color: white;
  transform: scale(1.1);
}
.td_process-step-number {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: var(--gr);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  border: 2px solid white;
  transition: all 0.3s ease;
}
.td_process-card:hover .td_process-step-number {
  background: white;
  color: var(--gr);
  border-color: var(--gr);
  transform: scale(1.1);
}
.td_process-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--bl);
  margin: 18px 0 8px;
}
.td_process-card p {
  font-size: .83rem;
  color: var(--mt);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 991px) {
  .td_process-flow {
    flex-direction: column;
    gap: 25px;
  }
  .td_process-flow-item:not(:last-child)::after {
    display: none;
  }
  .td_process-flow-item:not(:last-child) .td_process-icon-wrapper::before {
    display: none;
  }
  .td_process-card {
    max-width: 400px;
    margin: 0 auto;
  }
}
/* CTA Section */
.td_cta {
  background: var(--gr-lt);
  padding: 52px 0;
}
.td_cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.td_cta h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: var(--bl);
  margin-bottom: 8px;
}
.td_cta h2 em {
  color: var(--gr);
  font-style: normal;
}
.td_cta p {
  font-size: .93rem;
  color: var(--mt);
  margin: 0;
  max-width: 420px;
  line-height: 1.75;
}
.td_cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.td_btn-g {
  background: var(--gr);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  border: none;
}
.td_btn-g:hover {
  background: #136e52;
  transform: translateY(-2px);
  color: #fff;
}
.td_btn-o {
  background: transparent;
  border: 1.5px solid var(--gr);
  color: var(--gr);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.td_btn-o:hover {
  background: var(--gr-lt);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .td_cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Scroll Reveal */
.sv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s;
}
.sv.vis {
  opacity: 1;
  transform: none;
}
.sr-l {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s, transform .5s;
}
.sr-l.vis {
  opacity: 1;
  transform: none;
}
.sr-r {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .5s, transform .5s;
}
.sr-r.vis {
  opacity: 1;
  transform: none;
}
/* FORMATTING AS PER UNIVERSITY STANDARDS PAGE - EXTERNAL CSS */
/* Unique prefix: fs_ */

/* Breadcrumb */
.fs_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 14px;
}
.fs_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}
.fs_breadcrumb a:hover {
  color: var(--gr);
}
.fs_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}
.fs_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero */
.fs_hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.fs_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.fs_hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.fs_hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.2;
  margin-bottom: 12px;
}
.fs_hero h1 em {
  color: var(--gr);
  font-style: normal;
}

/* Section Backgrounds */
.fs_section {
  padding: 72px 0;
}
.fs_bg-off {
  background: var(--off);
}
.fs_bg-wh {
  background: #fff;
}
.fs_bg-off2 {
  background: var(--off2);
}

.text-center {
  text-align: center;
}

/* Section Headers */
.fs_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 10px;
  justify-content: center;
}
.fs_title {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 14px;
  text-align: center;
}
.fs_rule {
  width: 50px;
  height: 3px;
  background: var(--gr);
  border-radius: 2px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.fs_desc {
  font-size: .95rem;
  color: var(--mt);
  line-height: 1.85;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Stats Grid */
.fs_stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .fs_stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .fs_stats-grid {
    grid-template-columns: 1fr;
  }
}
.fs_stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  border: 1px solid var(--bd);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.fs_stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--gr-lt), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}
.fs_stat-card:hover::before {
  height: 100%;
}
.fs_stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--gr);
  box-shadow: 0 20px 35px rgba(26,140,107,.1);
}
.fs_stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gr);
  position: relative;
  z-index: 1;
  line-height: 1.2;
}
.fs_stat-label {
  font-size: .9rem;
  font-weight: 700;
  color: var(--bl);
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.fs_stat-desc {
  font-size: .78rem;
  color: var(--mt);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

/* Checklist */
.fs_checklist-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .fs_checklist-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.fs_checklist-group {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--bd);
  overflow: hidden;
  transition: all 0.3s ease;
}
.fs_checklist-group:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  border-color: var(--gr);
}
.fs_checklist-header {
  background: linear-gradient(135deg, var(--off2) 0%, #fff 100%);
  padding: 18px 24px;
  border-bottom: 1px solid var(--bd);
}
.fs_checklist-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bl);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fs_checklist-header h3 i {
  color: var(--gr);
  font-size: 1.1rem;
}
.fs_checklist-items {
  padding: 20px 24px;
}
.fs_checklist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--off);
  transition: all 0.2s ease;
}
.fs_checklist-item:last-child {
  border-bottom: none;
}
.fs_checklist-item:hover {
  transform: translateX(8px);
}
.fs_checklist-icon {
  width: 36px;
  height: 36px;
  background: var(--gr-lt);
  color: var(--gr);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.fs_checklist-item:hover .fs_checklist-icon {
  background: var(--gr);
  color: white;
}
.fs_checklist-text {
  flex: 1;
}
.fs_checklist-text strong {
  font-size: .88rem;
  font-weight: 700;
  color: var(--bl);
  display: block;
  margin-bottom: 3px;
}
.fs_checklist-text span {
  font-size: .76rem;
  color: var(--mt);
}

/* Guidelines */
.fs_guidelines-wrapper {
  background: linear-gradient(135deg, #fff 0%, var(--off) 100%);
  border-radius: 28px;
  padding: 48px 40px;
  margin-top: 48px;
  border: 1px solid var(--bd);
}
.fs_guidelines-category {
  margin-bottom: 32px;
}
.fs_guidelines-category:last-child {
  margin-bottom: 0;
}
.fs_guidelines-category h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fs_guidelines-category h3 i {
  color: var(--gr);
}
.fs_guidelines-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.fs_guideline-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: .82rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--bd);
  color: var(--bl);
  transition: all 0.25s ease;
}
.fs_guideline-pill i {
  color: var(--gr);
  font-size: .75rem;
}
.fs_guideline-pill:hover {
  border-color: var(--gr);
  background: var(--gr-lt);
  color: var(--gr);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(26,140,107,.1);
}

/* Process */
.fs_format-process {
  max-width: 800px;
  margin: 48px auto 0;
}
.fs_process-step-v {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
  position: relative;
}
.fs_process-step-v:last-child {
  margin-bottom: 0;
}
.fs_process-step-v:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 55px;
  bottom: -25px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gr), var(--gr-lt));
}
.fs_step-marker {
  width: 54px;
  height: 54px;
  background: var(--gr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.fs_process-step-v:hover .fs_step-marker {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px var(--gr-lt);
}
.fs_step-marker i {
  color: white;
  font-size: 1.2rem;
}
.fs_step-content-v {
  flex: 1;
  background: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid var(--bd);
  transition: all 0.3s ease;
}
.fs_process-step-v:hover .fs_step-content-v {
  border-color: var(--gr);
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}
.fs_step-content-v h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 6px;
}
.fs_step-content-v p {
  font-size: .84rem;
  color: var(--mt);
  line-height: 1.65;
  margin: 0;
}

/* Why Choose Us */
.fs_why-choose-wrapper {
  background: linear-gradient(135deg, #fff 0%, var(--off) 100%);
  border-radius: 28px;
  padding: 48px 40px;
  margin-top: 48px;
  border: 1px solid var(--bd);
}
.fs_why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .fs_why-choose-grid {
    grid-template-columns: 1fr;
  }
  .fs_why-choose-wrapper {
    padding: 32px 24px;
  }
}
.fs_why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 12px 0;
  transition: all 0.3s ease;
}
.fs_why-choose-item:hover {
  transform: translateX(8px);
}
.fs_why-choose-icon {
  width: 56px;
  height: 56px;
  background: var(--gr-lt);
  color: var(--gr);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.fs_why-choose-item:hover .fs_why-choose-icon {
  background: var(--gr);
  color: white;
  transform: scale(1.05);
}
.fs_why-choose-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 8px;
}
.fs_why-choose-text p {
  font-size: .88rem;
  color: var(--mt);
  line-height: 1.7;
  margin: 0;
}
/* CTA Section */
.fs_cta {
  background: var(--gr-lt);
  padding: 52px 0;
}
.fs_cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.fs_cta h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: var(--bl);
  margin-bottom: 8px;
}
.fs_cta h2 em {
  color: var(--gr);
  font-style: normal;
}
.fs_cta p {
  font-size: .93rem;
  color: var(--mt);
  margin: 0;
  max-width: 420px;
  line-height: 1.75;
}
.fs_cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.fs_btn-g {
  background: var(--gr);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  border: none;
}
.fs_btn-g:hover {
  background: #136e52;
  transform: translateY(-2px);
  color: #fff;
}
.fs_btn-o {
  background: transparent;
  border: 1.5px solid var(--gr);
  color: var(--gr);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.fs_btn-o:hover {
  background: var(--gr-lt);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .fs_cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Scroll Reveal */
.sv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s;
}
.sv.vis {
  opacity: 1;
  transform: none;
}
.sr-l {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s, transform .5s;
}
.sr-l.vis {
  opacity: 1;
  transform: none;
}
.sr-r {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .5s, transform .5s;
}
.sr-r.vis {
  opacity: 1;
  transform: none;
}
/* EDITING & PROOFREADING PAGE - EXTERNAL CSS */
/* Unique prefix: ep_ */

/* Breadcrumb */
.ep_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 14px;
}
.ep_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}
.ep_breadcrumb a:hover {
  color: var(--gr);
}
.ep_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}
.ep_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero */
.ep_hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.ep_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.ep_hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.ep_hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.2;
  margin-bottom: 12px;
}
.ep_hero h1 em {
  color: var(--gr);
  font-style: normal;
}

/* Section Backgrounds */
.ep_section {
  padding: 72px 0;
}
.ep_bg-off {
  background: var(--off);
}
.ep_bg-wh {
  background: #fff;
}
.ep_bg-off2 {
  background: var(--off2);
}

.text-center {
  text-align: center;
}

/* Section Headers */
.ep_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 10px;
  justify-content: center;
}
.ep_title {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 14px;
  text-align: center;
}
.ep_rule {
  width: 50px;
  height: 3px;
  background: var(--gr);
  border-radius: 2px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.ep_desc {
  font-size: .95rem;
  color: var(--mt);
  line-height: 1.85;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Language Options */
.ep_lang-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 50px;
}
.ep_lang-card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--bd);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ep_lang-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gr), var(--sk));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.ep_lang-card:hover::before {
  transform: scaleX(1);
}
.ep_lang-card:hover {
  transform: translateY(-8px);
  border-color: var(--gr);
  box-shadow: 0 20px 35px rgba(26,140,107,.1);
}
.ep_lang-icon {
  width: 70px;
  height: 70px;
  background: var(--gr-lt);
  color: var(--gr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
  transition: all 0.3s ease;
}
.ep_lang-card:hover .ep_lang-icon {
  background: var(--gr);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}
.ep_lang-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bl);
  margin-bottom: 10px;
}
.ep_lang-card p {
  font-size: .82rem;
  color: var(--mt);
  line-height: 1.65;
  margin: 0;
}
.ep_lang-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  background: var(--gr-lt);
  color: var(--gr);
  border-radius: 30px;
  font-size: .7rem;
  font-weight: 700;
}

/* Bento Grid */
.ep_edit-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 992px) {
  .ep_edit-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .ep_edit-bento {
    grid-template-columns: 1fr;
  }
}
.ep_bento-item {
  background: #fff;
  border-radius: 24px;
  padding: 28px 20px;
  border: 1px solid var(--bd);
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ep_bento-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(26,140,107,.05), transparent);
  transition: left 0.5s ease;
}
.ep_bento-item:hover::after {
  left: 100%;
}
.ep_bento-item:hover {
  transform: translateY(-8px);
  border-color: var(--gr);
  box-shadow: 0 20px 30px rgba(26,140,107,.1);
}
.ep_bento-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--gr-lt) 0%, var(--off) 100%);
  color: var(--gr);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  transition: all 0.35s ease;
}
.ep_bento-item:hover .ep_bento-icon {
  background: linear-gradient(135deg, var(--gr) 0%, var(--sk) 100%);
  color: white;
  transform: scale(1.1) rotate(5deg);
}
.ep_bento-item h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--bl);
  margin-bottom: 8px;
}
.ep_bento-item p {
  font-size: .8rem;
  color: var(--mt);
  line-height: 1.65;
  margin: 0;
}

/* Levels Grid */
.ep_levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .ep_levels-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}
.ep_level-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--bd);
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
}
.ep_level-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(26,140,107,.15);
  border-color: var(--gr);
}
.ep_level-card.ep_recommended {
  border: 2px solid var(--gr);
  box-shadow: 0 10px 25px rgba(26,140,107,.15);
}
.ep_level-card.ep_recommended:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 45px rgba(26,140,107,.2);
}
.ep_level-header {
  background: linear-gradient(135deg, var(--off2) 0%, #fff 100%);
  padding: 28px 20px;
  text-align: center;
  border-bottom: 1px solid var(--bd);
}
.ep_level-card.ep_recommended .ep_level-header {
  background: linear-gradient(135deg, var(--gr-lt) 0%, var(--off) 100%);
}
.ep_level-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bl);
  margin-bottom: 10px;
}
.ep_level-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gr);
}
.ep_price-amount {
  font-size: 1.6rem;
}
.ep_level-price small {
  font-size: .7rem;
  font-weight: 500;
  color: var(--mt);
}
.ep_level-body {
  padding: 26px 24px;
}
.ep_level-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ep_level-body li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: .85rem;
  color: var(--mt);
  border-bottom: 1px solid var(--off);
  transition: all 0.25s ease;
}
.ep_level-body li:hover {
  transform: translateX(6px);
  color: var(--bl);
}
.ep_level-body li i {
  color: var(--gr);
  font-size: .85rem;
  width: 22px;
  transition: transform 0.2s ease;
}
.ep_level-body li:hover i {
  transform: scale(1.2);
}
.ep_btn-outline {
  display: block;
  margin: 20px 24px 28px;
  text-align: center;
  padding: 12px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .85rem;
  text-decoration: none;
  border: 1.5px solid var(--gr);
  color: var(--gr);
  transition: all 0.3s ease;
}
.ep_btn-outline:hover {
  background: var(--gr);
  color: white;
}
.ep_level-badge {
  position: absolute;
  top: -1px;
  right: 30px;
  background: linear-gradient(135deg, var(--gr) 0%, var(--sk) 100%);
  color: white;
  font-size: .7rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 0 0 30px 30px;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(26,140,107,.3);
}
.ep_level-badge i {
  margin-right: 6px;
  font-size: .7rem;
}

/* Process Section */
.ep_process-enhanced {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--off) 0%, #fff 100%);
  border-radius: 40px;
  padding: 50px 40px;
  border: 1px solid var(--bd);
}
.ep_process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
@media (min-width: 992px) {
  .ep_process-steps {
    flex-wrap: nowrap;
  }
}
.ep_process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 20px 15px;
  background: #fff;
  border-radius: 24px;
  transition: all 0.35s ease;
  border: 1px solid var(--bd);
}
.ep_process-step:hover {
  transform: translateY(-8px);
  border-color: var(--gr);
  box-shadow: 0 15px 30px rgba(26,140,107,.1);
}
.ep_step-number-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gr) 0%, var(--sk) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}
.ep_process-step:hover .ep_step-number-circle {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px var(--gr-lt);
}
.ep_process-step h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--bl);
  margin-bottom: 10px;
}
.ep_process-step p {
  font-size: .82rem;
  color: var(--mt);
  line-height: 1.65;
  margin: 0;
}
@media (min-width: 992px) {
  .ep_process-step:not(:last-child)::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gr);
    font-size: 1.2rem;
    opacity: 0.6;
  }
}
@media (max-width: 991px) {
  .ep_process-enhanced {
    padding: 35px 25px;
  }
  .ep_process-step:not(:last-child) {
    margin-bottom: 20px;
  }
}

/* Why Choose Us */
.ep_whyus-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--bd);
  overflow: hidden;
}
@media (max-width: 768px) {
  .ep_whyus-wrapper {
    grid-template-columns: 1fr;
  }
}
.ep_whyus-left {
  padding: 40px 32px;
  background: linear-gradient(135deg, var(--gr-lt) 0%, var(--off) 100%);
}
.ep_whyus-left h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 16px;
}
.ep_whyus-left p {
  font-size: .9rem;
  color: var(--mt);
  line-height: 1.75;
  margin-bottom: 28px;
}
.ep_whyus-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.ep_whyus-stat {
  text-align: center;
}
.ep_stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gr);
}
.ep_stat-label {
  font-size: .72rem;
  color: var(--mt);
}
.ep_whyus-right {
  padding: 40px 32px;
}
.ep_whyus-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  transition: all 0.25s ease;
}
.ep_whyus-feature:last-child {
  margin-bottom: 0;
}
.ep_whyus-feature:hover {
  transform: translateX(8px);
}
.ep_whyus-icon {
  width: 44px;
  height: 44px;
  background: var(--gr-lt);
  color: var(--gr);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.ep_whyus-feature:hover .ep_whyus-icon {
  background: var(--gr);
  color: white;
  transform: scale(1.05);
}
.ep_whyus-text h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 4px;
}
.ep_whyus-text p {
  font-size: .82rem;
  color: var(--mt);
  margin: 0;
  line-height: 1.6;
}

/* CTA Section */
.ep_cta {
  background: var(--gr-lt);
  padding: 52px 0;
}
.ep_cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.ep_cta h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: var(--bl);
  margin-bottom: 8px;
}
.ep_cta h2 em {
  color: var(--gr);
  font-style: normal;
}
.ep_cta p {
  font-size: .93rem;
  color: var(--mt);
  margin: 0;
  max-width: 420px;
  line-height: 1.75;
}
.ep_cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.ep_btn-g {
  background: var(--gr);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: none;
}
.ep_btn-g:hover {
  background: #136e52;
  transform: translateY(-2px);
  color: #fff;
}
.ep_btn-o {
  background: transparent;
  border: 1.5px solid var(--gr);
  color: var(--gr);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.ep_btn-o:hover {
  background: var(--gr-lt);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .ep_cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Scroll Reveal */
.sv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s;
}
.sv.vis {
  opacity: 1;
  transform: none;
}
.sr-l {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s, transform .5s;
}
.sr-l.vis {
  opacity: 1;
  transform: none;
}
.sr-r {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .5s, transform .5s;
}
.sr-r.vis {
  opacity: 1;
  transform: none;
}
/* STATISTICS FOR PHD RESEARCH PAGE - EXTERNAL CSS */
/* Unique prefix: st_ */

/* Breadcrumb */
.st_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 14px;
}
.st_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}
.st_breadcrumb a:hover {
  color: var(--gr);
}
.st_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}
.st_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero */
.st_hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.st_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.st_hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.st_hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.2;
  margin-bottom: 12px;
}
.st_hero h1 em {
  color: var(--gr);
  font-style: normal;
}

/* Section Backgrounds */
.st_section {
  padding: 72px 0;
}
.st_bg-off {
  background: var(--off);
}
.st_bg-wh {
  background: #fff;
}
.st_bg-off2 {
  background: var(--off2);
}

.text-center {
  text-align: center;
}

/* Section Headers */
.st_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 10px;
  justify-content: center;
}
.st_title {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 14px;
  text-align: center;
}
.st_rule {
  width: 50px;
  height: 3px;
  background: var(--gr);
  border-radius: 2px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.st_desc {
  font-size: .95rem;
  color: var(--mt);
  line-height: 1.85;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Dashboard Metrics */
.st_dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .st_dashboard-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .st_dashboard-metrics {
    grid-template-columns: 1fr;
  }
}
.st_metric-dash {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  border-left: 4px solid var(--gr);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.02);
}
.st_metric-dash:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  border-left-color: var(--sk);
}
.st_metric-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gr);
  margin-bottom: 5px;
}
.st_metric-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--bl);
  margin-bottom: 4px;
}
.st_metric-desc {
  font-size: .72rem;
  color: var(--mt);
}

/* Software Strip */
.st_software-strip {
  margin-top: 48px;
  background: #fff;
  border-radius: 60px;
  padding: 30px 40px;
  border: 1px solid var(--bd);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}
.st_software-item {
  text-align: center;
  transition: all 0.3s ease;
  min-width: 100px;
}
.st_software-item:hover {
  transform: translateY(-5px);
}
.st_software-icon {
  width: 60px;
  height: 60px;
  background: var(--off2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.5rem;
  color: var(--gr);
  transition: all 0.3s ease;
}
.st_software-item:hover .st_software-icon {
  background: var(--gr);
  color: white;
}
.st_software-item span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--bl);
}
@media (max-width: 768px) {
  .st_software-strip {
    border-radius: 30px;
    padding: 25px 20px;
  }
}

/* Tabs System */
.st_stats-tabs {
  margin-top: 48px;
}
.st_tab-headers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--bd);
  padding-bottom: 15px;
}
.st_tab-btn {
  background: transparent;
  border: none;
  padding: 10px 28px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--mt);
  cursor: pointer;
  border-radius: 40px;
  transition: all 0.25s ease;
  font-family: inherit;
}
.st_tab-btn:hover {
  background: var(--gr-lt);
  color: var(--gr);
}
.st_tab-btn.active {
  background: var(--gr);
  color: white;
}
.st_tab-content {
  display: none;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--bd);
  padding: 32px;
  animation: st_fadeIn 0.3s ease;
}
.st_tab-content.active {
  display: block;
}
@keyframes st_fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.st_tests-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 576px) {
  .st_tests-list {
    grid-template-columns: 1fr;
  }
}
.st_test-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--off);
  border-radius: 12px;
  transition: all 0.2s ease;
}
.st_test-row:hover {
  background: var(--gr-lt);
  transform: translateX(5px);
}
.st_test-row i {
  width: 28px;
  color: var(--gr);
  font-size: .9rem;
}
.st_test-name {
  font-weight: 700;
  color: var(--bl);
  font-size: .88rem;
  flex: 1;
}
.st_test-use {
  font-size: .75rem;
  color: var(--mt);
}

/* Timeline */
.st_timeline {
  max-width: 800px;
  margin: 48px auto 0;
  position: relative;
}
.st_timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--gr), var(--gr) 10px, transparent 10px, transparent 20px);
}
.st_timeline-item {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
}
.st_timeline-item:last-child {
  margin-bottom: 0;
}
.st_timeline-dot {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 2px solid var(--gr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: #fff;
  transition: all 0.3s ease;
}
.st_timeline-item:hover .st_timeline-dot {
  background: var(--gr);
  transform: scale(1.1);
}
.st_timeline-dot i {
  font-size: 1.2rem;
  color: var(--gr);
  transition: all 0.3s ease;
}
.st_timeline-item:hover .st_timeline-dot i {
  color: white;
}
.st_timeline-content {
  flex: 1;
  background: #fff;
  padding: 18px 24px;
  border-radius: 20px;
  border: 1px solid var(--bd);
  transition: all 0.3s ease;
}
.st_timeline-item:hover .st_timeline-content {
  border-color: var(--gr);
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}
.st_timeline-content h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--bl);
  margin-bottom: 6px;
}
.st_timeline-content p {
  font-size: .84rem;
  color: var(--mt);
  line-height: 1.65;
  margin: 0;
}

/* Why Choose Us */
.st_why-choose-stats {
  max-width: 900px;
  margin: 48px auto 0;
}
.st_why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 768px) {
  .st_why-choose-grid {
    grid-template-columns: 1fr;
  }
}
.st_why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--bd);
  transition: all 0.25s ease;
}
.st_why-choose-item:hover {
  transform: translateX(6px);
}
.st_why-choose-icon {
  width: 48px;
  height: 48px;
  background: var(--gr-lt);
  color: var(--gr);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.st_why-choose-item:hover .st_why-choose-icon {
  background: var(--gr);
  color: white;
  transform: scale(1.05);
}
.st_why-choose-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 6px;
}
.st_why-choose-text p {
  font-size: .84rem;
  color: var(--mt);
  line-height: 1.65;
  margin: 0;
}

/* CTA Section */
.st_cta {
  background: var(--gr-lt);
  padding: 52px 0;
}
.st_cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.st_cta h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: var(--bl);
  margin-bottom: 8px;
}
.st_cta h2 em {
  color: var(--gr);
  font-style: normal;
}
.st_cta p {
  font-size: .93rem;
  color: var(--mt);
  margin: 0;
  max-width: 420px;
  line-height: 1.75;
}
.st_cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.st_btn-g {
  background: var(--gr);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: none;
}
.st_btn-g:hover {
  background: #136e52;
  transform: translateY(-2px);
  color: #fff;
}
.st_btn-o {
  background: transparent;
  border: 1.5px solid var(--gr);
  color: var(--gr);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.st_btn-o:hover {
  background: var(--gr-lt);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .st_cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Scroll Reveal */
.sv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s;
}
.sv.vis {
  opacity: 1;
  transform: none;
}
.sr-l {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s, transform .5s;
}
.sr-l.vis {
  opacity: 1;
  transform: none;
}
.sr-r {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .5s, transform .5s;
}
.sr-r.vis {
  opacity: 1;
  transform: none;
}
/* JOURNAL PUBLICATION SUPPORT PAGE - EXTERNAL CSS */
/* Unique prefix: jp_ */

/* Breadcrumb */
.jp_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 14px;
}
.jp_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}
.jp_breadcrumb a:hover {
  color: var(--gr);
}
.jp_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}
.jp_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero */
.jp_hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.jp_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.jp_hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.jp_hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.2;
  margin-bottom: 12px;
}
.jp_hero h1 em {
  color: var(--gr);
  font-style: normal;
}

/* Section Backgrounds */
.jp_section {
  padding: 72px 0;
}
.jp_bg-off {
  background: var(--off);
}
.jp_bg-wh {
  background: #fff;
}
.jp_bg-off2 {
  background: var(--off2);
}

.text-center {
  text-align: center;
}

/* Section Headers */
.jp_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 10px;
  justify-content: center;
}
.jp_title {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 14px;
  text-align: center;
}
.jp_rule {
  width: 50px;
  height: 3px;
  background: var(--gr);
  border-radius: 2px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.jp_desc {
  font-size: .95rem;
  color: var(--mt);
  line-height: 1.85;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Journal Types */
.jp_journal-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 50px;
}
.jp_type-card {
  flex: 1;
  min-width: 180px;
  background: #fff;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--bd);
  transition: all 0.3s ease;
  position: relative;
}
.jp_type-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gr);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.jp_type-card:hover::after {
  width: 60px;
}
.jp_type-card:hover {
  transform: translateY(-8px);
  border-color: var(--gr);
  box-shadow: 0 20px 35px rgba(26,140,107,.1);
}
.jp_type-icon {
  width: 65px;
  height: 65px;
  background: var(--gr-lt);
  color: var(--gr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}
.jp_type-card:hover .jp_type-icon {
  background: var(--gr);
  color: white;
  transform: scale(1.05);
}
.jp_type-card h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--bl);
  margin-bottom: 6px;
}
.jp_type-card p {
  font-size: .72rem;
  color: var(--mt);
  line-height: 1.5;
  margin: 0;
}

/* Support Split */
.jp_support-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .jp_support-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.jp_support-left {
  background: linear-gradient(135deg, var(--gr-lt) 0%, var(--off) 100%);
  border-radius: 28px;
  padding: 40px 30px;
  text-align: center;
}
.jp_big-icon {
  font-size: 3rem;
  color: var(--gr);
  margin-bottom: 20px;
}
.jp_support-left h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 12px;
}
.jp_support-left p {
  font-size: .88rem;
  color: var(--mt);
  line-height: 1.7;
  margin-bottom: 25px;
}
.jp_support-stats {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
.jp_stat {
  text-align: center;
}
.jp_num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gr);
}
.jp_txt {
  font-size: .7rem;
  color: var(--mt);
}
.jp_support-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.jp_service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--bd);
  transition: all 0.25s ease;
}
.jp_service-item:hover {
  transform: translateX(8px);
  border-color: var(--gr);
  box-shadow: 0 5px 15px rgba(0,0,0,.05);
}
.jp_service-icon {
  width: 46px;
  height: 46px;
  background: var(--gr-lt);
  color: var(--gr);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.jp_service-item:hover .jp_service-icon {
  background: var(--gr);
  color: white;
}
.jp_service-content h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 4px;
}
.jp_service-content p {
  font-size: .78rem;
  color: var(--mt);
  margin: 0;
}

/* Publisher Showcase */
.jp_publisher-showcase {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.jp_publisher-item {
  background: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid var(--bd);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: default;
}
.jp_publisher-item:hover {
  transform: translateY(-3px);
  border-color: var(--gr);
  background: var(--gr-lt);
  box-shadow: 0 8px 20px rgba(26,140,107,.1);
}
.jp_publisher-item i {
  font-size: 1rem;
  color: var(--gr);
}
.jp_publisher-item span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--bl);
}
.jp_badge {
  background: var(--sk-lt);
  color: var(--sk);
  font-size: .6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
}
@media (max-width: 768px) {
  .jp_publisher-item {
    padding: 8px 18px;
  }
}

/* Success Dashboard */
.jp_success-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .jp_success-dashboard {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.jp_success-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--bd);
  transition: all 0.3s ease;
}
.jp_success-card:hover {
  transform: translateY(-8px);
  border-color: var(--gr);
  box-shadow: 0 15px 30px rgba(26,140,107,.1);
}
.jp_success-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gr);
  line-height: 1.2;
}
.jp_success-label {
  font-size: .9rem;
  font-weight: 700;
  color: var(--bl);
  margin-top: 8px;
}
.jp_success-desc {
  font-size: .75rem;
  color: var(--mt);
  margin-top: 6px;
}

/* Process Steps */
.jp_process-steps {
  max-width: 800px;
  margin: 48px auto 0;
}
.jp_step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}
.jp_step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 50px;
  bottom: -25px;
  width: 2px;
  background: var(--gr-lt);
}
.jp_step-number {
  width: 54px;
  height: 54px;
  background: var(--gr);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.jp_step:hover .jp_step-number {
  background: var(--sk);
  transform: scale(1.1);
  box-shadow: 0 0 0 5px var(--gr-lt);
}
.jp_step-content {
  flex: 1;
  background: #fff;
  padding: 14px 22px;
  border-radius: 18px;
  border: 1px solid var(--bd);
  transition: all 0.3s ease;
}
.jp_step:hover .jp_step-content {
  border-color: var(--gr);
  transform: translateX(8px);
}
.jp_step-content h4 {
  font-size: .98rem;
  font-weight: 800;
  color: var(--bl);
  margin-bottom: 6px;
}
.jp_step-content p {
  font-size: .82rem;
  color: var(--mt);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us Grid */
.jp_whyus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .jp_whyus-grid {
    grid-template-columns: 1fr;
  }
}
.jp_whyus-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--bd);
  transition: all 0.3s ease;
}
.jp_whyus-item:hover {
  transform: translateY(-5px);
  border-color: var(--gr);
  box-shadow: 0 12px 25px rgba(26,140,107,.08);
}
.jp_whyus-icon {
  width: 55px;
  height: 55px;
  background: var(--gr-lt);
  color: var(--gr);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.jp_whyus-item:hover .jp_whyus-icon {
  background: var(--gr);
  color: white;
}
.jp_whyus-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 6px;
}
.jp_whyus-text p {
  font-size: .82rem;
  color: var(--mt);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.jp_cta {
  background: var(--gr-lt);
  padding: 52px 0;
}
.jp_cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.jp_cta h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: var(--bl);
  margin-bottom: 8px;
}
.jp_cta h2 em {
  color: var(--gr);
  font-style: normal;
}
.jp_cta p {
  font-size: .93rem;
  color: var(--mt);
  margin: 0;
  max-width: 420px;
  line-height: 1.75;
}
.jp_cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.jp_btn-g {
  background: var(--gr);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: none;
}
.jp_btn-g:hover {
  background: #136e52;
  transform: translateY(-2px);
  color: #fff;
}
.jp_btn-o {
  background: transparent;
  border: 1.5px solid var(--gr);
  color: var(--gr);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.jp_btn-o:hover {
  background: var(--gr-lt);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .jp_cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Scroll Reveal */
.sv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s;
}
.sv.vis {
  opacity: 1;
  transform: none;
}
.sr-l {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s, transform .5s;
}
.sr-l.vis {
  opacity: 1;
  transform: none;
}
.sr-r {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .5s, transform .5s;
}
.sr-r.vis {
  opacity: 1;
  transform: none;
}
/* SOFTWARE IMPLEMENTATION PAGE - EXTERNAL CSS */
/* Unique prefix: si_ */

/* Breadcrumb */
.si_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 14px;
}
.si_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}
.si_breadcrumb a:hover {
  color: var(--gr);
}
.si_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}
.si_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero */
.si_hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.si_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.si_hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.si_hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.2;
  margin-bottom: 12px;
}
.si_hero h1 em {
  color: var(--gr);
  font-style: normal;
}

/* Section Backgrounds */
.si_section {
  padding: 72px 0;
}
.si_bg-off {
  background: var(--off);
}
.si_bg-wh {
  background: #fff;
}
.si_bg-off2 {
  background: var(--off2);
}

.text-center {
  text-align: center;
}

/* Section Headers */
.si_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 10px;
  justify-content: center;
}
.si_title {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 14px;
  text-align: center;
}
.si_rule {
  width: 50px;
  height: 3px;
  background: var(--gr);
  border-radius: 2px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.si_desc {
  font-size: .95rem;
  color: var(--mt);
  line-height: 1.85;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Tech Grid */
.si_tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .si_tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .si_tech-grid {
    grid-template-columns: 1fr;
  }
}
.si_tech-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--bd);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.si_tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--gr-lt), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}
.si_tech-card:hover::before {
  height: 100%;
}
.si_tech-card:hover {
  transform: translateY(-8px);
  border-color: var(--gr);
  box-shadow: 0 20px 35px rgba(26,140,107,.12);
}
.si_tech-icon {
  width: 70px;
  height: 70px;
  background: var(--gr-lt);
  color: var(--gr);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.si_tech-card:hover .si_tech-icon {
  background: var(--gr);
  color: white;
  transform: scale(1.05) rotate(-5deg);
}
.si_tech-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bl);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.si_tech-desc {
  font-size: .78rem;
  color: var(--mt);
  line-height: 1.6;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.si_tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.si_tag {
  background: var(--off2);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .65rem;
  font-weight: 600;
  color: var(--sk);
}

/* Matrix */
.si_matrix {
  margin-top: 48px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--bd);
  overflow: hidden;
}
.si_matrix-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: var(--off2);
  border-bottom: 1px solid var(--bd);
}
.si_header-cell {
  padding: 16px 24px;
  font-weight: 800;
  font-size: .85rem;
  color: var(--bl);
}
.si_header-cell:first-child {
  border-right: 1px solid var(--bd);
}
.si_matrix-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid var(--bd);
  transition: all 0.2s ease;
}
.si_matrix-row:last-child {
  border-bottom: none;
}
.si_matrix-row:hover {
  background: var(--gr-lt);
}
.si_matrix-cell {
  padding: 18px 24px;
  font-size: .85rem;
}
.si_matrix-cell:first-child {
  font-weight: 700;
  color: var(--bl);
  border-right: 1px solid var(--bd);
  background: var(--off);
}
.si_matrix-cell:first-child i {
  color: var(--gr);
  margin-right: 10px;
  width: 20px;
}
.si_matrix-cell:last-child {
  color: var(--mt);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .si_matrix-header, .si_matrix-row {
    grid-template-columns: 1fr;
  }
  .si_header-cell:first-child {
    border-right: none;
    border-bottom: 1px solid var(--bd);
  }
  .si_matrix-cell:first-child {
    border-right: none;
    border-bottom: 1px solid var(--bd);
  }
}

/* Domain Split */
.si_domain-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .si_domain-split {
    grid-template-columns: 1fr;
  }
}
.si_domain-box {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--bd);
  transition: all 0.3s ease;
}
.si_domain-box:hover {
  transform: translateY(-5px);
  border-color: var(--gr);
  box-shadow: 0 15px 30px rgba(26,140,107,.08);
}
.si_domain-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gr-lt);
}
.si_domain-header i {
  font-size: 1.6rem;
  color: var(--gr);
}
.si_domain-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bl);
  margin: 0;
}
.si_domain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.si_domain-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--off);
  border-radius: 12px;
  transition: all 0.2s ease;
}
.si_domain-item:hover {
  background: var(--gr-lt);
  transform: translateX(5px);
}
.si_domain-item i {
  width: 24px;
  font-size: .8rem;
  color: var(--gr);
}
.si_domain-item span {
  font-size: .85rem;
  font-weight: 500;
  color: var(--mt);
}

/* Timeline */
.si_timeline {
  max-width: 800px;
  margin: 48px auto 0;
}
.si_timeline-block {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  position: relative;
}
.si_timeline-block:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 55px;
  bottom: -30px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--gr), var(--gr) 8px, transparent 8px, transparent 16px);
}
.si_marker {
  width: 54px;
  height: 54px;
  background: #fff;
  border: 2px solid var(--gr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.si_timeline-block:hover .si_marker {
  background: var(--gr);
  transform: scale(1.1);
}
.si_marker span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gr);
  transition: all 0.3s ease;
}
.si_timeline-block:hover .si_marker span {
  color: white;
}
.si_timeline-text {
  flex: 1;
  background: #fff;
  padding: 14px 22px;
  border-radius: 18px;
  border: 1px solid var(--bd);
  transition: all 0.3s ease;
}
.si_timeline-block:hover .si_timeline-text {
  border-color: var(--gr);
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}
.si_timeline-text h4 {
  font-size: .98rem;
  font-weight: 800;
  color: var(--bl);
  margin-bottom: 6px;
}
.si_timeline-text p {
  font-size: .82rem;
  color: var(--mt);
  line-height: 1.6;
  margin: 0;
}

/* Features */
.si_features {
  max-width: 900px;
  margin: 48px auto 0;
  background: linear-gradient(135deg, #fff 0%, var(--off) 100%);
  border-radius: 32px;
  padding: 48px 50px;
  border: 1px solid var(--bd);
}
.si_feature-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--bd);
}
.si_feature-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.si_feature-row:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .si_feature-row, .si_feature-row:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .si_features {
    padding: 32px 24px;
  }
}
.si_feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gr);
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.si_feature-row:hover .si_feature-icon {
  transform: scale(1.05) rotate(5deg);
  background: var(--sk);
}
.si_feature-content {
  flex: 1;
}
.si_feature-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bl);
  margin-bottom: 8px;
}
.si_feature-content h4 i {
  color: var(--gr);
  margin-right: 8px;
}
.si_feature-content p {
  font-size: .88rem;
  color: var(--mt);
  line-height: 1.7;
  margin: 0;
}

/* CTA Section */
.si_cta {
  background: var(--gr-lt);
  padding: 52px 0;
}
.si_cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.si_cta h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: var(--bl);
  margin-bottom: 8px;
}
.si_cta h2 em {
  color: var(--gr);
  font-style: normal;
}
.si_cta p {
  font-size: .93rem;
  color: var(--mt);
  margin: 0;
  max-width: 420px;
  line-height: 1.75;
}
.si_cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.si_btn-g {
  background: var(--gr);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: none;
}
.si_btn-g:hover {
  background: #136e52;
  transform: translateY(-2px);
  color: #fff;
}
.si_btn-o {
  background: transparent;
  border: 1.5px solid var(--gr);
  color: var(--gr);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.si_btn-o:hover {
  background: var(--gr-lt);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .si_cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Scroll Reveal */
.sv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s;
}
.sv.vis {
  opacity: 1;
  transform: none;
}
.sr-l {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s, transform .5s;
}
.sr-l.vis {
  opacity: 1;
  transform: none;
}
.sr-r {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .5s, transform .5s;
}
.sr-r.vis {
  opacity: 1;
  transform: none;
}
/* DATA COLLECTION FOR PHD RESEARCH PAGE - EXTERNAL CSS */
/* Unique prefix: dc_ */

/* Breadcrumb */
.dc_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 14px;
}
.dc_breadcrumb a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mt);
  text-decoration: none;
  transition: color .18s;
}
.dc_breadcrumb a:hover {
  color: var(--gr);
}
.dc_breadcrumb-sep {
  font-size: .7rem;
  color: var(--lt);
  margin: 0 8px;
}
.dc_breadcrumb-current {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero */
.dc_hero {
  background: #dff0e8;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.55) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(26,140,107,.07) 0%, transparent 45%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg);
}
.dc_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,140,107,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.dc_hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.dc_hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bl);
  line-height: 1.2;
  margin-bottom: 12px;
}
.dc_hero h1 em {
  color: var(--gr);
  font-style: normal;
}

/* Section Backgrounds */
.dc_section {
  padding: 72px 0;
}
.dc_bg-off {
  background: var(--off);
}
.dc_bg-wh {
  background: #fff;
}
.dc_bg-off2 {
  background: var(--off2);
}

.text-center {
  text-align: center;
}

/* Section Headers */
.dc_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 10px;
  justify-content: center;
}
.dc_title {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 14px;
  text-align: center;
}
.dc_rule {
  width: 50px;
  height: 3px;
  background: var(--gr);
  border-radius: 2px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.dc_desc {
  font-size: .95rem;
  color: var(--mt);
  line-height: 1.85;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Methods Strip */
.dc_methods-strip {
  margin-top: 50px;
  overflow-x: auto;
  padding-bottom: 15px;
  scrollbar-width: thin;
}
.dc_methods-strip::-webkit-scrollbar {
  height: 3px;
}
.dc_methods-strip::-webkit-scrollbar-track {
  background: var(--bd);
  border-radius: 10px;
}
.dc_methods-strip::-webkit-scrollbar-thumb {
  background: var(--gr);
  border-radius: 10px;
}
.dc_strip-container {
  display: flex;
  gap: 0;
  min-width: min-content;
  background: #fff;
  border-radius: 60px;
  border: 1px solid var(--bd);
  overflow: hidden;
}
.dc_method-item {
  padding: 20px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: default;
  min-width: 160px;
}
.dc_method-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--bd);
}
.dc_method-item:hover {
  background: var(--gr-lt);
}
.dc_method-icon {
  font-size: 1.8rem;
  color: var(--gr);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}
.dc_method-item:hover .dc_method-icon {
  transform: scale(1.1);
  color: var(--sk);
}
.dc_method-title {
  font-size: .85rem;
  font-weight: 800;
  color: var(--bl);
  margin-bottom: 4px;
}
.dc_method-desc {
  font-size: .7rem;
  color: var(--mt);
}
@media (max-width: 768px) {
  .dc_strip-container {
    border-radius: 30px;
    flex-wrap: wrap;
  }
  .dc_method-item {
    padding: 15px 20px;
    min-width: auto;
    flex: 1;
  }
  .dc_method-item:not(:last-child)::after {
    display: none;
  }
}

/* Services Grid */
.dc_services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .dc_services-grid {
    grid-template-columns: 1fr;
  }
}
.dc_service-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--bd);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.dc_service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, var(--gr-lt), transparent);
  transition: width 0.3s ease;
  z-index: 0;
}
.dc_service-card:hover::before {
  width: 100%;
}
.dc_service-card:hover {
  transform: translateX(8px);
  border-color: var(--gr);
}
.dc_service-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gr);
  opacity: 0.3;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.dc_service-content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.dc_service-content h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--bl);
  margin-bottom: 6px;
}
.dc_service-content p {
  font-size: .82rem;
  color: var(--mt);
  line-height: 1.6;
  margin: 0 0 10px 0;
}
.dc_service-tag {
  display: inline-block;
  background: var(--gr-lt);
  color: var(--gr);
  font-size: .65rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
}

/* Process */
.dc_process {
  max-width: 900px;
  margin: 48px auto 0;
  position: relative;
}
.dc_process::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gr), var(--sk), var(--gr-lt));
  border-radius: 2px;
}
.dc_process-item {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  position: relative;
}
.dc_process-item:last-child {
  margin-bottom: 0;
}
.dc_process-marker {
  width: 56px;
  height: 56px;
  background: #fff;
  border: 2px solid var(--gr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.dc_process-item:hover .dc_process-marker {
  background: var(--gr);
  transform: scale(1.1);
  box-shadow: 0 0 0 6px var(--gr-lt);
}
.dc_process-marker span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gr);
  transition: all 0.3s ease;
}
.dc_process-item:hover .dc_process-marker span {
  color: white;
}
.dc_process-card {
  flex: 1;
  background: #fff;
  padding: 18px 24px;
  border-radius: 20px;
  border: 1px solid var(--bd);
  transition: all 0.3s ease;
}
.dc_process-item:hover .dc_process-card {
  border-color: var(--gr);
  transform: translateX(10px);
  box-shadow: 0 12px 25px rgba(26,140,107,.1);
}
.dc_process-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--bl);
  margin-bottom: 8px;
}
.dc_process-card p {
  font-size: .84rem;
  color: var(--mt);
  line-height: 1.65;
  margin: 0 0 8px 0;
}
.dc_time-badge {
  display: inline-block;
  background: var(--gr-lt);
  color: var(--gr);
  font-size: .65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .dc_process-item {
    gap: 15px;
  }
  .dc_process-card {
    padding: 14px 18px;
  }
  .dc_process::before {
    left: 23px;
  }
}

/* Metrics */
.dc_metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 992px) {
  .dc_metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .dc_metrics {
    grid-template-columns: 1fr;
  }
}
.dc_metric {
  background: #fff;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--bd);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.dc_metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gr), var(--sk));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.dc_metric:hover::before {
  transform: scaleX(1);
}
.dc_metric:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(26,140,107,.1);
}
.dc_metric-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gr);
  line-height: 1.2;
}
.dc_metric-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--bl);
  margin-top: 8px;
}
.dc_metric-desc {
  font-size: .72rem;
  color: var(--mt);
  margin-top: 5px;
}

/* Why Choose Us Grid */
.dc_whyus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .dc_whyus-grid {
    grid-template-columns: 1fr;
  }
}
.dc_whyus-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  border-left: 4px solid var(--gr);
  transition: all 0.3s ease;
}
.dc_whyus-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
  border-left-color: var(--sk);
}
.dc_whyus-icon {
  width: 50px;
  height: 50px;
  background: var(--gr-lt);
  color: var(--gr);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.dc_whyus-item:hover .dc_whyus-icon {
  background: var(--gr);
  color: white;
}
.dc_whyus-text h4 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--bl);
  margin-bottom: 6px;
}
.dc_whyus-text p {
  font-size: .82rem;
  color: var(--mt);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.dc_cta {
  background: var(--gr-lt);
  padding: 52px 0;
}
.dc_cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.dc_cta h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: var(--bl);
  margin-bottom: 8px;
}
.dc_cta h2 em {
  color: var(--gr);
  font-style: normal;
}
.dc_cta p {
  font-size: .93rem;
  color: var(--mt);
  margin: 0;
  max-width: 420px;
  line-height: 1.75;
}
.dc_cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.dc_btn-g {
  background: var(--gr);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: none;
}
.dc_btn-g:hover {
  background: #136e52;
  transform: translateY(-2px);
  color: #fff;
}
.dc_btn-o {
  background: transparent;
  border: 1.5px solid var(--gr);
  color: var(--gr);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.dc_btn-o:hover {
  background: var(--gr-lt);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .dc_cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Scroll Reveal */
.sv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s;
}
.sv.vis {
  opacity: 1;
  transform: none;
}
.sr-l {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s, transform .5s;
}
.sr-l.vis {
  opacity: 1;
  transform: none;
}
.sr-r {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .5s, transform .5s;
}
.sr-r.vis {
  opacity: 1;
  transform: none;
}