
    /* ── Design Tokens ── */
    :root {
      --blue-50: #ebeefd;
      --blue-100: #d8defc;
      --blue-500: #3a58ef;
      --blue-600: #314bd0;
      --blue-800: #182878;
      --blue-900: #04092a;
      --dark-800: #26244a;
      --dark-900: #17162c;
      --grey-50: #f9fafb;
      --grey-100: #f2f4f7;
      --grey-200: #eaecf0;
      --grey-300: #d0d5dd;
      --grey-500: #5d667b;
      --grey-600: #475467;
      --grey-700: #344054;
      --grey-800: #1d2939;
      --grey-900: #101828;
      --dark-blue-500: #51506e;
      --dark-blue-800: #2a3343;
      --green-50: #ecfdf3;
      --green-600: #039855;
      --red-50: #fef3f2;
      --red-500: #f04438;
      --red-800: #912018;
      --yellow-50: #fdf9eb;
      --yellow-100: #fef0c7;
      --yellow-600: #dc6803;
      --white: #ffffff;
      --radius: 12px;
    }

    /* ── Base ── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--grey-900);
      background: #fff;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Inter', sans-serif;
    }

    /* ── Reusable helpers ── */
    .badge-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 5px 10px;
      border-radius: 40px;
      font-size: 16px;
      font-weight: 600;
      line-height: 24px;
      white-space: nowrap;
    }

    .badge-pill--blue-50 {
      background: var(--blue-50);
      color: var(--grey-900);
    }

    .badge-pill--blue-100 {
      background: var(--blue-100);
      color: var(--grey-900);
    }

    .badge-pill--white {
      background: #fff;
      color: var(--grey-900);
    }

    .section-tag {
      font-size: 16px;
      font-weight: 600;
    }

    .section-heading {
      font-size: 36px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.72px;
      color: var(--dark-800);
      margin: 0;
    }

    .section-heading .text-blue {
      color: var(--blue-500);
    }

    .section-subtext {
      font-size: 18px;
      font-weight: 400;
      line-height: 28px;
      color: var(--grey-600);
    }

    .btn-primary-custom {
      background: var(--blue-500);
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 4px;
      font-size: 16px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
      cursor: pointer;
      transition: opacity .2s;
      text-decoration: none;
    }

    .btn-primary-custom:hover {
      opacity: .9;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
      background: var(--Theme-Blue-800, #182878);
      box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    }

    .btn-outline-custom {
      background: transparent;
      color: var(--blue-500);
      border: 1px solid var(--blue-500);
      padding: 12px 20px;
      border-radius: 4px;
      font-size: 16px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      cursor: pointer;
      transition: background .2s, color .2s;
      text-decoration: none;
    }

    .btn-outline-custom:hover {
      text-decoration: none;
      border-radius: 4px;
      background: var(--Theme-Blue-500, #3A58EF);
      box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
      color: #fff;
    }

    .btn-outline-white {
      background: transparent;
      color: #fff;
      border: 1px solid #fff;
      padding: 12px 20px;
      border-radius: 4px;
      font-size: 16px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      cursor: pointer;
      transition: background .2s;
      text-decoration: none;
      margin-right: 143px;
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, .1);
      text-decoration: none;
    }

    /* ─────────────────────────────────────────
       SECTION 1 – Hero
    ───────────────────────────────────────── */
    #hero {
      background: #fff;
      padding: 56px 0;
      text-align: center;
    }

    #hero .hero-title {
      font-size: 48px;
      font-weight: 700;
      line-height: 60px;
      letter-spacing: -0.96px;
      color: var(--grey-900);
    }

    #hero .hero-title .text-blue {
      color: var(--blue-500);
    }

    #hero .hero-sub {
      font-size: 20px;
      font-weight: 400;
      line-height: 30px;
      color: var(--grey-600);
    }

    #hero .hero-price {
      font-size: 16px;
      font-weight: 400;
      color: var(--dark-blue-800);
    }

    #hero .hero-price span.price {
      font-size: 52px;
      font-weight: 700;
      line-height: 60px;
      letter-spacing: -1.04px;
      color: var(--grey-900);
    }

    #hero .hero-price span.per {
      font-size: 16px;
      font-weight: 400;
    }

    .stat-item {
      text-align: center;
    }

    .stat-item .stat-num {
      font-size: 24px;
      font-weight: 700;
      line-height: 32px;
      color: var(--grey-900);
    }

    .stat-item .stat-label {
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      color: var(--dark-blue-800);
    }

    .stat-icon {
      width: 36px;
      height: 36px;
      margin: 0 auto 12px;
    }

    /* ─────────────────────────────────────────
       SECTION 2 – Core Difference
    ───────────────────────────────────────── */
    #core-difference {
      background: var(--blue-50);
      padding: 72px 0;
    }

    .diff-card {
      background: #fff;
      border-radius: 16px;
      padding: 24px;
      height: 100%;
    }

    .diff-card--green {
      border-radius: 16px;
      border-top: 1px solid var(--Success-Green-500, #12B76A);
      border-right: 1px solid var(--Success-Green-500, #12B76A);
      border-bottom: 1px solid var(--Success-Green-500, #12B76A);
      border-left: 8px solid var(--Success-Green-500, #12B76A);
      background: var(--White, #FFF);
    }

    .diff-card--red {
      border-radius: 16px;
      border-top: 1px solid var(--Error-Red-500, #F04438);
      border-right: 1px solid var(--Error-Red-500, #F04438);
      border-bottom: 1px solid var(--Error-Red-500, #F04438);
      border-left: 8px solid var(--Error-Red-500, #F04438);
      background: var(--White, #FFF);
    }

    .diff-badge--blue {
      background: var(--blue-50);
      color: var(--blue-800);
      padding: 5px 10px;
      border-radius: 40px;
      font-size: 16px;
      font-weight: 600;
      display: inline-block;
    }

    .diff-badge--red {
      background: var(--red-50);
      color: var(--red-800);
      padding: 5px 10px;
      border-radius: 40px;
      font-size: 16px;
      font-weight: 600;
      display: inline-block;
    }

    .diff-card h3 {
      font-size: 24px;
      font-weight: 700;
      line-height: 32px;
      color: var(--dark-800);
    }

    .diff-card .divider {
      height: 1px;
      background: var(--grey-200);
      margin: 0 0 16px;
    }

    .diff-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .diff-list li {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      font-size: 16px;
      line-height: 24px;
      color: var(--grey-600);
    }

    .diff-icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      margin-top: 2px;
      display: block;
    }

    /* ─────────────────────────────────────────
       SECTION 3 – Pricing
    ───────────────────────────────────────── */
    #pricing {
      background: var(--blue-50);
      padding: 72px 0;
    }

    .pricing-card {
      background: #fff;
      border-top: 1px solid var(--grey-200);
      border-left: 1px solid var(--grey-200);
      border-right: 1px solid var(--grey-200);
      border-bottom: 1px solid var(--grey-200);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      cursor: pointer;
      transition:
        background .25s ease,
        border-color .25s ease,
        border-width .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
    }

    /* ── Hover state ── */
    .pricing-card:hover {
      background: #EBEEFD;
      border-top: 1px solid #1D2939;
      border-left: 1px solid #1D2939;
      border-right: 6px solid #1D2939;
      border-bottom: 6px solid #1D2939;
      transform: translateY(-6px);
      box-shadow: none;
    }

    .pricing-card:hover .tier-badge {
      background: #182878;
      color: #fff;
    }

    .pricing-card .tier-badge {
      background: var(--blue-100);
      color: var(--dark-blue-800);
      padding: 2px 12px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 700;
      display: inline-block;
      margin-bottom: 12px;
    }

    .pricing-card .from-text {
      font-size: 14px;
      font-weight: 500;
      color: var(--grey-600);
    }

    .pricing-card .price-big {
      font-size: 36px;
      font-weight: 700;
      letter-spacing: -0.72px;
      color: var(--dark-blue-800);
    }

    .pricing-card .per-text {
      color: var(--Text-Grey-700, #344054);
      font-family: Inter;
      font-size: 12px;
      font-style: normal;
      font-weight: 500;
      line-height: 18px;
      letter-spacing: 0;
    }

    /* staff slider controls (static display) */




    .inclusion-item {
      background: var(--grey-50);
      border-radius: 8px;
      padding: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      font-weight: 600;
      color: var(--dark-blue-500);
      min-height: 64px;
      height: 64px;
    }


    .mos-banner {
      background: var(--blue-800);
      border-radius: 16px;
      padding: 36px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 36px;
      flex-wrap: wrap;
    }

    .mos-banner h3 {
      font-size: 26px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .mos-banner p {
      font-size: 16px;
      color: rgba(255, 255, 255, .85);
      margin: 0;
    }


    /* 36px spacer between accordion section groups */
    .fb-spacer-row td {
      height: 26px;
      background: #fff;
      border: none;
      padding: 0;
    }

    /* ─────────────────────────────────────────
       SECTION 4 – Geographic Presence
    ───────────────────────────────────────── */
    #geographic {
      background: #fff;
      padding: 72px 0;
    }

    .geo-panel {
      background: var(--grey-50);
      border: 1px solid var(--grey-300);
      border-radius: 16px;
      padding: 24px;
      height: 100%;
    }

    .geo-panel h3 {
      color: var(--Text-Grey-800, #1D2939);
      font-family: Inter;
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: 30px;
      margin: 0;
    }

    .geo-panel .divider {
      height: 0px;
      background: var(--grey-200);
      margin: 0 0 12px;
    }

    .geo-row {
      border-radius: 6px;
      padding: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 10px;
    }

    .geo-row--blue {
      background: var(--blue-100);
    }

    .geo-row--yellow {
      background: var(--yellow-50);
    }

    .geo-row__name {
      flex: 1;
      font-size: 16px;
      font-weight: 600;
      color: var(--grey-500);
    }

    .geo-row__flag {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }

    .chip-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 11px;
      border-radius: 29px;
      font-size: 14px;
      font-weight: 500;
      white-space: nowrap;
      height: 28px;
    }

    .chip-green {
      background: var(--green-50);
      border: 1px solid var(--green-600);
      color: var(--green-600);
    }

    .chip-blue {
      background: var(--blue-50);
      border: 1px solid var(--blue-600);
      color: var(--blue-500);
    }

    .chip-yellow {
      background: var(--yellow-100);
      border: 1px solid var(--yellow-600);
      color: var(--yellow-600);
    }

    .chip-grey {
      background: var(--grey-50);
      border: 1px solid var(--grey-600);
      color: var(--grey-600);
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .dot-green {
      background: var(--green-600);
    }

    .dot-blue {
      background: var(--blue-500);
    }

    .geo-note {
      font-size: 16px;
      color: var(--grey-600);
      margin-top: 16px;
    }

    /* ─────────────────────────────────────────
       SECTION 5 – Infrastructure Advantage
    ───────────────────────────────────────── */
    #infrastructure {
      background: var(--blue-50);
      padding: 72px 0;
    }

    .infra-card {
      background: #fff;
      border-top: 1px solid var(--grey-200);
      border-left: 1px solid var(--grey-200);
      border-right: 1px solid var(--grey-200);
      border-bottom: 1px solid var(--grey-200);
      border-radius: 12px;
      padding: 24px;
      height: 100%;
      cursor: pointer;
      transition: background .25s ease, border .25s ease, transform .25s ease;
    }

    /* ── Infra card hover ── */
    .infra-card:hover {
      background: #EBEEFD;
      border-top: 1px solid #1D2939;
      border-left: 1px solid #1D2939;
      border-right: 6px solid #1D2939;
      border-bottom: 6px solid #1D2939;
      transform: translateY(-6px);
      box-shadow: none;
    }

    .infra-card:hover .infra-icon-wrap {
      background: #1D2939;
    }

    .infra-card:hover .infra-icon-img {
      filter: brightness(0) invert(1);
    }

    .infra-icon-wrap {
      width: 48px;
      height: 48px;
      background: var(--blue-50);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      flex-shrink: 0;
      transition: background .25s ease;
    }

    .infra-icon-img {
      width: 27px;
      height: 27px;
      object-fit: contain;
      transition: filter .25s ease;
    }

    .infra-card h3 {
      font-size: 20px;
      font-weight: 600;
      line-height: 30px;
      color: var(--dark-blue-800);
    }

    .infra-card p {
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      color: var(--grey-600);
    }

    .infra-card:hover {}

    .infra-card:hover .infra-icon-wrap svg {}

    .infra-card:hover .infra-icon-wrap svg rect {
        fill: #fff;
    }

    .infra-card:hover .infra-icon-wrap svg path {
        stroke: #fff;
    }

    /* ─────────────────────────────────────────
       SECTION 6 – Who We Serve
    ───────────────────────────────────────── */
    #who-we-serve {
      background: #fff;
      padding: 72px 0;
    }

    .serve-item {
      background: #fff;
      border: 1px solid var(--grey-200);
      border-radius: 8px;
      padding: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      cursor: pointer;
      transition: box-shadow .2s;
      height: 100%;
      margin-top: 8px;
      transition: 0.5s all ease-in-out;
    }

    .serve-item:hover {
      border-radius: 8px;
      border: 1px solid var(--Text-Grey-200, #EAECF0);
      background: var(--White, #FFF);
      box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.08);
      margin-top: 0;
      transition: 0.5s all ease-in-out;
    }

    .serve-item:hover svg:last-child path {
      stroke: var(--Theme-Blue-500, #3A58EF);
    }

    .serve-item .serve-icon {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
    }

    .serve-item .serve-name {
      font-size: 18px;
      font-weight: 600;
      color: var(--dark-blue-800);
      flex: 1;
    }

    .serve-item .serve-arrow {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      opacity: .5;
    }

    /* ─────────────────────────────────────────
       SECTION 3 – Feature-by-Feature Breakdown (Accordion)
    ───────────────────────────────────────── */
    #feature-breakdown {
      background: #fff;
      padding: 72px 0;
    }

    .fb-title {
      font-size: 36px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.72px;
      color: var(--dark-800);
    }

    .fb-table-wrap {
      width: 100%;
      overflow-x: auto;
      border: 1px solid var(--grey-300);
      border-radius: 16px;
      overflow: hidden;
    }

    .fb-table {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid var(--grey-300);
      border-radius: 16px;
      overflow: hidden;
    }

    /* ── Header ── */
    .fb-th {
      padding: 18px 14px;
      font-size: 14px;
      font-weight: 700;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, .2);
      vertical-align: middle;
    }

    .fb-th-feature {
      background: var(--blue-800);
      color: #fff;
      text-align: left;
      font-size: 16px;
      width: 22%;
      padding-left: 20px;
    }

    .fb-th-mycpe {
      background: #EBEEFD;
      color: var(--blue-800);
      width: 16%;
    }

    .fb-th-comp {
      background: var(--blue-800);
      color: #fff;
      width: 15.5%;
    }

    /* MYCPE ONE logo in header */
    .mycpe-logo-svg {
      display: inline-block;
      vertical-align: middle;
    }

    /* ── Accordion section trigger rows ── */
    .fb-section-row td {
      background: #fff;
      padding: 0;
      border-bottom: 1px solid var(--grey-200);
      border-top: none;
    }

    /* Open (expanded) section row gets the blue tint */
    .fb-section-row--open td {
      background: var(--blue-50);
    }

    .fb-section-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      background: none;
      border: none;
      padding: 18px 16px;
      cursor: pointer;
      text-align: left;
      font-size: 15px;
      font-weight: 700;
      color: var(--blue-800);
    }

    .fb-section-btn:focus {
      outline: none;
    }

    .fb-toggle-icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .fb-toggle-icon svg {
      display: block;
    }

    /* ── Data rows ── */
    .fb-data-row td {
      padding: 14px 12px;
      border-bottom: 1px solid var(--grey-200);
      vertical-align: middle;
      transition: none;
      color: var(--Text-Grey-700, #344054);
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: 24px;
    }

    .fb-data-row td:first-child {
      color: var(--Text-Grey-600, #475467);
      font-family: Inter;
      font-size: 18px;
      font-style: normal;
      font-weight: 600;
      line-height: 28px;
    }

    /* NO hover effect */
    .fb-data-row:hover td {
      background: inherit;
    }

    .fb-feature {
      font-size: 14px;
      font-weight: 500;
      color: var(--grey-800);
      padding-left: 20px !important;
      background: #fff;
      border-right: 1px solid var(--grey-200);
    }

    .fb-mycpe {
      text-align: center;
      background: var(--blue-50) !important;
      color: var(--dark-blue-800);
      font-size: 14px;
      border-right: 1px solid var(--blue-100);
      border-left: 1px solid var(--blue-100);
    }

    .fb-mycpe strong {
      font-weight: 700;
      color: var(--dark-blue-800);
    }

    .fb-comp {
      text-align: center;
      color: var(--grey-700);
      font-size: 13px;
      background: #fff;
      border-right: 1px solid var(--grey-200);
    }

    .fb-red {
      color: var(--red-500) !important;
      font-weight: 600;
    }

    /* Icons */
    .icon-x {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--red-50);
      color: var(--red-500);
      font-size: 10px;
      font-weight: 700;
      flex-shrink: 0;
      margin-right: 4px;
      vertical-align: middle;
    }

    .icon-check {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #ecfdf3;
      color: #039855;
      font-size: 11px;
      font-weight: 700;
      flex-shrink: 0;
      vertical-align: middle;
    }

    /* Hidden rows when accordion closed */
    .fb-body-group {
      display: table-row-group;
    }

    .fb-body-group.fb-collapsed .fb-data-row {
      display: none;
    }

    /* ─────────────────────────────────────────
       SECTION 8 – CTA
    ───────────────────────────────────────── */
    #cta {
      background: var(--blue-50);
      padding: 72px 0;
      text-align: center;
    }

    #cta .cta-title {
      font-size: 36px;
      font-weight: 700;
      line-height: 48px;
      letter-spacing: -0.72px;
      color: var(--dark-900);
    }

    #cta .cta-title .text-blue {
      color: var(--blue-500);
    }

    #cta .cta-sub {
      font-size: 18px;
      color: var(--grey-600);
      line-height: 28px;
    }

    #cta .cta-phone {
      font-size: 16px;
      font-weight: 500;
      color: var(--grey-500);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    /* ─────────────────────────────────────────
       SECTION 9 – FAQ
    ───────────────────────────────────────── */
    #faq {
      background: #fff;
      padding: 72px 0;
    }

    #faq .faq-heading {
      font-size: 36px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.72px;
      color: var(--dark-800);
    }

    #faq .accordion-item {
      margin: 0;
      border: 0;
      margin-bottom: 16px;
      border-radius: 0;
      background: transparent;
      border-bottom: 1px solid #d9d9d9;
    }

    #faq .accordion-item:last-child {
      border-bottom: none;
    }

    #faq .accordion-button {
      color: #667085;
      background: transparent;
      border: 0;
      padding: 16px 0 16px 0;
      box-shadow: none;
      font-family: Inter, sans-serif;
      font-size: 20px;
      font-weight: 600;
      line-height: 30px;
      text-align: left;
    }

    #faq .accordion-button:not(.collapsed) {
      color: #667085;
      background: transparent;
      box-shadow: none;
    }

    #faq .accordion-button:focus {
      box-shadow: none;
    }

    /* Hide Bootstrap's default right-side chevron */
    #faq .accordion-button::after {
      display: none;
    }

    /* Left-side SVG + icon — open state is rotated (shows ×) */
    #faq .accordion-button::before {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      margin-right: 24px;
      content: "";
      background-image: url(../images/gcc-page/Open_Accordion_Icon.svg);
      background-repeat: no-repeat;
      background-size: cover;
      transition: all .3s;
      transform: rotate(45deg);
    }

    /* Collapsed state: + upright */
    #faq .accordion-button.collapsed::before {
      transform: rotate(0deg);
    }

    #faq .accordion-button h4 {
      color: #667085;
      font-family: Inter, sans-serif;
      font-size: 20px;
      font-weight: 600;
      line-height: 30px;
      text-align: left;
      margin: 0;
    }

    #faq .accordion-body {
      font-family: Inter, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 150%;
      color: #171a1f;
      padding: 0 0 24px 55px;
    }


    /* ── Pricing Controls (Currency + Staff Slider) ── */
    .pricing-controls {
      margin-bottom: 32px;
    }

    .pricing-ctrl-wrap {
      position: relative;
      padding-top: 14px;
      /* space for the overlapping pill */
    }

    .pricing-ctrl-label {
      position: absolute;
      top: 0;
      left: 24px;
      background: #182878;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      line-height: 20px;
      padding: 6px 16px;
      border-radius: 500px;
      white-space: nowrap;
      z-index: 2;
    }

    .pricing-ctrl-body {
      background: #f9fafb;
      border-radius: 8px;
      padding: 32px 24px 16px;
      height: 100%;
      position: relative;
      min-height: 80px;
    }

    .pricing-ctrl-body--slider {
      min-width: 400px;
    }

    /* Currency dropdown */
    .currency-dropdown {
      background: #fff;
      border: 1px solid #d0d5dd;
      border-radius: 4px;
      width: 134px;
    }

    .currency-dropdown-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
    }

    .currency-text {
      font-size: 14px;
      font-weight: 500;
      color: #1d2939;
      white-space: nowrap;
    }

    /* Staff slider — functional range input */
    .staff-slider-inner {
      width: 100%;
    }

    .staff-range-wrap {
      position: relative;
      width: 100%;
      height: 56px;
      display: flex;
      align-items: center;
      overflow: visible;
    }

    .staff-track-bg {
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 4px;
      background: #ebeefd;
      border-radius: 60px;
      pointer-events: none;
    }

    .staff-track-fill {
      height: 4px;
      width: 23.5%;
      background: #3a58ef;
      border-radius: 60px;
      transition: width .05s;
    }

    /* Native range input — invisible track, custom thumb via SVG */
    .staff-range-input {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 0;
      right: 0;
      width: 100%;
      -webkit-appearance: none;
      appearance: none;
      background: transparent;
      outline: none;
      margin: 0;
      padding: 0;
      height: 20px;
      cursor: pointer;
      z-index: 2;
    }

    /* Thumb — all browsers */
    .staff-range-input::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 17px;
      height: 17px;
      border-radius: 50%;
      background: white;
      border: 1px solid #EAECF0;
      box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
      cursor: pointer;
      margin-top: 0;
    }

    .staff-range-input::-moz-range-thumb {
      width: 17px;
      height: 17px;
      border-radius: 50%;
      background: white;
      border: 1px solid #EAECF0;
      box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
      cursor: pointer;
    }

    /* Hide native track in all browsers */
    .staff-range-input::-webkit-slider-runnable-track {
      background: transparent;
    }

    .staff-range-input::-moz-range-track {
      background: transparent;
    }

    .staff-label {
      background: #d8defc;
      color: #3a58ef;
      font-size: 12px;
      font-weight: 500;
      line-height: 18px;
      padding: 3px 8px;
      border-radius: 4px;
    }

    .staff-tooltip-bubble {
      position: absolute;
      top: 2px;
      transform: translateX(-50%);
      background: #fff;
      color: #182878;
      font-size: 11px;
      font-weight: 600;
      line-height: 1;
      padding: 4px 8px;
      border-radius: 4px;
      border: 1px solid #d0d5dd;
      box-shadow: 0 1px 4px rgba(0,0,0,.10);
      white-space: nowrap;
      pointer-events: none;
      z-index: 3;
    }
    .staff-tooltip-bubble::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border: 5px solid transparent;
      border-top-color: #d0d5dd;
    }
    .staff-tooltip-bubble::before {
      content: '';
      position: absolute;
      top: calc(100% - 1px);
      left: 50%;
      transform: translateX(-50%);
      border: 5px solid transparent;
      border-top-color: #fff;
      z-index: 1;
    }

    /* ── 1320px Page Container ── */
    .page-container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
    }


    .dropdown-toggle::after {
      position: absolute;
      top: 20px;
      right: 15px;
      background: url(build-your-real-offshore-team/images/dropdown-toggle-icon.svg);
      background-size: cover;
      width: 20px;
      height: 20px;
      margin: 0;
      border: 0;
    }

    button.btn.dropdown-toggle {
      width: 100%;
    }

    button.btn.dropdown-toggle.show {
        border: 0;
    }

    #cta a.Call_Btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: var(--Text-Grey-500, #5D667B);
      text-align: center;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 24px;
    }

    /* ─────────────────────────────────────────
       Responsive
    ───────────────────────────────────────── */
    @media (max-width: 768px) {

      #hero,
      #core-difference,
      #pricing,
      #geographic,
      #infrastructure,
      #who-we-serve,
      #feature-breakdown,
      #cta,
      #faq {
        padding-top: 48px;
        padding-bottom: 48px;
      }

      #hero .hero-title {
        font-size: 32px;
        line-height: 42px;
      }

      .section-heading {
        font-size: 28px;
      }

      #cta .cta-title {
        font-size: 28px;
      }

      #faq .faq-heading {
        font-size: 28px;
      }

      .feature-table {
        font-size: 13px;
      }

      .fb-table-wrap {
        overflow-x: scroll;
        overflow-y: auto;
      }

      .inclusion-item {
        padding: 8px;
        font-size: 12px;
      }

      .inclusion-item svg {
        max-width: 17px;
      }

      .serve-item svg {
        min-width: 36px;
      }

      .pricing-ctrl-body--slider {
        max-width: 320px;
        min-width: 320px;
      }

      .geo-panel .d-flex.align-items-center {
        flex-direction: column;
      }

      .geo-row {
        flex-direction: column;
        align-items: center;
      }
    }

    
