/* ***** Common Css **** */

:root {
    scroll-behavior: initial;
    --admin-header-height: 75px;
    --admin-mobile-header-height: 60px;
    --font-app: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --color-brand: #35196E;
    --color-brand-mid: #4a2a8a;
    --color-brand-deep: #2a1458;
    /* Marketing accent (matches .jg-home / pricing) */
    --site-secondary: #7c3aed;
    --site-violet-mid: #6d28d9;
    --site-light: #f8f7ff;
    --site-muted: rgba(31, 20, 55, 0.72);
    /* Dashboard sidebar active / accent (backend UI) */
    --color-admin-accent: #0D3474;
    --btn-pill-radius: 9999px;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

.container-fluid{
    zoom: 90%;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

img {
    display: block;
}

a,
button {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: var(--font-app);
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

input,
select,
textarea,
.form-control,
.btn {
    font-family: var(--font-app);
}

/* Global primary CTA — pill, glass, brand purple */
.btn-main,
a.btn-main,
button.btn-main {
    font-family: var(--font-app);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 1.5rem;
    /* min-height: 2.75rem; */
    width: auto;
    max-width: 100%;
    border-radius: var(--btn-pill-radius);
    border: 1px solid rgba(255, 255, 255, 0.32);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%),
        linear-gradient(180deg, #4a2a8a 0%, var(--color-brand) 50%, var(--color-brand-deep) 100%);
    color: #fff !important;
    box-shadow:
        0 2px 12px rgba(53, 25, 110, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
    text-decoration: none !important;
    line-height: 1.35;
}

.btn-main:hover {
    color: #fff !important;
    filter: brightness(1.05);
    box-shadow:
        0 4px 16px rgba(53, 25, 110, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.btn-main:focus-visible {
    outline: 2px solid rgba(53, 25, 110, 0.45);
    outline-offset: 3px;
}

.btn-main:disabled,
.btn-main.disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    filter: none;
}

/* Bootstrap buttons: pill + brand primary */
.btn:not(.btn-link):not(.btn-close) {
    border-radius: var(--btn-pill-radius);
}

.btn-group > .btn,
.btn-group-vertical > .btn {
    border-radius: 0 !important;
}

.btn-group > .btn:first-child {
    border-top-left-radius: var(--btn-pill-radius) !important;
    border-bottom-left-radius: var(--btn-pill-radius) !important;
}

.btn-group > .btn:last-child {
    border-top-right-radius: var(--btn-pill-radius) !important;
    border-bottom-right-radius: var(--btn-pill-radius) !important;
}

.btn-group > .btn:only-child {
    border-radius: var(--btn-pill-radius) !important;
}

.btn-group-vertical > .btn:first-child {
    border-radius: var(--btn-pill-radius) var(--btn-pill-radius) 0 0 !important;
}

.btn-group-vertical > .btn:last-child {
    border-radius: 0 0 var(--btn-pill-radius) var(--btn-pill-radius) !important;
}

.btn-primary {
    font-weight: 500;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 45%),
        linear-gradient(180deg, #4a2a8a 0%, var(--color-brand) 55%, var(--color-brand-deep) 100%);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    box-shadow:
        0 2px 12px rgba(53, 25, 110, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover,
.btn-primary:focus {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 45%),
        #452694;
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
}

.main-wrpper {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

/* Admin panel: allow page scroll; home/marketing layout keeps overflow hidden */
.main-wrpper:not(.home-page) {
    overflow-x: hidden;
    overflow-y: visible;
    min-height: 100vh;
}

.home-page .container {
    max-width: 1440px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-app);
}

.main-part-body {
    font-weight: 400;
}

/* Responsive form layout — label + field columns (sm full stack, md 4/8, lg 3/9, xl 2/10) */
.main-part-body .form-group .row,
.recharge-now-modal .form-group .row {
    row-gap: 0.5rem;
}

.main-part-body .form-group .form-control,
.main-part-body .form-group select.form-control,
.main-part-body .form-group textarea.form-control,
.recharge-now-modal .form-group .form-control,
.recharge-now-modal .form-group select.form-control,
.recharge-now-modal .form-group textarea.form-control {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 767.98px) {
    .main-part-body .form-group .row.align-items-center,
    .recharge-now-modal .form-group .row.align-items-center {
        align-items: flex-start !important;
    }

    .main-part-body .form-group label.m-0,
    .recharge-now-modal .form-group label.m-0 {
        margin-bottom: 0.35rem !important;
    }
}


/* ***** End Common Css **** */
/* **** Home Header **** */

/* Paymt-style: airy bar, light lavender → white (no dark band) */
.home-page header.jg-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 0;
    border-top: none;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(250, 248, 255, 0.9) 42%,
        rgba(237, 233, 254, 0.82) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 6px 28px rgba(53, 25, 110, 0.07);
    border-radius: 0 0 28px 28px;
    border-bottom: 1px solid rgba(53, 25, 110, 0.07);
    transition: box-shadow 0.35s ease, background 0.35s ease;
}

.home-page header.jg-site-header .container {
    padding-top: clamp(12px, 2vw, 18px);
    padding-bottom: clamp(12px, 2vw, 18px);
}

.home-page .navbar .container .navbar-brand,
.home-page .navbar .container-fluid .navbar-brand {
    margin-left: 0;
}

.home-page .navbar-brand.jg-header-logo-pill {
    float: none;
    height: auto;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 18px rgba(53, 25, 110, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page .navbar-brand.jg-header-logo-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(53, 25, 110, 0.12);
}

.home-page .navbar-brand.jg-header-logo-pill img {
    max-width: 100%;
    height: 42px;
    width: auto;
    display: block;
}

.home-page .navbar-brand.jg-header-logo-pill .jg-brand-wordmark {
    font-weight: 700;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--color-brand);
    letter-spacing: -0.02em;
    padding-left: 6px;
}

.home-page .navbar {
    background: transparent;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}

.home-page .nav-row.jg-header-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 8px;
}

.home-page .navbar-light .navbar-nav.jg-header-main-nav {
    margin: 0 auto;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 0;
}

.home-page .navbar-light .navbar-nav.jg-header-main-nav > li {
    margin-right: clamp(8px, 1.5vw, 24px);
}

.home-page .navbar-light .navbar-nav.jg-header-main-nav > li:last-child {
    margin-right: 0;
}

.home-page .navbar-light .navbar-nav .nav-link {
    padding: 8px 18px;
    color: var(--color-brand) !important;
    font-size: clamp(14px, 1.1vw, 17px);
    font-weight: 500;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    border-radius: 999px;
    border: 1px solid transparent;
}

.home-page .navbar-light .navbar-nav .nav-link.jg-nav-compact {
    font-size: clamp(12px, 1vw, 14px);
    padding: 8px 12px;
    font-weight: 500;
    color: color-mix(in srgb, var(--color-brand) 72%, #6b7280) !important;
}

.home-page .navbar-light .navbar-nav .nav-link.jg-nav-compact:hover {
    color: var(--color-brand) !important;
    border-color: color-mix(in srgb, var(--color-brand) 35%, transparent);
    background: rgba(255, 255, 255, 0.65);
}

.home-page .navbar .navbar-nav li:not(.jg-nav-dropdown) a.nav-link:focus,
.home-page .navbar .navbar-nav li:not(.jg-nav-dropdown) a.nav-link:hover {
    color: var(--color-brand) !important;
    border-color: color-mix(in srgb, var(--color-brand) 45%, transparent);
    background: rgba(255, 255, 255, 0.55);
}

.home-page .navbar .navbar-nav li.active:not(.jg-nav-dropdown) > a.nav-link {
    color: #fff !important;
    border: 1px solid var(--color-brand);
    background: var(--color-brand);
}

.home-page .navbar-light .navbar-nav li:not(.jg-nav-dropdown) .nav-link.active {
    color: var(--color-brand);
}

.home-page .navbar-light .navbar-nav li:not(.jg-nav-dropdown) .nav-link:focus {
    outline: none;
}

/* Dropdown triggers — pill style */
.home-page .jg-nav-dropdown-toggle.nav-link {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid color-mix(in srgb, var(--color-brand) 18%, transparent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font: inherit;
    line-height: 1.3;
    appearance: none;
    -webkit-appearance: none;
}

.home-page .jg-dd-caret {
    font-size: 0.65rem;
    opacity: 0.85;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.home-page .jg-nav-dropdown:hover .jg-dd-caret,
.home-page .jg-nav-dropdown:focus-within .jg-dd-caret,
.home-page .jg-nav-dropdown.is-open .jg-dd-caret {
    transform: rotate(180deg);
}

.home-page .jg-nav-dropdown-toggle.nav-link:hover,
.home-page .jg-nav-dropdown-toggle.nav-link:focus-visible {
    border-color: color-mix(in srgb, var(--color-brand) 38%, transparent);
    background: rgba(255, 255, 255, 0.75);
    color: var(--color-brand) !important;
}

/* Hover card — Paymt-style animated panel */
.home-page .jg-nav-dropdown {
    position: relative;
}

.home-page .jg-nav-dropdown-card {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    min-width: 240px;
    padding: 14px 10px 12px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--color-brand) 12%, #e8e0f0);
    box-shadow:
        0 18px 40px rgba(53, 25, 110, 0.14),
        0 4px 12px rgba(53, 25, 110, 0.06);
    transform: translate(-50%, 10px) scale(0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.32s cubic-bezier(0.34, 1.2, 0.64, 1),
        transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1),
        visibility 0.32s linear;
    z-index: 200;
}

.home-page .jg-nav-dropdown-heading {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--color-brand) 55%, #6b7280);
    padding: 4px 12px 10px;
    border-bottom: 1px solid color-mix(in srgb, var(--color-brand) 10%, transparent);
    margin-bottom: 4px;
}

.home-page .jg-nav-dropdown-card a[role="menuitem"] {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: color-mix(in srgb, var(--color-brand) 42%, #6b7280);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-page .jg-nav-dropdown-card a[role="menuitem"]:hover {
    background: linear-gradient(135deg, rgba(208, 201, 222, 0.45), rgba(255, 255, 255, 0.9));
    color: var(--color-brand);
    transform: translateX(4px);
}

.home-page .jg-nav-dropdown:hover .jg-nav-dropdown-card,
.home-page .jg-nav-dropdown:focus-within .jg-nav-dropdown-card {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}

@media (min-width: 992px) {
    .home-page .jg-nav-dropdown:hover .jg-nav-dropdown-toggle,
    .home-page .jg-nav-dropdown:focus-within .jg-nav-dropdown-toggle {
        border-color: color-mix(in srgb, var(--color-brand) 38%, transparent);
        background: rgba(255, 255, 255, 0.85);
    }
}

@keyframes jg-dd-pop {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.97);
    }

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

@media (max-width: 991.98px) {
    .home-page .jg-nav-dropdown:not(.is-open) .jg-nav-dropdown-card {
        display: none;
    }

    .home-page .jg-nav-dropdown.is-open .jg-nav-dropdown-card {
        display: block;
        position: static;
        left: auto;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        width: 100%;
        margin-top: 8px;
        animation: jg-dd-pop 0.38s cubic-bezier(0.34, 1.2, 0.64, 1) both;
    }

    .home-page .jg-nav-dropdown-toggle.nav-link {
        width: 100%;
        justify-content: space-between;
        text-align: left;
    }

    .home-page .navbar-light .navbar-nav.jg-header-main-nav > li {
        width: 100%;
        margin-right: 0;
    }

    .home-page .nav-row.jg-header-nav-row {
        flex-direction: column;
        align-items: stretch;
        padding-top: 8px;
    }

    .home-page ul.enter-nav.jg-header-enter {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 8px;
        padding-top: 14px;
        border-top: 1px solid color-mix(in srgb, var(--color-brand) 14%, transparent);
        gap: 10px;
    }
}

.home-page ul.enter-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.home-page ul.enter-nav li {
    margin-right: 20px;
}

.home-page ul.enter-nav li:last-child {
    margin: 0;
}

.home-page ul.enter-nav li a {
    border-radius: 50px;
    min-width: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 15px;
    color: #35196E;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0px 3.53623px 17.6812px rgba(0, 0, 0, 0.05);
    border: 2px solid #35196E;
}

.home-page ul.enter-nav li a:hover {
    background: #35196E;
    color: #fff;
}

.home-page ul.enter-nav li a.btn-nav {
    background: #35196E;
    color: #fff;
}

.home-page ul.enter-nav li a.btn-nav:hover {
    background: #fff;
    color: #35196E;
}

/* Paymt-style CTAs: soft cream “Sign up” + solid purple primary */
.home-page ul.enter-nav.jg-header-enter li:first-child a {
    min-width: 132px;
    background: linear-gradient(180deg, #faf6f2, #efe8df);
    border: 1px solid rgba(53, 25, 110, 0.14);
    color: var(--color-brand) !important;
    box-shadow: 0 4px 16px rgba(53, 25, 110, 0.06);
}

.home-page ul.enter-nav.jg-header-enter li:first-child a:hover {
    background: #fff;
    border-color: rgba(53, 25, 110, 0.28);
    color: var(--color-brand) !important;
}

.home-page ul.enter-nav.jg-header-enter li:first-child a:hover img {
    filter: none;
}

.home-page ul.enter-nav li a img {
    margin-left: 10px;
}

.home-page ul.enter-nav li a:hover img {
    filter: brightness(0) invert(1);
}


/* **** End Home Header **** */


/* **** Home toggler **** */

.home-page .navbar-light .navbar-toggler {
    background-color: transparent;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    border: none;
    height: 40px;
    width: 50px;
    padding: 0;
}

.home-page .navbar-light .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.home-page .navbar-light .navbar-toggler .navbar-toggler-icon {
    background-image: unset;
}

.home-page .navbar-toggler:active,
.home-page .navbar-toggler:focus {
    outline: none;
}

.home-page .navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 18px;
    background-image: none;
    position: relative;
    border-bottom: 2px solid #000;
    transition: all 300ms linear;
}

.home-page .navbar-light .navbar-toggler-icon:after,
.home-page .navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 2px;
    background-color: #000;
    top: 0;
    left: 0;
    content: "";
    z-index: 2;
    transition: all 300ms linear;
}

.home-page .navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.home-page .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.home-page .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.home-page .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}


/* **** End Home toggler **** */


/* **** Home Banner **** */

.banner {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    background: url(../images/banner-bg.png) 0 0 no-repeat;
    background-size: cover;
    padding: 80px 120px;
}

.banner-inner h1 {
    font-family: var(--font-app);
    font-style: normal;
    font-weight: 700;
    font-size: 70px;
    line-height: 120%;
    color: #000000;
    margin: 0 0 20px;
}

.blue-color {
    color: #35196E;
}

.green-color {
    color: #0EAD00;
}

.banner-inner ul {
    display: flex;
    align-items: center;
}

.banner-inner ul li {
    font-family: var(--font-app);
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 140%;
    color: #35196E;
    padding-left: 30px;
    padding-right: 40px;
    position: relative;
}

.banner-inner ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #35196E;
}

.banner-inner p {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #000000;
    max-width: 62%;
    margin: 30px 0 0;
    padding: 30px 0 0;
    border-top: 2px solid #000;
}

.banner-btn-group {
    display: flex;
    align-items: center;
    margin: 40px 0 0;
}

.btn-green,
.btn-blue {
    background: #0EAD00;
    border-radius: 140.656px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    color: #FFFFFF;
    padding: 10px 20px;
    margin: 0 50px 0 0;
}

.btn-blue {
    background: #35196E;
}

.btn-green:hover,
.btn-blue:hover {
    background: #000;
}

.banner-img figure {
    margin: 0;
}

.banner-img figure img {
    width: 100%;
    max-width: 27%;
    position: absolute;
    bottom: 30px;
    right: 0;
}


/* **** End Home Banner **** */


/* **** Home Accepting **** */

.accepting-inner {
    background: #F1F1F1;
    border-radius: 17px;
    padding: 20px;
}

.accepting-inner h2 {
    font-family: var(--font-app);
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 120%;
    text-align: center;
    color: #35196E;
    margin: 0 0 15px;
}

.accepting-inner p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #000000;
    margin: 0;
}

.accepting {
    position: relative;
    margin: -50px 0 0;
}


/* **** End Home Accepting **** */


/* **** Home App Icon Boxs **** */

.app-icon-boxs {
    position: relative;
    width: 100%;
    margin: 40px 0;
}

.app-icon-boxs-inner {
    width: 275px;
    height: 275px;
    background: #FFFFFF;
    box-shadow: 0px 9px 19px rgba(0, 0, 0, 0.13), inset 0px 0px 10px rgba(159, 159, 159, 0.25);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 20px auto;
}

.app-icon-boxs-inner figure {
    margin: 0;
}

.app-icon-boxs-inner figure img {
    width: 100%;
}


/* **** End Home App Icon Boxs **** */


/* **** Home Our Achievements **** */

.achievements {
    position: relative;
    width: 100%;
    margin: 0 0 60px;
}

.achievements-inner {
    width: 96%;
    background: #35196E;
    border-radius: 18px;
    padding: 60px;
    margin: 0 auto;
}

.achievements-inner h2 {
    font-family: var(--font-app);
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 50px;
}

.achievements-inner-box h3 {
    font-weight: 900;
    font-size: 40px;
    line-height: 120%;
    text-align: center;
    color: #ADFF00;
    margin: 0 0 20px;
}

.achievements-inner-box p {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}


/* **** End Home Our Achievements **** */


/* **** Home Benefits **** */

.benefits {
    position: relative;
    width: 100%;
}

.benefits-title {
    background: #F1F1F1;
    border-radius: 17px;
    padding: 20px;
    margin: 0 0 40px;
}

.benefits-title h2 {
    font-family: var(--font-app);
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 120%;
    text-align: center;
    color: #35196E;
    margin: 0 0 15px;
}

.benefits-title p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #000000;
    margin: 0;
}

.benefits-img figure {
    margin: 0;
    max-width: 75%;
}

.benefits-img figure img {
    width: 100%;
}

.benefits-box {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    border: 2px solid #35196E;
    border-radius: 15px;
    padding: 15px;
    margin: 20px 0;
}

.benefits-box h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #000000;
    margin: 0;
}

.benefits-box figure {
    margin: 0 10px 0 0;
    height: 50px;
}

.benefits-box figure img {
    width: 100%;
    height: 100%;
}

.benefits .banner-btn-group {
    justify-content: center;
}


/* **** End Home Benefits **** */


/* **** Home Our Gateway **** */

.gateway {
    position: relative;
    width: 100%;
    margin: 40px 0;
}

.hedding-box h2 {
    font-family: var(--font-app);
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 120%;
    color: #35196E;
    margin: 0;
}

.hedding-box p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #000000;
    padding-top: 20px;
    margin: 20px 0 0;
    border-top: 2px solid #000;
    width: 70%;
}

.gateway-data ul {
    position: relative;
    margin: 40px 0 0;
}

.gateway-data ul li {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #000000;
    margin: 10px 0;
    position: relative;
    padding-left: 20px;
}

.gateway-data ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: #000;
}

.gateway-img figure {
    margin: 0 0 0 auto;
    max-width: 80%;
}

.gateway-img figure img {
    width: 100%;
}


/* **** End Home Our Gateway **** */


/* **** Home Our Plans **** */

.palans {
    position: relative;
    width: 100%;
}

.palans-inner {
    background: #35196E;
    border-radius: 17px;
    padding: 40px;
}

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

.hedding-box2 h2 {
    font-family: var(--font-app);
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 120%;
    color: #fff;
    margin: 0 0 15px;
}

.hedding-box2 p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #fff;
    margin: 0 0 20px;
}

.palans-inner .slider-box {
    border-radius: 29px;
    width: 80%;
    margin: 0 auto;
    height: 100%;
}

.palans-inner .slider-box .btn-secondary {
    background: #FFE500;
    color: #000;
}

.palans-inner .slider-box .btn-secondary:hover {
    background: #fff;
}

.palans-inner .slider-box.red-box .btn-secondary {
    background: #EC0E0E;
    color: #fff;
}

.palans-inner .slider-box.red-box .btn-secondary:hover,
.palans-inner .slider-box.blue-box .btn-secondary:hover {
    background: #000;
}

.palans-inner .slider-box.blue-box .btn-secondary {
    background: #0C8AFF;
    color: #fff;
}

.palans-inner-home-slider .slick-list {
    padding: 30px 0 !important;
}

.palans-inner-home-slider .slick-prev,
.palans-inner-home-slider .slick-next {
    width: 35px;
    height: 35px;
    border: 2px solid #CCCCCC;
    background-color: transparent;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #CCCCCC;
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1;
}

.palans-inner-home-slider .slick-next {
    right: -25px;
    left: auto;
}

.palans-inner-home-slider .slick-prev:hover,
.palans-inner-home-slider .slick-next:hover {
    color: #000;
    border-color: #000;
}

/* **** End Home Our Plans **** */


/* **** Home FAQ **** */

.faq {
    position: relative;
    width: 100%;
    margin: 0 0 40px;
}

.faq .hedding-box2 h2 {
    color: #35196E;
}

.faq .hedding-box2 p {
    color: #000;
}

.faq-box {
    background: #35196E;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    height: 100%;
}

.faq-box h2 {
    font-family: var(--font-app);
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 120%;
    text-align: center;
    color: #FCD529;
}

.faq-box p {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF;
    margin: 60px 0;
}

.faq-box .btn-blue {
    border: 1px solid #fff;
    margin: 0 auto;
}

.accordion-button,
.accordion-item .accordion-header .accordion-button {
    background: #35196E;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    text-transform: capitalize;
    color: #FFFFFF;
}

.accordion-item {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    margin: 0 0 20px;
}

.accordion-item:last-child {
    margin: 0;
}

.accordion-body {
    padding: 30px;
}

.accordion-button::after {
    background-image: url(../images/faq.png);
    background-position-y: 5px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/faq.png);
    background-position-y: 5px;
}


/* **** End Home FAQ **** */


/* **** Home Footer (matches guest layout .jg-site-footer) **** */

.home-page footer.jg-site-footer {
    --jg-footer-app-tan: #e2d1b3;
    width: 100%;
    position: relative;
    /* background: transparent; */
    /* background: linear-gradient(135deg, #35196e2b, #6DB3F2), url('../images/footer_bg.png'); */
    /* background: linear-gradient(263deg, #35196e63, #ffffffe0), url(../images/footer_bg.png); */
    background: linear-gradient(263deg, #d0c9dec2, #ffffffe0), url(../images/footer_bg.png);
    border-radius: 40px 40px 0 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(48px, 6vw, 72px) 0 0;
    font-family: var(--font-app);
}

.home-page footer.jg-site-footer .jg-footer-columns {
    padding-bottom: clamp(32px, 4vw, 48px);
}

.home-page footer.jg-site-footer .jg-footer-logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    /* background: var(--color-brand); */
    margin-bottom: 16px;
    text-decoration: none;
}

.home-page footer.jg-site-footer .jg-footer-logo-pill img {
    max-height: 72px;
    width: auto;
    display: block;
}

.home-page footer.jg-site-footer .jg-footer-tagline {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-brand);
    margin: 0 0 12px;
    line-height: 1.3;
}

.home-page footer.jg-site-footer .jg-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--color-brand) 42%, #6b7280);
    margin: 0;
    max-width: 428px;
}

.home-page footer.jg-site-footer .jg-footer-contact {
    padding: 0;
    margin: 16px 0 0;
}

.home-page footer.jg-site-footer .jg-footer-contact__item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.home-page footer.jg-site-footer .jg-footer-contact__item:last-child {
    margin-bottom: 0;
}

.home-page footer.jg-site-footer .jg-footer-contact__icon {
    color: var(--color-brand);
    width: 1.1em;
    text-align: center;
}

.home-page footer.jg-site-footer .jg-footer-contact__link {
    color: color-mix(in srgb, var(--color-brand) 42%, #6b7280);
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-page footer.jg-site-footer .jg-footer-contact__link:hover {
    color: var(--color-brand);
}

.home-page footer.jg-site-footer .jg-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.home-page footer.jg-site-footer .jg-footer-social li a {
    color: color-mix(in srgb, var(--color-brand) 55%, #6b7280);
    font-size: 20px;
    transition: color 0.2s ease;
}

.home-page footer.jg-site-footer .jg-footer-social li a:hover {
    color: var(--color-brand);
}

.home-page footer.jg-site-footer .jg-footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0 0 16px;
}

.home-page footer.jg-site-footer .jg-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-page footer.jg-site-footer .jg-footer-links li {
    margin: 0 0 10px;
}

.home-page footer.jg-site-footer .jg-footer-links li:last-child {
    margin-bottom: 0;
}

.home-page footer.jg-site-footer .jg-footer-links a {
    font-size: 14px;
    color: color-mix(in srgb, var(--color-brand) 38%, #6b7280);
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-page footer.jg-site-footer .jg-footer-links a:hover {
    color: var(--color-brand);
}

.home-page footer.jg-site-footer .jg-footer-store-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 220px;
}

.home-page footer.jg-site-footer .jg-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 999px;
    /* background: var(--jg-footer-app-tan); */
    background-color: #35196e17;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    color: var(--color-brand-deep);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: filter 0.2s ease, transform 0.15s ease;
}

.home-page footer.jg-site-footer .jg-store-btn:hover {
    filter: brightness(1.05);
    color: var(--color-brand-deep);
    transform: translateY(-1px);
}

.home-page footer.jg-site-footer .jg-store-btn i {
    font-size: 1.35rem;
}

.home-page footer.jg-site-footer .jg-footer-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0 28px;
    border-top: 1px solid color-mix(in srgb, var(--color-brand) 12%, transparent);
}

.home-page footer.jg-site-footer .jg-footer-copy {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-brand);
}

.home-page footer.jg-site-footer .jg-footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(12px, 3vw, 28px);
}

.home-page footer.jg-site-footer .jg-footer-legal a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-brand);
    text-decoration: none;
    white-space: nowrap;
}

.home-page footer.jg-site-footer .jg-footer-legal a:hover {
    text-decoration: underline;
}


/* **** End Home Footer **** */


/* **** Legal / CMS pages (Terms, Privacy Policy) — aligns with landing + pricing **** */

.tearms-conditions-page {
    position: relative;
    padding-bottom: clamp(2.75rem, 6vw, 4.5rem);
    font-family: var(--font-app);
    background:
        radial-gradient(ellipse 72% 50% at 12% -8%, rgba(124, 58, 237, 0.12), transparent 58%),
        radial-gradient(ellipse 60% 45% at 92% 65%, rgba(53, 25, 110, 0.08), transparent 52%),
        linear-gradient(180deg, var(--site-light) 0%, #ffffff 72%);
}

.tearms-container {
    max-width: min(920px, 94vw) !important;
}

.tearms-panel {
    margin-top: 70px;
    padding: clamp(1.85rem, 4vw, 2.85rem);
    border-radius: 28px;
    border: 1px solid rgba(53, 25, 110, 0.08);
    background:
        radial-gradient(ellipse 80% 45% at 50% -5%, rgba(124, 58, 237, 0.08), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 252, 255, 1) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 24px 56px rgba(53, 25, 110, 0.08),
        0 10px 24px rgba(26, 10, 64, 0.04);
}

.tearms-main-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.1rem;
    margin-bottom: clamp(1.35rem, 3vw, 2rem);
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(53, 25, 110, 0.1);
}

.tearms-main-title figure {
    margin: 0;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(124, 58, 237, 0.14);
    border: 1px solid rgba(53, 25, 110, 0.12);
}

.tearms-main-title figure img {
    width: 32px;
    height: auto;
}

.tearms-main-title h2 {
    margin: 0;
    font-weight: 700;
    font-size: clamp(1.45rem, 3.2vw, 2.05rem);
    line-height: 1.22;
    color: var(--color-brand);
    letter-spacing: -0.02em;
    text-align: center;
}

.tearms-inner {
    width: 100%;
    padding: 0 clamp(0rem, 1.8vw, 0.85rem);
}

.tearms-inner h1 {
    font-weight: 700;
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    line-height: 1.25;
    color: var(--color-brand);
    margin: 0 0 1.15rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(124, 58, 237, 0.22);
}

.tearms-inner h2 {
    font-weight: 700;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    line-height: 1.3;
    color: var(--color-brand);
    margin: 1.75rem 0 0.85rem;
    text-decoration: none;
}

.tearms-inner h3 {
    font-weight: 650;
    font-size: clamp(1.08rem, 2vw, 1.38rem);
    line-height: 1.35;
    color: var(--color-brand-mid);
    margin: 1.35rem 0 0.65rem;
    text-decoration: none;
}

.tearms-inner h4,
.tearms-inner h5,
.tearms-inner h6 {
    font-weight: 650;
    line-height: 1.35;
    color: #2a1459;
    margin: 1.1rem 0 0.55rem;
    text-decoration: none;
}

.tearms-inner h4 {
    font-size: 1.12rem;
}

.tearms-inner h5 {
    font-size: 1.06rem;
}

.tearms-inner h6 {
    font-size: 1rem;
}

.tearms-inner p {
    font-weight: 400;
    font-size: 0.9825rem;
    line-height: 1.75;
    color: var(--site-muted);
    margin: 0 0 0.95rem;
}

.tearms-inner ul li a,
.tearms-inner p a {
    color: var(--site-secondary);
    text-decoration-color: rgba(124, 58, 237, 0.45);
}

.tearms-inner ul li a:hover,
.tearms-inner p a:hover {
    color: var(--color-brand);
}

.tearms-inner ul {
    margin: 0 0 1.25rem;
    padding-left: 0;
    list-style: none;
}

.tearms-inner ul li {
    font-weight: 400;
    font-size: 0.9675rem;
    line-height: 1.7;
    color: var(--site-muted);
    position: relative;
    padding: 0.25rem 0 0.25rem 1.35rem;
}

.tearms-inner ul li::before {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--site-secondary), var(--color-brand));
    top: 0.72rem;
    left: 0;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}


/* **** End Tearms And Conditions Page **** */


/* **** Testimonial **** */

.testimonial {
    margin: 60px 0;
}

.testimonial-inner {
    background: #FFFFFF;
    box-shadow: 0px 9px 19px rgba(0, 0, 0, 0.13), inset 0px 0px 16px rgba(159, 159, 159, 0.4);
    border-radius: 40px;
    padding: 60px;
}

.testimonial-inner .hedding-box2 h2 {
    color: #35196E;
}

.testimonial .hedding-box2 p {
    color: #000;
}

.testimonial-slider-box figure {
    margin: 0;
    width: 180px;
    height: 180px;
    border-radius: 180px;
    overflow: hidden;
    margin: 0 auto;
}

.testimonial-slider-box figure img {
    width: 100%;
}

.testimonial-slider-box h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: #000000;
    margin: 20px 0;
}

.testimonial-slider-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slider-box ul li {
    font-size: 18px;
    color: #FFD600;
}

.testimonial-slider-box p {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%px;
    text-align: center;
    color: #000000;
    margin: 20px 0;
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    position: absolute;
    top: 30%;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    border: 2px solid #35196E;
    color: #35196E;
}

.testimonial-slider .slick-next {
    left: auto;
    right: 0;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots button {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    font-size: 0;
    background-color: #D9D9D9;
    border: 0;
    margin: 0 8px;
}

.slick-dots .slick-active button {
    background-color: #35196E;
}


/* **** End Testimonial **** */


/* **** Start Profile **** */
.profile-box {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #737272;
}
.profile-box h4 {
    text-align: left;
}
.profile-box h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    color: #35196E;
    margin: 0;
}

/* **** End Profile **** */

/* ***** Welcome Redesign (design-only) ***** */
.jg-home {
    --jg-primary: #35196E;
    --jg-secondary: #7c3aed;
    --jg-dark: #1a0a40;
    --jg-light: #f8f7ff;
    --jg-gold: #f7c948;
    --jg-text: #1f1437;
    color: var(--jg-text);
    background: #fff;
    overflow-x: clip;
}

/* Offset hero/content below fixed Paymt-style header */
.home-page .jg-home {
    padding-top: clamp(76px, 11vh, 104px);
}

.home-page > .tearms-conditions-page:not(.contact-page) {
    padding-top: clamp(72px, 10vh, 100px);
}

.home-page .jdu-contact-portal-hero {
    padding-top: calc(2.5rem + clamp(48px, 8vh, 80px));
}

@media (min-width: 992px) {
    .home-page .jdu-contact-portal-hero {
        padding-top: calc(3rem + clamp(48px, 8vh, 80px));
    }
}

.home-page .jg-home section[id] {
    scroll-margin-top: clamp(88px, 12vh, 116px);
}

.jg-home * {
    box-sizing: border-box;
}

.jg-container {
    width: min(1200px, 92vw);
    margin-inline: auto;
}

.jg-section {
    padding: clamp(65px, 8vw, 108px) 0;
}

.jg-title {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 2.9vw, 2.6rem);
    line-height: 1.2;
    color: var(--jg-primary);
}

.jg-subtitle {
    margin: 0;
    color: rgba(31, 20, 55, 0.75);
    line-height: 1.8;
}

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

.jg-section-btn-row {
    margin-top: 26px;
}

.jg-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: all .3s ease;
    text-decoration: none;
}

.jg-btn-primary {
    background: linear-gradient(135deg, var(--jg-primary), var(--jg-secondary));
    color: #fff;
    box-shadow: 0 8px 24px rgba(53, 25, 110, 0.2);
}

.jg-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
}

.jg-btn-outline {
    background: #fff;
    color: var(--jg-primary);
    border-color: rgba(53, 25, 110, 0.28);
}

.jg-btn-outline:hover {
    color: var(--jg-primary);
    border-color: var(--jg-primary);
}

.jg-hero {
    min-height: calc(100vh - 78px);
    display: grid;
    place-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(56px, 10vw, 88px) 0 72px;
    /* Paymt-style: soft lavender → white, no heavy “panel” block */
    background:
        radial-gradient(ellipse 85% 65% at 15% 20%, rgba(196, 181, 253, 0.45), transparent 58%),
        radial-gradient(ellipse 70% 55% at 88% 75%, rgba(208, 201, 222, 0.5), transparent 55%),
        radial-gradient(ellipse 60% 45% at 50% 100%, rgba(237, 233, 254, 0.85), transparent 52%),
        linear-gradient(165deg, #ede9fe 0%, #f5f3ff 28%, #fafafa 62%, #ffffff 100%);
}

.jg-floating-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: jg-float 12s ease-in-out infinite;
    z-index: 0;
    opacity: 0.85;
    filter: blur(72px);
}

.jg-floating-shape.one {
    width: min(380px, 55vw);
    height: min(380px, 55vw);
    left: -12%;
    top: -8%;
    background: #a78bfa;
}

.jg-floating-shape.two {
    width: min(320px, 48vw);
    height: min(320px, 48vw);
    right: -6%;
    bottom: 5%;
    background: #c4b5fd;
    animation-delay: 1.2s;
}

.jg-floating-shape.three {
    width: min(260px, 40vw);
    height: min(260px, 40vw);
    right: 28%;
    top: 15%;
    background: #ddd6fe;
    animation-delay: 0.55s;
}

@keyframes jg-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-22px); }
}

.jg-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 34px;
    position: relative;
    z-index: 1;
}

.jg-hero-content h1 {
    color: var(--jg-primary);
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 4rem);
    line-height: 1.08;
}

.jg-gradient-word {
    background: linear-gradient(120deg, var(--jg-primary), #7c3aed, #a78bfa);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.jg-hero-content ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 14px;
    padding: 0;
}

.jg-hero-content ul li {
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--jg-primary) 18%, #e9e4f7);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 4px 14px rgba(53, 25, 110, 0.06);
    color: var(--jg-primary);
    padding: 7px 14px;
    font-weight: 500;
}

.jg-hero-content p {
    color: color-mix(in srgb, var(--jg-text) 82%, #64748b);
    line-height: 1.8;
    margin: 0 0 26px;
}

.jg-phone-wrap {
    max-width: 430px;
    margin-inline: auto;
    position: relative;
}

.jg-phone-wrap img {
    width: 100%;
    filter: drop-shadow(0 28px 48px rgba(53, 25, 110, 0.18));
}

.jg-floating-card {
    position: absolute;
    right: -28px;
    top: 18%;
    border-radius: 22px;
    background: #fff;
    color: var(--jg-text);
    border: 1px solid rgba(53, 25, 110, 0.08);
    box-shadow:
        0 22px 44px rgba(53, 25, 110, 0.12),
        0 6px 14px rgba(53, 25, 110, 0.06);
    padding: 16px 18px;
    min-width: 190px;
    animation: jg-bob 3.5s ease-in-out infinite;
}

.jg-floating-card small {
    display: block;
    color: rgba(31, 20, 55, 0.7);
}

@keyframes jg-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-13px); }
}

.jg-partners {
    background: var(--jg-light);
}

.jg-logo-track {
    margin-top: 26px;
    overflow: hidden;
}

.jg-logo-row {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: jg-scroll 28s linear infinite;
}

@keyframes jg-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.jg-logo-card {
    width: 180px;
    min-height: 110px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    border: 1px solid rgba(53, 25, 110, 0.1);
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 8px 26px rgba(53, 25, 110, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.95) inset;
    transition: 0.3s ease;
}

.jg-logo-card:hover {
    border-color: var(--jg-primary);
    transform: translateY(-4px);
    box-shadow: 0 14px 24px rgba(53, 25, 110, 0.15);
}

.jg-logo-card img {
    max-height: 55px;
    width: auto;
}

.jg-achievement {
    background: var(--jg-primary);
    position: relative;
}

.jg-achievement::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.2;
}

.jg-achievement-inner {
    position: relative;
    z-index: 1;
}

.jg-achievement .jg-title {
    color: #fff;
    text-align: center;
}

.jg-achievement-grid {
    margin-top: 34px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.jg-stat {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-align: center;
    padding: 24px;
}

.jg-stat h3 {
    margin: 0 0 8px;
    color: var(--jg-gold);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.jg-stat p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.jg-benefit-grid {
    margin-top: 30px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.jg-benefit-card {
    border-radius: 16px;
    border: 1px solid #35196E20;
    background: #fff;
    min-height: 170px;
    padding: 22px 18px;
    transition: all .3s ease;
}

.jg-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 26px rgba(53, 25, 110, 0.12);
}

.jg-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--jg-primary), var(--jg-secondary));
    display: grid;
    place-items: center;
    margin-bottom: 12px;
}

.jg-benefit-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.jg-benefit-card h3 {
    margin: 0;
    color: #2c1459;
    font-size: 1.05rem;
}

.jg-split {
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(148deg, #6d4dc4 0%, var(--jg-primary) 38%, var(--jg-secondary) 100%);
}

.jg-split::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 60% at 18% 45%, rgba(255, 255, 255, 0.11) 0%, transparent 58%),
        radial-gradient(ellipse 55% 50% at 90% 72%, rgba(186, 230, 253, 0.1) 0%, transparent 52%);
}

.jg-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
    position: relative;
    z-index: 1;
}

.jg-split-col--copy {
    position: relative;
    padding: clamp(0.5rem, 2vw, 1rem) 0;
}

.jg-split-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.6rem;
    padding: 0.32rem 0.85rem 0.32rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}

.jg-split-kicker__pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6ee7b7;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    .jg-split-kicker__pulse {
        animation: none;
    }
}

.jg-split-title {
    margin: 0 0 0.2rem;
    font-size: clamp(1.85rem, 4.2vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
}

.jg-split-premium__visual .jg-orb-wrap::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(196, 181, 253, 0.22) 50%, transparent 72%);
    filter: blur(24px);
}

/* Rotator row: clean glass (no dark slab, no rainbow ring) */
.jg-split .jg-gateway-rotator-shell {
    max-width: 100%;
    position: relative;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.35rem);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 24px rgba(30, 20, 60, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.jg-split .jg-gateway-rotator-shell::-webkit-scrollbar {
    display: none;
}

.jg-split .jg-gateway-rotator-shell::before {
    display: none;
}

.jg-split--premium .jg-btn-row {
    margin-top: 0.35rem;
}

.jg-split--premium .jg-btn-primary {
    background: #fff;
    color: #4c1d95;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 6px 20px rgba(30, 20, 60, 0.12);
}

.jg-split--premium .jg-btn-primary:hover {
    color: #4c1d95;
    background: #f8fafc;
    box-shadow: 0 8px 24px rgba(30, 20, 60, 0.15);
}

.jg-split--premium .jg-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.jg-split--premium .jg-btn-outline:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.jg-section.jg-split--premium {
    padding: clamp(72px, 9.5vw, 120px) 0;
}

.jg-title-white,
.jg-subtitle-white {
    color: #fff;
}

.jg-subtitle-white {
    color: rgba(255, 255, 255, 0.88);
}

/* Gateway subtitle — vertical rotating keywords (UPI landing) */
.jg-gateway-rotator {
    --jg-rot-word-fs: clamp(1.22rem, 3.15vw, 1.92rem);
    --jg-rot-line: calc(var(--jg-rot-word-fs) * 1.42);
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35em 0.45em;
    max-width: 100%;
    width: 100%;
    font-size: clamp(1.02rem, 2.35vw, 1.28rem);
    line-height: var(--jg-rot-line);
    white-space: nowrap;
}

.jg-gateway-rotator__prefix,
.jg-gateway-rotator__suffix {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    line-height: var(--jg-rot-line);
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    text-transform: none;
    font-size: clamp(0.98rem, 2.25vw, 1.18rem);
    letter-spacing: 0.01em;
}

.jg-gateway-rotator__suffix {
    margin-left: -0.12em;
}

.jg-gateway-rotator__slot {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    flex-shrink: 0;
    min-width: 0;
}

.jg-gateway-rotator__viewport {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: var(--jg-rot-line);
    min-height: var(--jg-rot-line);
    width: var(--jg-rot-viewport-w, auto);
    min-width: 0;
    flex-shrink: 0;
    text-align: left;
    vertical-align: middle;
}

.jg-gateway-rotator__word {
    position: absolute;
    left: 0;
    top: 50%;
    margin: 0;
    padding: 0;
    font-weight: 700;
    font-size: var(--jg-rot-word-fs);
    line-height: 1.15;
    letter-spacing: -0.02em;
    white-space: nowrap;
    transform-origin: 0 50%;
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.58s ease;
}

.jg-gateway-rotator__word--no-trans {
    transition: none !important;
}

/* Vertical carousel: anchored to mid-line so words align with “One UPI gateway for” */
.jg-gateway-rotator__word.pos-below {
    transform: translateY(calc(-50% + 115%));
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.jg-gateway-rotator__word.pos-center {
    transform: translateY(-50%);
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.jg-gateway-rotator__word.pos-above {
    transform: translateY(calc(-50% - 115%));
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* Neon outline + soft glow (cyan accent on brand purple — same vibe as reference) */
.jg-gateway-rotator__word--apps {
    color: transparent;
    -webkit-text-fill-color: rgba(226, 254, 255, 0.12);
    -webkit-text-stroke: 1.4px rgba(190, 242, 255, 0.92);
    paint-order: stroke fill;
    text-shadow:
        0 0 18px rgba(34, 211, 238, 0.45),
        0 0 36px rgba(167, 139, 250, 0.25);
}

.jg-gateway-rotator__word--software {
    color: transparent;
    -webkit-text-fill-color: rgba(207, 250, 254, 0.1);
    -webkit-text-stroke: 1.4px rgba(103, 232, 249, 0.95);
    text-shadow:
        0 0 20px rgba(56, 189, 248, 0.5),
        0 0 40px rgba(99, 102, 241, 0.2);
}

.jg-gateway-rotator__word--web {
    color: transparent;
    -webkit-text-fill-color: rgba(204, 251, 241, 0.1);
    -webkit-text-stroke: 1.4px rgba(94, 234, 212, 0.92);
    text-shadow:
        0 0 18px rgba(45, 212, 191, 0.45),
        0 0 32px rgba(34, 211, 238, 0.2);
}

.jg-gateway-rotator__word--ngo {
    color: transparent;
    -webkit-text-fill-color: rgba(250, 232, 255, 0.08);
    -webkit-text-stroke: 1.4px rgba(232, 121, 249, 0.9);
    text-shadow:
        0 0 20px rgba(244, 114, 182, 0.4),
        0 0 36px rgba(167, 139, 250, 0.25);
}

.jg-gateway-rotator__word--shop {
    color: transparent;
    -webkit-text-fill-color: rgba(254, 249, 195, 0.1);
    -webkit-text-stroke: 1.4px rgba(251, 191, 36, 0.9);
    text-shadow:
        0 0 18px rgba(251, 191, 36, 0.4),
        0 0 30px rgba(244, 114, 182, 0.18);
}

/* Premium: crisp gradient keywords — no blur filters (stays sharp while animating) */
.jg-split--premium .jg-gateway-rotator__prefix {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.jg-split--premium .jg-gateway-rotator__word--apps,
.jg-split--premium .jg-gateway-rotator__word--software,
.jg-split--premium .jg-gateway-rotator__word--web,
.jg-split--premium .jg-gateway-rotator__word--ngo,
.jg-split--premium .jg-gateway-rotator__word--shop {
    -webkit-text-stroke: 0;
    paint-order: normal;
    text-shadow: none;
}

.jg-split--premium .jg-gateway-rotator__word--apps {
    background-image: linear-gradient(95deg, #fffef5 0%, #fde68a 35%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.jg-split--premium .jg-gateway-rotator__word--software {
    background-image: linear-gradient(95deg, #f0fdfa 0%, #99f6e4 40%, #2dd4bf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.jg-split--premium .jg-gateway-rotator__word--web {
    background-image: linear-gradient(95deg, #ecfdf5 0%, #86efac 38%, #22c55e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.jg-split--premium .jg-gateway-rotator__word--ngo {
    background-image: linear-gradient(95deg, #fdf4ff 0%, #e9d5ff 35%, #c084fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.jg-split--premium .jg-gateway-rotator__word--shop {
    background-image: linear-gradient(95deg, #fff7ed 0%, #fed7aa 35%, #fb923c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

@supports not ((-webkit-text-stroke: 1px transparent)) {
    .jg-gateway-rotator__word--apps,
    .jg-gateway-rotator__word--software,
    .jg-gateway-rotator__word--web,
    .jg-gateway-rotator__word--ngo,
    .jg-gateway-rotator__word--shop {
        -webkit-text-stroke: 0 transparent;
        text-shadow: 0 0 20px rgba(103, 232, 249, 0.55);
        color: #a5f3fc;
        -webkit-text-fill-color: currentColor;
    }

    .jg-gateway-rotator__word--software {
        color: #67e8f9;
    }

    .jg-gateway-rotator__word--web {
        color: #5eead4;
    }

    .jg-gateway-rotator__word--ngo {
        color: #f0abfc;
    }

    .jg-gateway-rotator__word--shop {
        color: #fcd34d;
    }
}

@media (max-width: 991.98px) {
    .jg-split--premium .jg-gateway-rotator {
        --jg-rot-word-fs: clamp(1rem, 2.6vw, 1.55rem);
        font-size: clamp(0.92rem, 2.1vw, 1.1rem);
    }

    .jg-split--premium .jg-gateway-rotator__prefix {
        font-size: clamp(0.9rem, 2vw, 1.05rem);
    }
}

@media (max-width: 575.98px) {
    .jg-gateway-rotator {
        flex-wrap: nowrap;
        gap: 0.28em 0.38em;
        --jg-rot-word-fs: clamp(0.92rem, 4vw, 1.2rem);
        font-size: clamp(0.82rem, 3.6vw, 0.95rem);
    }

    .jg-gateway-rotator__prefix {
        font-size: clamp(0.8rem, 3.4vw, 0.9rem);
    }

    .jg-gateway-rotator__viewport {
        width: var(--jg-rot-viewport-w, auto);
    }
}

@media (prefers-reduced-motion: reduce) {
    .jg-gateway-rotator__word {
        transition: none !important;
    }

    .jg-gateway-rotator__word.pos-below,
    .jg-gateway-rotator__word.pos-above {
        opacity: 0;
        visibility: hidden;
    }

    .jg-gateway-rotator__word.pos-center {
        transform: translateY(-50%);
        opacity: 1;
        visibility: visible;
    }
}

.jg-bullets {
    margin: 22px 0 24px;
    list-style: none;
    display: grid;
    gap: 11px;
    padding: 0;
}

.jg-bullets li {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 11px 14px;
}

.jg-orb-wrap {
    text-align: center;
    position: relative;
}

.jg-orb-wrap::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: rgba(196, 181, 253, 0.56);
    filter: blur(22px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.jg-orb-wrap img {
    position: relative;
    z-index: 1;
    max-width: min(100%, 100%);
}

.jg-api {
    background: var(--jg-light);
}

.jg-api-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.jg-api-diagram {
    width: min(420px, 100%);
    margin-inline: auto;
    aspect-ratio: 1/1;
    border-radius: 999px;
    border: 2px dashed rgba(53, 25, 110, 0.34);
    position: relative;
    display: grid;
    place-items: center;
}

.jg-api-node {
    position: absolute;
    border-radius: 999px;
    background: #fff;
    color: var(--jg-primary);
    border: 1px solid rgba(53, 25, 110, 0.2);
    box-shadow: 0 8px 18px rgba(53, 25, 110, 0.12);
    padding: 10px 15px;
    font-weight: 700;
}

.jg-node-app {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
}

.jg-node-upi {
    right: 5%;
    top: 49%;
    transform: translateY(-50%);
}

.jg-node-bank {
    left: 7%;
    bottom: 8%;
}

.jg-lock {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(53, 25, 110, 0.12);
    color: var(--jg-primary);
}

.jg-lock.lock-1 {
    left: 10%;
    top: 8%;
}

.jg-lock.lock-2 {
    right: 9%;
    bottom: 10%;
}

.jg-api-image {
    width: 44%;
    max-width: 180px;
}

.jg-testimonial {
    background:
        radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.12), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(53, 25, 110, 0.1), transparent 42%),
        #fff;
}

.jg-testimonial-wrap {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    align-items: center;
    gap: 14px;
}

.jg-nav-arrow {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(53, 25, 110, .25);
    background: #fff;
    color: var(--jg-primary);
}

.jg-t-card {
    padding: clamp(22px, 4vw, 34px);
    text-align: center;
    border-radius: 18px;
    border: 1px solid rgba(53, 25, 110, 0.15);
    box-shadow: 0 8px 32px rgba(53, 25, 110, 0.15);
    background: rgba(255, 255, 255, 0.8);
}

.jg-t-avatar {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    margin: 0 auto 10px;
    border: 4px solid #a78bfa;
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.22);
    display: grid;
    place-items: center;
}

.jg-t-avatar img {
    width: 74px;
    height: 74px;
    border-radius: 999px;
}

.jg-t-card h3 {
    margin: 0;
}

.jg-stars {
    color: var(--jg-gold);
    margin: 8px 0 10px;
}

.jg-t-card p {
    margin: 0;
    line-height: 1.8;
}

.jg-faq-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 24px;
    align-items: start;
}

.jg-help-box {
    border-radius: 22px;
    background: linear-gradient(148deg, var(--jg-secondary) 0%, var(--jg-primary) 48%, var(--color-brand-deep) 100%);
    color: #fff;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 20px 42px rgba(53, 25, 110, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.jg-help-box h3 {
    margin-top: 0;
}

.jg-help-box p {
    line-height: 1.8;
}

.jg-help-btn {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
}

.jg-help-btn:hover {
    color: #fff;
}

.jg-accordion-item {
    border-radius: 18px;
    border: 1px solid rgba(53, 25, 110, 0.1);
    background: #fff;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow:
        0 4px 18px rgba(53, 25, 110, 0.05),
        0 1px 0 rgba(255, 255, 255, 1) inset;
}

.jg-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    border: none;
    background: #fff;
    color: var(--jg-primary);
    font-weight: 500;
    padding: 16px 18px;
    cursor: pointer;
}

.jg-accordion-q {
    flex: 1;
    text-align: left;
}

.jg-accordion-toggle {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--jg-primary);
    transition: transform 0.3s ease;
}

.jg-accordion-btn.active .jg-accordion-toggle {
    transform: rotate(180deg);
}

.jg-accordion-btn.active {
    border-left: 4px solid var(--jg-primary);
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.1), rgba(255, 255, 255, 1));
}

.jg-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 18px;
    color: rgba(31, 20, 55, 0.8);
    line-height: 1.7;
}

.jg-accordion-content p {
    margin: 0;
    padding-bottom: 16px;
}

.jg-accordion-open {
    max-height: 320px;
}

@media (max-width: 1024px) {
    .jg-hero-grid,
    .jg-split-grid,
    .jg-api-grid,
    .jg-faq-grid {
        grid-template-columns: 1fr;
    }

    .jg-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jg-achievement-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .jg-btn {
        width: 100%;
    }

    .jg-hero .jg-btn {
        width: auto;
    }

    .jg-hero {
        min-height: unset;
        padding-bottom: 56px;
    }

    .jg-floating-card {
        right: 8px;
        top: 10%;
        min-width: 158px;
        padding: 12px 14px;
    }

    .jg-benefit-grid {
        grid-template-columns: 1fr;
    }

    .jg-testimonial-wrap {
        grid-template-columns: 1fr;
    }
}

/* ----- Page polish (home landing sections); header overrides consolidated above ----- */

.jg-benefit-grid {
    gap: 20px;
}

.jg-benefit-card {
    border-radius: 18px;
    border: 1px solid #e7e9f0;
    box-shadow: 0 8px 18px rgba(11, 21, 54, 0.06);
    padding: 28px 22px 20px;
    position: relative;
}

.jg-benefit-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--jg-primary), var(--jg-secondary));
    border-radius: 0 0 18px 18px;
    opacity: 0;
    transition: opacity .25s ease;
}

.jg-benefit-card:hover::after {
    opacity: 1;
}

.jg-benefit-icon {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 5px solid #fff;
    box-shadow: 0 10px 18px rgba(53, 25, 110, 0.15);
    margin-top: -44px;
    margin-bottom: 14px;
    background: linear-gradient(145deg, var(--jg-primary), var(--jg-secondary));
}

.jg-benefit-card h3 {
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--jg-primary);
    margin-bottom: 10px;
}

.jg-benefit-card p {
    margin-bottom: 14px;
    color: #69728d;
    font-size: .94rem;
    line-height: 1.7;
}

.jg-benefit-card a {
    color: var(--jg-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.jg-testimonial {
    background: linear-gradient(155deg, var(--jg-primary) 0%, #2a1458 55%, #1e1045 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.jg-testimonial::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 35%);
    pointer-events: none;
}

.jg-testimonial .jg-title {
    color: #fff;
    margin-bottom: 4px;
}

.jg-testimonial-tag {
    color: #b1bde8;
    margin: 0 0 8px;
    font-weight: 500;
}

.jg-testimonial-heading {
    margin: 0 0 28px;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.jg-testimonial-heading span {
    color: var(--jg-gold);
}

.jg-testimonial-slider {
    display: block;
}

.jg-slide-item {
    margin: 0 9px;
}

.jg-t-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
    text-align: left;
    color: #d8e0ff;
}

.jg-t-card h3 {
    color: #fff;
    margin-bottom: 6px;
}

.jg-t-card h4 {
    margin: 14px 0 0;
    font-size: .92rem;
    color: #9fb0f5;
    font-weight: 500;
}

.jg-stars {
    margin: 0 0 10px;
}

.jg-t-avatar {
    margin: 0 0 12px;
    width: 62px;
    height: 62px;
    border-width: 2px;
    box-shadow: none;
}

.jg-t-avatar img {
    width: 56px;
    height: 56px;
}

.jg-testimonial-slider .slick-list {
    margin: 0 -9px;
}

.jg-testimonial-slider .slick-dots {
    margin-top: 22px;
    display: flex !important;
    justify-content: center;
    gap: 8px;
}

.jg-testimonial-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.jg-testimonial-slider .slick-dots button {
    width: 32px;
    height: 5px;
    border-radius: 999px;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, .3);
}

.jg-testimonial-slider .slick-dots .slick-active button {
    background: linear-gradient(90deg, var(--jg-secondary), var(--jg-primary));
}

@media (max-width: 991px) {
    .home-page header.jg-site-header .navbar {
        border-radius: 18px;
    }

    .home-page header.jg-site-header {
        padding-top: 8px;
    }
}

/* =============================================================================
   Contact page (guest) — backend palette, unique “portal” layout
   Lead capture modal — matches brand tokens from :root
   ============================================================================= */

/* --- Contact: full-width hero (dashboard purple → admin accent) --- */
.jdu-contact-page--portal {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    font-family: var(--font-app);
    background: linear-gradient(180deg, var(--site-light) 0%, #fdfcff 42%, #f6f8fc 100%);
}

.jdu-contact-portal-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg,
        var(--color-brand-deep) 0%,
        var(--color-brand) 42%,
        var(--site-violet-mid) 78%,
        var(--site-secondary) 110%);
    padding: 2.5rem 0 4.25rem;
}

@media (min-width: 992px) {
    .jdu-contact-portal-hero {
        padding: 3rem 0 5rem;
    }
}

.jdu-contact-portal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 255, 255, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(13, 52, 116, 0.35) 0%, transparent 50%);
    pointer-events: none;
}

.jdu-contact-portal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        linear-gradient(90deg, #fff 1px, transparent 1px),
        linear-gradient(#fff 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.jdu-contact-portal-hero .jdu-contact-hero {
    position: relative;
    z-index: 1;
}

.jdu-contact-page--portal .jdu-contact-eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.jdu-contact-page--portal .jdu-contact-title {
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

.jdu-contact-page--portal .jdu-contact-lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 38rem;
}

.jdu-contact-portal-main {
    position: relative;
    z-index: 2;
    margin-top: -2.75rem;
    padding-bottom: 3.5rem;
}

@media (min-width: 992px) {
    .jdu-contact-portal-main {
        margin-top: -3.25rem;
        padding-bottom: 4rem;
    }
}

.jdu-contact-page--portal .jdu-contact-card {
    --jdu-brand-soft: color-mix(in srgb, var(--color-brand) 10%, transparent);
    border-radius: 22px;
    box-shadow:
        0 20px 50px rgba(53, 25, 110, 0.1),
        0 4px 14px rgba(53, 25, 110, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(53, 25, 110, 0.08);
}

.jdu-contact-page--portal .jdu-contact-card--aside .jdu-contact-card__accent {
    height: 4px;
    background: linear-gradient(90deg,
        var(--color-brand-deep),
        var(--color-brand),
        var(--site-secondary));
}

.jdu-contact-page--portal .jdu-contact-card--form {
    border-left: 4px solid var(--color-brand);
}

.jdu-contact-page--portal .jdu-contact-info__icon {
    background: linear-gradient(145deg,
        rgba(124, 58, 237, 0.12),
        rgba(53, 25, 110, 0.1));
    color: var(--color-brand);
}

.jdu-contact-page--portal .jdu-contact-info__value:hover {
    color: var(--site-secondary);
}

.jdu-contact-page--portal .jdu-contact-input:focus,
.jdu-contact-page--portal .jdu-contact-textarea:focus {
    border-color: rgba(124, 58, 237, 0.55);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
}

.jdu-contact-page--portal .jdu-contact-submit {
    border-radius: 999px;
    background: linear-gradient(135deg,
        var(--color-brand-mid) 0%,
        var(--color-brand) 45%,
        var(--site-violet-mid) 100%);
    box-shadow:
        0 10px 28px rgba(53, 25, 110, 0.28),
        0 4px 12px rgba(124, 58, 237, 0.15);
}

.jdu-contact-page--portal .jdu-contact-submit:hover {
    box-shadow:
        0 14px 34px rgba(53, 25, 110, 0.35),
        0 6px 16px rgba(124, 58, 237, 0.2);
}

/* --- Shared contact form tokens (fallback if not portal) --- */
.jdu-contact-page {
    --jdu-text: #1d2635;
    --jdu-muted: #5c6473;
    --jdu-radius: 22px;
    --jdu-shadow: 0 16px 44px rgba(53, 25, 110, 0.08);
    font-family: var(--font-app);
}

.jdu-contact-page:not(.jdu-contact-page--portal) {
    background: linear-gradient(180deg, var(--site-light) 0%, #ffffff 55%, #f6f8fc 100%);
}

.jdu-contact-page:not(.jdu-contact-page--portal) .jdu-contact-card {
    --jdu-brand-soft: color-mix(in srgb, var(--color-brand) 8%, transparent);
}

.jdu-contact-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-brand);
    background: color-mix(in srgb, var(--color-brand) 8%, transparent);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.jdu-contact-title {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 700;
    color: var(--jdu-text);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.jdu-contact-lead {
    font-size: 1.05rem;
    color: var(--jdu-muted);
    max-width: 36rem;
}

.jdu-contact-card {
    position: relative;
    background: #fff;
    border-radius: var(--jdu-radius);
    box-shadow: var(--jdu-shadow);
    border: 1px solid color-mix(in srgb, var(--color-brand) 6%, transparent);
    overflow: hidden;
}

.jdu-contact-card--aside .jdu-contact-card__accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg,
        var(--color-brand-deep),
        var(--color-brand),
        var(--site-secondary));
}

.jdu-contact-card__inner {
    padding: 1.75rem 1.75rem 2rem;
}

@media (min-width: 992px) {
    .jdu-contact-card__inner {
        padding: 2rem 2rem 2.25rem;
    }
}

.jdu-contact-card__heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--jdu-text);
    margin-bottom: 1rem;
}

.jdu-contact-card__text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--jdu-muted);
    margin-bottom: 0.85rem;
}

.jdu-contact-card__text--muted {
    font-size: 0.9rem;
    opacity: 0.92;
}

.jdu-contact-info {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.jdu-contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(29, 38, 53, 0.08);
}

.jdu-contact-info__item:first-of-type {
    border-top: none;
    padding-top: 0;
}

.jdu-contact-info__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg,
        color-mix(in srgb, var(--color-brand) 8%, transparent),
        color-mix(in srgb, var(--color-brand-mid) 12%, transparent));
    color: var(--color-brand);
    font-size: 1rem;
}

.jdu-contact-info__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--jdu-muted);
    margin-bottom: 0.2rem;
}

.jdu-contact-info__value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--jdu-text);
    text-decoration: none;
    word-break: break-word;
    transition: color 0.2s ease;
}

.jdu-contact-info__value:hover {
    color: var(--color-brand);
}

.jdu-contact-form-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--jdu-text);
    margin-bottom: 0.35rem;
}

.jdu-contact-form-sub {
    font-size: 0.9rem;
    color: var(--jdu-muted);
    margin-bottom: 1.5rem;
}

.jdu-contact-alert {
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #1b5e20;
    font-weight: 500;
}

.jdu-contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--jdu-text);
    margin-bottom: 0.4rem;
}

.jdu-contact-input,
.jdu-contact-textarea {
    border-radius: 12px;
    border: 1px solid rgba(29, 38, 53, 0.12);
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.jdu-contact-input:focus,
.jdu-contact-textarea:focus {
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-brand) 10%, transparent);
    outline: none;
}

.jdu-contact-textarea {
    min-height: 140px;
    resize: vertical;
}

.jdu-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    background: linear-gradient(135deg,
        var(--color-brand-mid) 0%,
        var(--color-brand) 42%,
        var(--site-violet-mid) 100%);
    box-shadow: 0 8px 24px rgba(53, 25, 110, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jdu-contact-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(53, 25, 110, 0.4);
    color: #fff;
}

.jdu-contact-submit:active {
    transform: translateY(0);
}

/* --- Lead modal --- */
.jdu-lead-modal__dialog {
    max-width: 440px;
}

.jdu-lead-modal {
    --jdu-brand-soft: color-mix(in srgb, var(--color-brand) 12%, transparent);
    font-family: var(--font-app);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 24px 64px rgba(29, 38, 53, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.jdu-lead-modal__header {
    position: relative;
    padding: 1.75rem 1.5rem 1.5rem;
    background: linear-gradient(145deg,
        var(--color-brand-mid) 0%,
        var(--color-brand) 40%,
        var(--site-violet-mid) 88%);
    color: #fff;
}

.jdu-lead-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0.85;
    filter: brightness(0) invert(1);
}

.jdu-lead-modal__close:hover {
    opacity: 1;
}

.jdu-lead-modal__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.65rem;
}

.jdu-lead-modal__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
    color: #fff;
}

.jdu-lead-modal__subtitle {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.92;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.jdu-lead-modal__highlight {
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.45);
    text-underline-offset: 3px;
}

.jdu-lead-modal__body {
    padding: 1.5rem 1.5rem 1.75rem;
    background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}

.jdu-lead-modal__alert {
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
}

.jdu-lead-modal__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1d2635;
    margin-bottom: 0.35rem;
}

.jdu-lead-modal__input,
.jdu-lead-modal__textarea {
    border-radius: 12px;
    border: 1px solid rgba(29, 38, 53, 0.12);
    padding: 0.6rem 0.9rem;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.jdu-lead-modal__input:focus,
.jdu-lead-modal__textarea:focus {
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px var(--jdu-brand-soft);
    outline: none;
}

.jdu-lead-modal__textarea {
    resize: vertical;
    min-height: 100px;
}

.jdu-lead-modal__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--color-brand-mid), var(--site-violet-mid));
    box-shadow: 0 8px 20px rgba(53, 25, 110, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jdu-lead-modal__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(53, 25, 110, 0.38);
    color: #fff;
}

/* --- Pricing section (landing) — matches site palette: --jg-primary, --jg-secondary --- */
.jg-pricing .jg-pricing-panel {
    background:
        radial-gradient(ellipse 70% 60% at 50% -10%, rgba(124, 58, 237, 0.12), transparent 55%),
        linear-gradient(180deg, rgba(248, 247, 255, 1) 0%, rgba(255, 255, 255, 0.94) 100%);
    border: 1px solid rgba(53, 25, 110, 0.08);
    border-radius: 28px;
    padding: clamp(2rem, 4.5vw, 3rem) clamp(1.35rem, 3.5vw, 2.5rem) clamp(1.65rem, 3vw, 2.35rem);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 24px 48px rgba(53, 25, 110, 0.08),
        0 8px 20px rgba(26, 10, 64, 0.04);
}

.jg-pricing-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.jg-pricing-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    font-weight: 700;
    color: var(--jg-dark);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.jg-pricing-lead {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(31, 20, 55, 0.62);
}

.jg-pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-top: 1.5rem;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(53, 25, 110, 0.1);
    box-shadow: 0 6px 20px rgba(53, 25, 110, 0.06);
}

.jg-pricing-toggle-btn {
    cursor: pointer;
    border: none;
    padding: 0.55rem 1.35rem;
    font-family: var(--font-app);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    background: transparent;
    color: rgba(31, 20, 55, 0.45);
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.jg-pricing-toggle-btn.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--jg-secondary), var(--jg-primary));
    box-shadow: 0 8px 24px rgba(53, 25, 110, 0.28);
}

.jg-pricing-toggle-btn:not(.is-active):hover {
    color: var(--jg-primary);
}

.jg-pricing-billed-note {
    margin: 1rem 0 0;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(31, 20, 55, 0.55);
}

.jg-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.6vw, 1.85rem);
    align-items: start;
}

.jg-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(1.45rem, 3vw, 1.95rem);
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(53, 25, 110, 0.1);
    box-shadow:
        0 4px 22px rgba(53, 25, 110, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jg-price-card:hover {
    box-shadow:
        0 12px 36px rgba(53, 25, 110, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.jg-price-card--featured {
    transform: translateY(-10px) scale(1.03);
    z-index: 2;
    border: none;
    background: linear-gradient(148deg, #6d4dc4 0%, var(--jg-primary) 38%, var(--jg-secondary) 100%);
    box-shadow:
        0 28px 56px rgba(53, 25, 110, 0.35),
        0 12px 32px rgba(76, 29, 149, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.jg-price-type-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    padding: 0.38rem 0.72rem;
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    line-height: 1;
}

.jg-price-type-badge--free {
    color: #047857;
    background: #ecfdf5;
    border: 1px solid rgba(5, 150, 105, 0.25);
}

.jg-price-type-badge--paid {
    color: var(--jg-primary);
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(53, 25, 110, 0.15);
}

.jg-price-card--featured .jg-price-type-badge--free,
.jg-price-card--featured .jg-price-type-badge--paid {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.jg-price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    padding: 0.38rem 0.72rem;
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.jg-price-card:not(.jg-price-card--featured) .jg-price-badge {
    color: var(--jg-primary);
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(53, 25, 110, 0.12);
}

.jg-price-top {
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 1.75rem;
}

.jg-price-details {
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
    list-style: none;
    border-radius: 14px;
    background: rgba(53, 25, 110, 0.04);
    border: 1px solid rgba(53, 25, 110, 0.08);
}

.jg-price-card--featured .jg-price-details {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.jg-price-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.55rem;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: rgba(31, 20, 55, 0.82);
}

.jg-price-details li:last-child {
    margin-bottom: 0;
}

.jg-price-card--featured .jg-price-details li {
    color: rgba(255, 255, 255, 0.95);
}

.jg-price-details li strong {
    font-weight: 700;
}

.jg-price-features-title {
    margin: 0 0 0.65rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(31, 20, 55, 0.45);
}

.jg-price-card--featured .jg-price-features-title {
    color: rgba(255, 255, 255, 0.75);
}

.jg-price-card--featured .jg-price-top {
    color: #fff;
}

.jg-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 0.25rem;
    margin-bottom: 0.55rem;
}

.jg-price-amount {
    font-size: clamp(2.05rem, 3.8vw, 2.85rem);
    font-weight: 700;
    line-height: 1;
    color: var(--jg-dark);
    letter-spacing: -0.03em;
}

.jg-price-card--featured .jg-price-amount {
    color: #fff;
}

.jg-price-period {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(31, 20, 55, 0.45);
}

.jg-price-card--featured .jg-price-period {
    color: rgba(255, 255, 255, 0.75);
}

.jg-price-name {
    margin: 0 0 0.45rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--jg-primary);
    letter-spacing: -0.02em;
}

.jg-price-card--featured .jg-price-name {
    color: #fff;
}

.jg-price-desc {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(31, 20, 55, 0.55);
}

.jg-price-card--featured .jg-price-desc {
    color: rgba(255, 255, 255, 0.88);
}

.jg-price-features {
    flex: 1;
    margin: 0 0 1.35rem;
    padding: 0;
    list-style: none;
}

.jg-price-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.72rem;
    font-size: 0.8625rem;
    line-height: 1.45;
    color: rgba(31, 20, 55, 0.82);
}

.jg-price-card--featured .jg-price-features li {
    color: rgba(255, 255, 255, 0.95);
}

.jg-price-check {
    flex-shrink: 0;
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.1rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 0.62rem;
    color: #fff;
    background: linear-gradient(135deg, var(--jg-secondary), var(--jg-primary));
    box-shadow: 0 2px 6px rgba(53, 25, 110, 0.25);
}

.jg-price-card--featured .jg-price-check {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.jg-price-btn {
    margin-top: auto;
    width: 100%;
    padding: 0.78rem 1rem;
    text-align: center;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.jg-price-btn--muted {
    background: rgba(124, 58, 237, 0.1);
    color: var(--jg-primary);
    border: 1px solid transparent;
}

.jg-price-btn--muted:hover {
    color: var(--jg-primary);
    background: rgba(124, 58, 237, 0.16);
    transform: translateY(-1px);
}

.jg-price-btn--solid {
    background: #fff;
    color: var(--jg-primary);
    border: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.jg-price-btn--solid:hover {
    color: var(--jg-primary);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

@media (max-width: 991.98px) {
    .jg-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .jg-price-card--featured {
        transform: none;
        order: -1;
    }

    .jg-pricing-footer {
        margin-top: 1.5rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .jg-price-card,
    .jg-price-btn {
        transition: none;
    }

    .jg-price-card--featured:hover,
    .jg-price-card:hover {
        transform: none;
    }
}

/* —— WhatsApp Button —— */
.float-whatsapp-btn {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1020;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #25d366, #128c7e);
    color: #fff !important;
    font-size: 1.65rem;
    box-shadow: 0 10px 30px rgba(18, 140, 126, 0.45);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

/* —— Store-style public Reviews page (/reviews) — JaduPe brand palette —— */

.jgp-store-reviews {
    background: linear-gradient(180deg, var(--site-light) 0%, #eeebfa 38%, var(--site-light) 100%);
    padding-bottom: 4rem;
}

.jgp-reviews-hero {
    padding: 3.25rem 0 2.75rem;
    border-bottom: 1px solid color-mix(in srgb, var(--color-brand) 14%, #e9e4f7);
    background:
        radial-gradient(980px 480px at 10% -18%, rgba(124, 58, 237, 0.2), transparent 56%),
        radial-gradient(900px 460px at 92% -8%, rgba(53, 25, 110, 0.14), transparent 52%);
}

.jgp-reviews-hero-inner {
    max-width: 52rem;
}

.jgp-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.32rem 0.95rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: color-mix(in srgb, var(--site-secondary) 16%, var(--site-light));
    color: var(--color-brand);
    margin-bottom: 1rem;
}

.jgp-reviews-title {
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-brand-deep);
    margin-bottom: 0.6rem;
}

.jgp-reviews-lead {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--site-muted);
    max-width: 40rem;
    margin-bottom: 1.85rem;
}

.jgp-reviews-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem 1.75rem;
    padding: 1rem 1.35rem;
    border-radius: 1.25rem;
    background: #fff;
    box-shadow:
        0 1px 0 color-mix(in srgb, var(--color-brand) 6%, transparent),
        0 22px 50px rgba(53, 25, 110, 0.12);
    border: 1px solid color-mix(in srgb, var(--color-brand) 10%, #e9e4f7);
}

.jgp-reviews-stat-score {
    font-size: 3.35rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--color-brand), var(--site-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.jgp-reviews-stat-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.jgp-reviews-stat-count {
    font-size: 0.9rem;
    color: var(--site-muted);
}

.jgp-review-star {
    font-size: 0.85rem;
    margin-right: 0.12rem;
}

.jgp-review-stars--large .jgp-review-star {
    font-size: 1.1rem;
}

.jgp-review-star--fill {
    color: #f7c948;
}

.jgp-review-star--empty {
    color: color-mix(in srgb, #f7c948 35%, transparent);
}

.jgp-reviews-list-wrap {
    padding-top: 2rem;
}

.jgp-reviews-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.65rem;
    margin-bottom: 1.35rem;
}

.jgp-reviews-toolbar-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-brand-deep);
    margin: 0;
}

.jgp-reviews-toolbar-hint {
    font-size: 0.8625rem;
    color: var(--site-muted);
}

.jgp-reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jgp-review-card {
    border-radius: 1.125rem;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--color-brand) 8%, #eae6f7);
    box-shadow:
        0 1px 2px color-mix(in srgb, var(--color-brand) 5%, transparent),
        0 16px 40px rgba(53, 25, 110, 0.07);
}

.jgp-review-card-main {
    display: flex;
    gap: 1rem;
    padding: 1.15rem 1.25rem 1.2rem;
}

@media (min-width: 576px) {
    .jgp-review-card-main {
        padding: 1.35rem 1.5rem 1.45rem;
        gap: 1.2rem;
    }
}

.jgp-review-card-avatar-wrap {
    flex-shrink: 0;
}

.jgp-review-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--site-light), #ede9fe);
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, var(--color-brand) 8%, transparent),
        0 4px 12px rgba(53, 25, 110, 0.1);
}

.jgp-review-card-body {
    min-width: 0;
    flex: 1;
}

.jgp-review-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-brand-deep);
    margin: 0 0 0.35rem;
    letter-spacing: 0;
}

.jgp-review-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.72rem;
}

.jgp-review-date {
    font-size: 0.8125rem;
    color: var(--site-muted);
}

.jgp-review-pill {
    font-size: 0.75rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--site-secondary) 8%, var(--site-light));
    color: var(--color-brand);
    font-weight: 500;
}

.jgp-review-text {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.62;
    color: rgba(31, 20, 55, 0.9);
    letter-spacing: 0.009em;
    white-space: pre-wrap;
    word-break: break-word;
}

.jgp-review-helpful-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.95rem;
    padding-top: 0.75rem;
    border-top: 1px dashed color-mix(in srgb, var(--site-secondary) 22%, #e9e4f7);
}

.jgp-review-chip {
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.25rem 0.62rem;
    background: color-mix(in srgb, var(--site-secondary) 12%, var(--site-light));
    color: var(--color-brand);
}

.jgp-review-chip--muted {
    background: color-mix(in srgb, var(--color-brand) 5%, var(--site-light));
    color: var(--site-muted);
    font-weight: 500;
}

.jgp-reviews-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--site-muted);
    font-weight: 500;
}

.jgp-reviews-pager {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.jgp-reviews-pager .pagination {
    gap: 0.35rem;
}

.jgp-reviews-pager .page-link {
    border-radius: 0.65rem;
    border: 1px solid color-mix(in srgb, var(--color-brand) 16%, #e9e4f7);
    color: var(--color-brand);
}

.jgp-reviews-pager .page-item.active .page-link {
    background: linear-gradient(135deg, var(--color-brand), var(--site-secondary));
    border-color: transparent;
    color: #fff !important;
}

/* —— Public blog — light theme (matches JaduPe marketing / reviews palette) —— */

.home-page .jgp-blog-page {
    --jgp-blog-text: #1d2635;
    --jgp-blog-muted: rgba(31, 20, 55, 0.68);
    /* Fixed header + rounded bottom bar — keep content fully below nav */
    --jgp-blog-header-clear: clamp(104px, 16vh, 140px);
    --jgp-blog-sticky-top: clamp(116px, 17vh, 150px);
    color: var(--jgp-blog-text);
}

/* Clear fixed navbar (blog index hero) */
.home-page .jgp-blog-archive .jgp-blog-archive-hero {
    padding-top: calc(var(--jgp-blog-header-clear, 110px) + 2.25rem) !important;
}

/* Blog article: main column + breadcrumbs start below header */
.home-page article.jgp-blog-single .jgp-blog-single-wrap {
    padding-top: calc(var(--jgp-blog-header-clear, 110px) + 2.5rem) !important;
}

@media (min-width: 992px) {
    .home-page article.jgp-blog-single .row.g-lg-5 {
        align-items: flex-start;
    }

    .home-page article.jgp-blog-single .col-lg-4 {
        align-self: flex-start;
    }

    /* Sticky sidebar sits below fixed header — not underneath it */
    .home-page .jgp-blog-toc-widget.sticky-lg-top {
        top: var(--jgp-blog-sticky-top, 104px);
        z-index: 2;
    }
}

.jgp-blog-archive {
    background: linear-gradient(180deg, var(--site-light) 0%, #eeebfa 38%, var(--site-light) 100%);
    color: var(--jgp-blog-text, #1d2635);
}

.jgp-blog-archive-hero {
    padding: 3rem 0 2.75rem;
    border-bottom: 1px solid color-mix(in srgb, var(--color-brand) 12%, #e9e4f7);
    background:
        radial-gradient(980px 480px at 10% -18%, rgba(124, 58, 237, 0.14), transparent 56%),
        radial-gradient(900px 460px at 92% -8%, rgba(53, 25, 110, 0.08), transparent 52%);
}

.jgp-blog-archive-body {
    padding-top: 1.75rem;
}

.jgp-blog-kicker {
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--site-secondary);
    margin-bottom: 0.65rem;
}

.jgp-blog-kicker--dim {
    color: var(--site-secondary);
    opacity: 0.9;
}

.jgp-blog-archive-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--color-brand-deep);
    margin-bottom: 0.5rem;
}

.jgp-blog-archive-lead {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--site-muted);
    max-width: 36rem;
    margin-bottom: 1.5rem;
}

.jgp-blog-search {
    display: flex;
    max-width: 28rem;
    gap: 0.5rem;
}

.jgp-blog-search-input {
    border-radius: 0.85rem !important;
    border: 1px solid color-mix(in srgb, var(--color-brand) 18%, #e2e8f0) !important;
    background: #fff !important;
    color: #1d2635 !important;
}

.jgp-blog-search-input::placeholder {
    color: rgba(31, 41, 55, 0.45);
}

.jgp-blog-search-submit {
    flex-shrink: 0;
    width: 3rem;
    border-radius: 0.85rem !important;
    border: none;
    background: linear-gradient(145deg, var(--site-secondary), var(--color-brand));
    color: #fff !important;
}

.jgp-blog-breadcrumbs {
    margin-bottom: 1.5rem;
}

.jgp-blog-breadcrumbs--pill .jgp-blog-breadcrumbs-list {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--color-brand) 10%, #e9e4f7);
    box-shadow: 0 8px 26px rgba(53, 25, 110, 0.07);
}

.jgp-blog-breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    font-size: 0.875rem;
}

.jgp-blog-breadcrumbs-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--site-muted);
}

.jgp-blog-breadcrumbs-list li + li::before {
    content: '›';
    color: rgba(53, 25, 110, 0.35);
}

.jgp-blog-breadcrumbs-list a {
    color: var(--color-brand);
    text-decoration: none;
    font-weight: 600;
}

.jgp-blog-breadcrumbs-list a:hover {
    color: var(--site-secondary);
}

.jgp-blog-featured-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--color-brand) 10%, #eae6f7);
    background: #fff;
    margin-bottom: 2.25rem;
    box-shadow: 0 22px 50px rgba(53, 25, 110, 0.1);
}

@media (min-width: 992px) {
    .jgp-blog-featured-card {
        grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
    }
}

.jgp-blog-featured-media {
    display: block;
    min-height: 220px;
    background-size: cover;
    background-position: center;
}

.jgp-blog-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.jgp-blog-featured-media--empty {
    background:
        radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.14), transparent 55%),
        linear-gradient(165deg, #ede9fe 0%, #faf5ff 55%, #ffffff 100%);
}

.jgp-blog-featured-body {
    padding: 1.5rem 1.65rem;
}

.jgp-blog-pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.68rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--site-secondary) 14%, var(--site-light));
    color: var(--color-brand);
    margin-right: 0.75rem;
}

.jgp-blog-date {
    font-size: 0.8125rem;
    color: var(--site-muted);
    display: inline-block;
}

.jgp-blog-featured-title {
    font-size: clamp(1.35rem, 2.8vw, 1.95rem);
    font-weight: 800;
    line-height: 1.28;
    margin: 1rem 0;
}

.jgp-blog-featured-title a {
    color: var(--color-brand-deep);
    text-decoration: none;
}

.jgp-blog-featured-title a:hover {
    color: var(--site-secondary);
}

.jgp-blog-excerpt {
    font-size: 0.9625rem;
    line-height: 1.6;
    color: var(--site-muted);
}

.jgp-blog-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.65rem;
    margin-bottom: 1.35rem;
}

.jgp-blog-toolbar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-brand-deep);
}

.jgp-blog-muted-small {
    color: var(--site-muted);
}

.jgp-blog-mini-label {
    font-size: 0.8125rem;
    color: var(--site-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.jgp-blog-card {
    height: 100%;
    border-radius: 1.125rem;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--color-brand) 8%, #eae6f7);
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    box-shadow:
        0 1px 2px color-mix(in srgb, var(--color-brand) 5%, transparent),
        0 16px 40px rgba(53, 25, 110, 0.07);
}

.jgp-blog-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--site-secondary) 28%, transparent);
    box-shadow: 0 18px 44px rgba(53, 25, 110, 0.12);
}

.jgp-blog-card-thumb {
    display: block;
}

.jgp-blog-card-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.jgp-blog-card-thumb--empty {
    height: 180px;
    background:
        linear-gradient(120deg, rgba(124, 58, 237, 0.1), transparent 60%),
        linear-gradient(180deg, #f5f3ff 0%, #fafafa 100%);
}

.jgp-blog-card-body {
    padding: 1.35rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.jgp-blog-card-title {
    font-size: 1.07rem;
    font-weight: 700;
    line-height: 1.38;
}

.jgp-blog-card-title a {
    color: var(--color-brand-deep);
    text-decoration: none;
}

.jgp-blog-card-title a:hover {
    color: var(--site-secondary);
}

.jgp-blog-card-excerpt {
    flex: 1;
    margin-top: 0.65rem;
    font-size: 0.8875rem;
    line-height: 1.55;
    color: var(--site-muted);
}

.jgp-blog-readmore {
    align-self: flex-start;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--site-secondary) !important;
    text-decoration: none !important;
}

.jgp-blog-readmore--outline {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--site-secondary) 45%, transparent) !important;
    color: var(--color-brand) !important;
    background: rgba(124, 58, 237, 0.06);
}

.jgp-blog-readmore--outline:hover {
    background: rgba(124, 58, 237, 0.12);
    color: var(--site-secondary) !important;
}

.jgp-blog-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.jgp-blog-pagination .pagination .page-link {
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--color-brand) 16%, #e9e4f7);
    color: var(--color-brand) !important;
    border-radius: 0.65rem !important;
    margin: 0 0.14rem;
}

.jgp-blog-pagination .pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--color-brand), var(--site-secondary));
    border-color: transparent;
    color: #fff !important;
}

.jgp-blog-sidebar-widget {
    padding: 1.35rem;
    border-radius: 1.125rem;
    border: 1px solid color-mix(in srgb, var(--color-brand) 10%, #e9e4f7);
    background: #fff;
    box-shadow: 0 12px 32px rgba(53, 25, 110, 0.06);
}

.jgp-blog-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-brand-deep);
    margin-bottom: 1rem;
}

.jgp-blog-cat-links a {
    color: var(--color-brand);
    text-decoration: none;
    padding: 0.35rem 0.85rem;
    border-radius: 0.85rem;
    display: inline-block;
    margin-bottom: 0.35rem;
    background: color-mix(in srgb, var(--site-secondary) 10%, var(--site-light));
    font-weight: 600;
}

.jgp-blog-sidebar-cta .btn {
    border-radius: 999px;
    font-weight: 700;
}

.jgp-blog-cta-solid {
    background: linear-gradient(135deg, var(--site-secondary), var(--color-brand)) !important;
    border: none !important;
    color: #fff !important;
}

.jgp-blog-cta-outline {
    border: 1px solid color-mix(in srgb, var(--site-secondary) 45%, transparent) !important;
    color: var(--color-brand) !important;
    background: #fff !important;
}

.jgp-blog-empty-msg {
    color: var(--site-muted);
}

/* Single article — light */
.jgp-blog-single {
    position: relative;
    background: linear-gradient(180deg, var(--site-light) 0%, #eeebfa 42%, var(--site-light) 100%);
    color: var(--jgp-blog-text, #1d2635);
}

.jgp-blog-single-wrap {
    position: relative;
    z-index: 1;
}

.jgp-blog-single-title {
    font-size: clamp(1.65rem, 3.8vw, 2.65rem);
    font-weight: 800;
    line-height: 1.22;
    color: var(--color-brand-deep);
    letter-spacing: -0.035em;
}

.jgp-blog-date--lg {
    font-size: 0.8875rem;
}

.jgp-blog-single-intro {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--site-muted);
}

.jgp-blog-single-hero-figure img {
    border: 1px solid color-mix(in srgb, var(--color-brand) 12%, #e9e4f7);
    box-shadow: 0 16px 40px rgba(53, 25, 110, 0.08);
}

/* CKEditor / HTML body — force readable text (inline styles often break light pages) */
.jgp-blog-article-body.jgp-blog-prose {
    font-size: 1.0625rem;
    line-height: 1.78;
    color: var(--jgp-blog-text, #1d2635);
    overflow-x: auto;
}

.jgp-blog-prose > * + * {
    margin-top: 1.1rem;
}

.jgp-blog-prose :where(p, li, td, th, dd, dt, span, div, article, aside, caption, figcaption):not(.jgp-blog-prose .jgp-blog-prose-ignore) {
    color: inherit;
}

.jgp-blog-prose :where(div, span)[style*="color"]:not(.jgp-blog-prose-ignore) {
    color: inherit !important;
}

.jgp-blog-prose font[style*="color"] {
    color: inherit !important;
}

.jgp-blog-prose :where(p, li)[style*="color"]:not(.jgp-blog-prose-ignore) {
    color: inherit !important;
}

.jgp-blog-prose .table-responsive,
.jgp-blog-prose figure {
    max-width: 100%;
}

.jgp-blog-prose iframe,
.jgp-blog-prose video {
    max-width: 100%;
}

.jgp-blog-prose img {
    height: auto;
}

.jgp-blog-prose h1,
.jgp-blog-prose h2,
.jgp-blog-prose h3,
.jgp-blog-prose h4,
.jgp-blog-prose h5,
.jgp-blog-prose h6 {
    scroll-margin-top: calc(var(--jgp-blog-sticky-top, 7.5rem) + 0.5rem);
    color: var(--color-brand-deep);
    font-weight: 800;
    margin-top: 1.75rem !important;
}

.jgp-blog-prose h2 {
    font-size: 1.5rem;
}

.jgp-blog-prose h3 {
    font-size: 1.28rem;
}

.jgp-blog-prose p {
    margin-bottom: 0;
}

.jgp-blog-prose a {
    color: var(--site-secondary);
    font-weight: 600;
}

.jgp-blog-prose strong,
.jgp-blog-prose b {
    color: var(--color-brand-deep);
}

.jgp-blog-prose img {
    max-width: 100%;
    border-radius: 1rem;
}

.jgp-blog-prose ul,
.jgp-blog-prose ol {
    padding-left: 1.4rem;
}

.jgp-blog-prose table {
    width: 100%;
    margin: 1.25rem 0;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.jgp-blog-prose th,
.jgp-blog-prose td {
    border: 1px solid color-mix(in srgb, var(--color-brand) 14%, #e9e4f7);
    padding: 0.5rem 0.75rem;
    vertical-align: top;
}

.jgp-blog-prose th {
    background: color-mix(in srgb, var(--site-secondary) 12%, var(--site-light));
    color: var(--color-brand-deep);
}

.jgp-blog-prose blockquote {
    margin: 1.15rem 0;
    padding: 1rem 1.15rem;
    border-left: 4px solid var(--site-secondary);
    border-radius: 0.75rem;
    background: rgba(124, 58, 237, 0.08);
    color: var(--site-muted);
}

.jgp-blog-prose hr {
    border: none;
    border-top: 1px solid color-mix(in srgb, var(--color-brand) 12%, #e9e4f7);
    margin: 1.75rem 0;
}

.jgp-blog-prose pre {
    background: #0f172a;
    color: #e2e8f0;
    padding: 1rem 1.15rem;
    border-radius: 0.75rem;
    overflow-x: auto;
    font-size: 0.9rem;
}

.jgp-blog-single-footer-card {
    border-radius: 1.125rem;
    padding: 1.5rem 1.65rem;
    border: 1px solid color-mix(in srgb, var(--color-brand) 12%, #e9e4f7);
    background: #fff;
    box-shadow: 0 12px 32px rgba(53, 25, 110, 0.06);
}

.jgp-blog-cta-line {
    color: var(--color-brand-deep);
    font-weight: 600;
}

.jgp-blog-related-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-brand-deep);
    margin-bottom: 1.35rem;
}

.jgp-blog-toc-widget.sticky-lg-top {
    top: 1rem;
}

.jgp-blog-toc {
    padding: 0;
    margin: 0;
}

.jgp-blog-toc li {
    margin-bottom: 0.4rem;
    font-size: 0.8925rem;
}

.jgp-blog-toc a {
    color: var(--color-brand);
    text-decoration: none;
    font-weight: 600;
}

.jgp-blog-toc a:hover {
    color: var(--site-secondary);
}

.jgp-blog-share-row {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.jgp-blog-share-circle {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--color-brand) 18%, #e9e4f7);
    background: #fff;
    color: var(--color-brand) !important;
    cursor: pointer;
}

.jgp-blog-share-circle:hover {
    background: color-mix(in srgb, var(--site-secondary) 12%, var(--site-light));
    border-color: var(--site-secondary);
}

.jgp-blog-copy-link.is-copied {
    outline: 2px solid rgba(52, 211, 153, 0.75);
}

.jgp-blog-recent li {
    margin-bottom: 0.95rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px dashed color-mix(in srgb, var(--color-brand) 12%, transparent);
}

.jgp-blog-recent li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.jgp-blog-recent a {
    font-weight: 600;
    color: var(--color-brand-deep);
    text-decoration: none;
}

.jgp-blog-recent a:hover {
    color: var(--site-secondary);
}

.jgp-blog-recent-meta {
    font-size: 0.7825rem;
    color: var(--site-muted);
}

.jgp-blog-card--compact .jgp-blog-card-thumb img {
    height: 175px;
}

