    :root {
            --purple: #6d2cc8;
            --purple-dark: #27104d;
            --purple-deep: #180a35;
            --purple-light: #9b55ea;
            --yellow: #f5b51b;
            --yellow-light: #ffd45a;
            --navy: #182c52;
            --white: #ffffff;
            --off-white: #f7f5fb;
            --soft-purple: #f0e9fb;
            --border: #5e26ad;
            --text: #42475a;
            --shadow: 0 15px 40px rgba(45, 18, 88, 0.10);
            --radius: 18px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: var(--off-white);
            color: var(--text);
            line-height: 1.75;
        }

        a {
            text-decoration: none;
        }

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

        .container {
            width: min(1270px, calc(100% - 32px));
            margin: auto;
        }      
/* ==============================
       HERO
    ============================== */

        .hero {
            padding: 70px 0 35px;
            background:
                radial-gradient(circle at 10% 20%, rgba(109, 44, 200, 0.12) 0 8%, transparent 8.2%),
                radial-gradient(circle at 88% 75%, rgba(245, 181, 27, 0.14) 0 10%, transparent 10.2%),
                linear-gradient(135deg, #ffffff 0%, #f7f2ff 100%);
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            align-items: center;
            gap: 45px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--soft-purple);
            color: var(--purple);
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 800;
            margin-bottom: 18px;
        }

        .hero h1 {
            font-size: clamp(34px, 5vw, 62px);
            line-height: 1.15;
            color: var(--purple-deep);
            margin-bottom: 22px;
            letter-spacing: -2px;
        }

        .hero h1 span {
            color: var(--purple);
        }

        .hero p {
            font-size: 17px;
            margin-bottom: 16px;
            max-width: 680px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 25px 0;
        }

        .hero-btn {
            padding: 13px 25px;
            border-radius: 12px;
            font-weight: 800;
            transition: 0.25s ease;
        }

        .hero-btn:hover {
            transform: translateY(-3px);
        }

        .btn-login {
            background: var(--purple);
            color: var(--white);
        }

        .btn-download {
            background: var(--yellow);
            color: var(--purple-deep);
        }

        .btn-register {
            background: var(--purple-deep);
            color: var(--white);
        }

        .hero-image-box {
            min-height: 460px;
            border-radius: 32px;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 25%),
                linear-gradient(135deg, var(--purple-deep), var(--purple));
            box-shadow: 0 25px 60px rgba(39, 16, 77, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-phone {
            width: min(70%, 310px);
            min-height: 380px;
            background: linear-gradient(160deg, #29114f, #150725);
            border: 7px solid #111;
            border-radius: 42px;
            transform: rotate(6deg);
            box-shadow: 20px 25px 45px rgba(0, 0, 0, 0.28);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .hero-phone::before {
            content: "";
            position: absolute;
            width: 40%;
            height: 20px;
            top: 8px;
            background: #111;
            border-radius: 0 0 15px 15px;
        }

        .phone-content {
            text-align: center;
            padding: 30px;
            color: var(--white);
        }

        .phone-crown {
            font-size: 60px;
            margin-bottom: 10px;
        }

        .phone-content h2 {
            font-size: 42px;
            line-height: 1;
            margin-bottom: 8px;
            letter-spacing: 2px;
        }

        .phone-content p {
            color: var(--yellow);
            font-weight: 800;
            letter-spacing: 6px;
            font-size: 14px;
        }

        .floating-icon {
            position: absolute;
            width: 70px;
            height: 70px;
            background: var(--white);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: var(--shadow);
            z-index: 3;
        }

        .icon-one {
            left: 8%;
            bottom: 13%;
            transform: rotate(-12deg);
        }

        .icon-two {
            right: 8%;
            top: 13%;
            transform: rotate(12deg);
        }

        .icon-three {
            right: 5%;
            bottom: 9%;
            transform: rotate(-8deg);
        }

        /* ==============================
       FULL WIDTH HERO FEATURES
    ============================== */

        .hero-features {
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(45, 18, 88, 0.06);
        }

        .hero-feature {
            position: relative;
            padding: 18px 15px;
            text-align: center;
            font-size: 13px;
            font-weight: 800;
            color: var(--navy);
        }

        .hero-feature:not(:last-child)::after {
            content: "";
            width: 1px;
            height: 42px;
            background: var(--border);
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 7px;
            background: var(--soft-purple);
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
        }

        /* ==============================
       GENERAL
    ============================== */

        .section {
            padding: 35px 0;
        }

        .section-white {
            background: var(--white);
        }

        .section-soft {
            background: var(--off-white);
        }

        /* Screenshot jaisa heading + paragraph card */

        .section-title-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 24px 30px;
            margin-bottom: 24px;
            text-align: center;
        }

        .section-title-card span {
            display: inline-block;
            color: var(--purple);
            font-weight: 800;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .section-title-card h2 {
            color: var(--purple-deep);
            font-size: clamp(27px, 4vw, 40px);
            line-height: 1.25;
            margin-bottom: 10px;
        }

        .section-title-card p {
            margin: 0 auto;
            max-width: 900px;
        }

        .content-card {
            background: var(--white);
            padding: 30px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        article.about-card.about-side {
            background: radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.1), transparent 20%), linear-gradient(135deg, var(--purple-deep), var(--purple));
            padding: 38px;
            border-radius: var(--radius);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        article.about-card.about-side h3 {
            color: #fff;
        }

        .content-card h2,
        .content-card h3 {
            color: var(--purple-deep);
            line-height: 1.3;
        }

        .content-card h2 {
            margin-bottom: 18px;
            font-size: 30px;
        }

        .content-card h3 {
            margin-bottom: 15px;
            font-size: 24px;
        }

        .content-card p {
            margin-bottom: 15px;
        }

        /* ==============================
       ABOUT
    ============================== */

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 24px;
            align-items: stretch;
        }

        .about-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 30px;
        }

        .about-card h2,
        .about-card h3 {
            color: var(--purple-deep);
            line-height: 1.3;
            margin-bottom: 15px;
        }

        .about-card h2 {
            font-size: 30px;
        }

        .about-card h3 {
            font-size: 27px;
        }

        .about-card p {
            margin-bottom: 15px;
        }

        .feature-list {
            list-style: none;
            margin-top: 18px;
        }

        .feature-list li {
            position: relative;
            padding: 12px 0 12px 28px;
            border-bottom: 1px solid var(--border);
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 13px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--purple);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 900;
        }

        /* ==============================
       DOWNLOAD
    ============================== */

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

        .method-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .method-card::before {
            content: "";
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: var(--soft-purple);
            top: -55px;
            right: -55px;
        }

        .method-number {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--purple);
            color: var(--white);
            font-size: 21px;
            font-weight: 900;
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
        }

        .method-card h3 {
            color: var(--purple-deep);
            font-size: 24px;
            margin-bottom: 18px;
            position: relative;
            z-index: 2;
        }

        .method-card p {
            margin-bottom: 13px;
        }

        /* ==============================
       STEP CARDS
    ============================== */

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
            margin-top: 20px;
        }

        .step-box {
            background: var(--off-white);
            border: 1px solid var(--border);
            padding: 20px;
            border-radius: 15px;
        }

        .step-box .step-number {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--yellow);
            color: var(--purple-deep);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .step-box p {
            margin-bottom: 0;
        }

        /* ==============================
       ACCOUNT ARTICLE
    ============================== */

        .account-article {
            display: grid;
            gap: 24px;
        }

        .account-part {
            background: var(--white);
            padding: 30px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .account-part h2 {
            color: var(--purple-deep);
            font-size: 30px;
            margin-bottom: 14px;
            line-height: 1.3;
        }

        .account-part h3 {
            color: var(--purple);
            font-size: 24px;
            margin: 28px 0 14px;
        }

        .account-part p {
            margin-bottom: 13px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* ==============================
       SAFETY
    ============================== */

        .safety-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .safety-item {
            background: var(--white);
            padding: 24px;
            border-radius: 16px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .safety-icon {
            width: 48px;
            height: 48px;
            background: radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.1), transparent 20%), linear-gradient(135deg, var(--purple-deep), var(--purple));
            color: var(--purple);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 15px;
        }

        .safety-item h3 {
            font-size: 19px;
            color: var(--purple-deep);
            line-height: 1.35;
            margin-bottom: 10px;
        }

        /* ==============================
       SUPPORT
    ============================== */

        .support-box {
            background:
                radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.1), transparent 20%),
                linear-gradient(135deg, var(--purple-deep), var(--purple));
            border-radius: 28px;
            padding: 45px;
            color: var(--white);
        }

        .support-box h2 {
            font-size: 35px;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .support-box p {
            margin-bottom: 15px;
        }

        .support-steps {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px;
            margin-top: 30px;
        }

        .support-step {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 16px;
            padding: 18px;
        }

        .support-step strong {
            color: var(--yellow-light);
            display: block;
            margin-bottom: 7px;
        }

        /* ==============================
       DISCLAIMER
    ============================== */

        .disclaimer {
            border-left: 5px solid var(--yellow);
            background: #fff9e8;
            padding: 30px;
            border-radius: 0 20px 20px 0;
        }

        .disclaimer h2 {
            color: var(--purple-deep);
            margin-bottom: 12px;
        }


        /* ==============================
       CONCLUSION
    ============================== */

        .conclusion {
            background: var(--white);
            border-radius: var(--radius);
            padding: 35px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .conclusion h2 {
            color: var(--purple-deep);
            font-size: 32px;
            margin-bottom: 18px;
        }

        .conclusion p {
            margin-bottom: 15px;
        }

        /* ----Steps--- */

        article.account-part strong {
            background: radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.1), transparent 20%), linear-gradient(135deg, var(--purple-deep), var(--purple));
            padding: 7px 5px;
            color: #fff;
            border-radius: 6px;
            font-size: 14px;
        }

        article.account-part.for-bgclr {
            background: radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.1), transparent 20%), linear-gradient(135deg, var(--purple-deep), var(--purple));
            color: #fff;
        }

        article.account-part.for-bgclr strong {
            background: var(--yellow);
            color: #000;
        }

        article.account-part.for-bgclr h2 {
            color: #fff;
        }

        /* ==============================
       FAQ
    ============================== */

        .faq-wrap {

            margin: auto;
        }

        .faq-item {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            margin-bottom: 14px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(45, 18, 88, 0.04);
        }

        .faq-question {
            width: 100%;
            border: none;
            background: radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.1), transparent 20%), linear-gradient(135deg, var(--purple-deep), var(--purple));
            text-align: left;
            padding: 20px 22px;
            color: var(--white);
            font-size: 17px;
            font-weight: 800;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            gap: 15px;
            align-items: center;
        }

        .faq-question span {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--soft-purple);
            color: var(--purple);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 23px;
            transition: 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .faq-answer p {
            padding: 0 22px 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 400px;
        }

        .faq-item.active .faq-question span {
            transform: rotate(45deg);
            background: var(--purple);
            color: var(--white);
        }

        /* ==============================
       FOOTER
    ============================== */

        footer {
            background: var(--purple-deep);
            color: rgba(255, 255, 255, 0.75);
            padding: 55px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 0.7fr 0.7fr;
            gap: 40px;
            padding-bottom: 35px;
        }

        .footer-logo {
            color: var(--white);
            font-size: 30px;
            font-weight: 900;
            margin-bottom: 14px;
        }

        .footer-logo span {
            color: var(--yellow);
        }

        .footer-column h3 {
            color: var(--white);
            margin-bottom: 15px;
        }

        .footer-column a {
            display: block;
            color: rgba(255, 255, 255, 0.70);
            margin-bottom: 8px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
        }

        /* ==============================
       RESPONSIVE
    ============================== */

        @media (max-width: 1000px) {

            .hero-grid,
            .about-grid {
                grid-template-columns: 1fr;
            }

            .hero-image-box {
                max-width: 650px;
                width: 100%;
                margin: auto;
            }

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

            .support-steps {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 700px) {

            .container {
                width: min(100% - 24px, 1180px);
            }

            .header-inner {
                min-height: 64px;
            }

            .logo {
                font-size: 23px;
            }

            .header-nav a {
                padding: 8px 11px;
                font-size: 12px;
            }

            .hero {
                padding: 45px 0 30px;
            }

            .hero-grid {
                gap: 30px;
            }

            .hero h1 {
                letter-spacing: -1px;
            }

            .hero-actions {
                gap: 8px;
            }

            .hero-btn {
                flex: 1;
                min-width: 120px;
                text-align: center;
                padding: 12px 15px;
                font-size: 14px;
            }

            .hero-image-box {
                min-height: 390px;
            }

            .hero-phone {
                min-height: 315px;
            }

            .phone-content h2 {
                font-size: 33px;
            }

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

            .hero-feature:nth-child(2)::after {
                display: none;
            }

            .hero-feature:nth-child(-n+2) {
                border-bottom: 1px solid var(--border);
            }

            .section {
                padding: 50px 0;
            }

            .section-title-card,
            .content-card,
            .about-card,
            .account-part,
            .support-box,
            .conclusion,
            .disclaimer {
                padding: 24px 18px;
            }

            .download-grid,
            .steps-grid,
            .safety-grid {
                grid-template-columns: 1fr;
            }

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

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 420px) {

            .header-nav {
                gap: 6px;
            }

            .header-nav a {
                padding: 7px 9px;
                font-size: 11px;
            }

            .hero-image-box {
                min-height: 330px;
            }

            .hero-phone {
                min-height: 280px;
                width: 72%;
            }

            .support-steps {
                grid-template-columns: 1fr;
            }

            .hero-features {
                grid-template-columns: 1fr;
            }

            .hero-feature {
                border-bottom: 1px solid var(--border);
            }

            .hero-feature::after {
                display: none;
            }

            .hero-feature:last-child {
                border-bottom: none;
            }
        }
footer#colophon {
    display: none;
}
/* ---inner---code---- */
.jg-about-v2 {
    --red: #ed1c24;
    --blue: #1457d9;
    --navy: #101a35;
    --text: #46516a;
    --muted: #78839a;
    --line: #dce4f1;
    --soft: #f4f7fc;
    --white: #ffffff;

    width: 100%;
    padding: 70px 20px 90px;
    background: #f7f9fd;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
}

.jg-about-v2 *,
.jg-about-v2 *::before,
.jg-about-v2 *::after {
    box-sizing: border-box;
}

.jg-about-v2 a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
}

.jg-about-v2 a:hover {
    text-decoration: underline;
}

.jg-about-v2 p {
    margin: 0 0 17px;
    font-size: 15.5px;
    color: var(--text);
}

.jg-about-v2 p:last-child {
    margin-bottom: 0;
}

.jg-about-v2-wrap {
    width: 100%;
    max-width: 1180px;
    margin: auto;
    position: relative;
    z-index: 2;
}


/* =========================================================
   HERO
========================================================= */

.jg-v2-hero {
    min-height: 390px;
    display: grid;
    grid-template-columns: 42% 58%;
    margin-bottom: 55px;
    position: relative;
    background: var(--navy);
    overflow: hidden;
}

.jg-v2-hero-left {
    padding: 58px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background:
        linear-gradient(145deg, #101a35, #17264b);
}

.jg-v2-hero-left::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -90px;
    width: 230px;
    height: 230px;
    border: 45px solid rgba(237, 28, 36, .13);
    border-radius: 50%;
}

.jg-v2-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.jg-v2-label::before {
    content: "";
    width: 30px;
    height: 3px;
    background: var(--red);
}

.jg-v2-title {
    margin: 0;
    color: #fff;
    font-size: 50px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.jg-v2-title span {
    color: var(--red);
}

.jg-v2-hero-right {
    position: relative;
    padding: 54px 55px;
    display: flex;
    align-items: center;
    background: #fff;
}

.jg-v2-hero-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-style: solid;
    border-width: 390px 75px 0 0;
    border-color: #17264b transparent transparent transparent;
    opacity: .08;
}

.jg-v2-hero-right::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(20, 87, 217, .15);
    border-radius: 50%;
    box-shadow:
        0 0 0 35px rgba(20, 87, 217, .025),
        0 0 0 70px rgba(20, 87, 217, .018);
}

.jg-v2-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}


/* =========================================================
   SECTION INTRO
========================================================= */

.jg-v2-section {
    margin-bottom: 62px;
    position: relative;
}

.jg-v2-section-head {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 35px;
    margin-bottom: 27px;
}

.jg-v2-number {
    font-size: 55px;
    line-height: 1;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--blue);
    opacity: .75;
}

.jg-v2-heading {
    margin: 0;
    color: var(--navy);
    font-size: 31px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -.6px;
    position: relative;
    padding-bottom: 14px;
}

.jg-v2-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52px;
    height: 4px;
    background: var(--red);
}

.jg-v2-body {
    margin-left: 180px;
    max-width: 900px;
}


/* =========================================================
   APPROACH / FEATURE GRID
========================================================= */

.jg-v2-approach {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 40px;
    margin-top: 32px;
    padding: 35px;
    background: #fff;
    border: 1px solid var(--line);
    position: relative;
}

.jg-v2-approach-title {
    color: var(--navy);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 7px;
}

.jg-v2-approach-title::before {
    content: "";
    display: block;
    width: 35px;
    height: 3px;
    margin-bottom: 15px;
    background: var(--red);
}

.jg-v2-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.jg-v2-list li {
    padding: 13px 15px 13px 42px;
    background: var(--soft);
    border-left: 3px solid transparent;
    color: var(--text);
    font-size: 14.3px;
    position: relative;
    transition: .2s ease;
}

.jg-v2-list li:hover {
    border-left-color: var(--red);
    background: #eef3fc;
}

.jg-v2-list li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 13px;
    font-weight: 900;
    color: var(--blue);
}


/* =========================================================
   OFFER — SPLIT PANELS
========================================================= */

.jg-v2-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--line);
    margin-top: 30px;
}

.jg-v2-panel {
    padding: 32px;
    background: #fff;
}

.jg-v2-panel:nth-child(2) {
    background: #f4f7fc;
}

.jg-v2-panel h3 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.25;
    font-weight: 900;
}

.jg-v2-panel h3::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--red);
}


/* =========================================================
   USER EXPERIENCE
========================================================= */

.jg-v2-experience {
    padding: 48px 0;
    position: relative;
}

.jg-v2-experience::before {
    content: "";
    position: absolute;
    left: 72px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
}

.jg-v2-experience-item {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 35px;
    position: relative;
    margin-bottom: 42px;
}

.jg-v2-experience-item:last-child {
    margin-bottom: 0;
}

.jg-v2-dot {
    width: 15px;
    height: 15px;
    margin: 7px auto 0;
    border-radius: 50%;
    background: var(--red);
    border: 4px solid #fff;
    box-shadow: 0 0 0 1px var(--red);
    position: relative;
    z-index: 2;
}

.jg-v2-experience-content {
    padding: 27px 31px;
    background: #fff;
    border: 1px solid var(--line);
}

.jg-v2-experience-content h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 20px;
    font-weight: 900;
}


/* =========================================================
   PRIVACY / CONTACT
========================================================= */

.jg-v2-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 28px;
}

.jg-v2-info-box {
    padding: 35px;
    background: #fff;
    border: 1px solid var(--line);
    position: relative;
}

.jg-v2-info-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--blue);
}

.jg-v2-info-box.red::before {
    background: var(--red);
}

.jg-v2-info-box h2 {
    margin: 0 0 17px;
    color: var(--navy);
    font-size: 25px;
    font-weight: 900;
}

.jg-v2-info-box h3 {
    margin: 28px 0 12px;
    color: var(--navy);
    font-size: 19px;
    font-weight: 850;
}

.jg-v2-email {
    color: var(--blue);
    font-weight: 800;
}


/* =========================================================
   POLICIES
========================================================= */

.jg-v2-wide {
    padding: 42px;
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.jg-v2-wide::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -130px;
    width: 320px;
    height: 320px;
    border: 2px solid rgba(255,255,255,.06);
    border-radius: 50%;
}

.jg-v2-wide h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 29px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.jg-v2-wide p {
    color: #d7deec;
    position: relative;
    z-index: 2;
}


/* =========================================================
   LOOKING AHEAD
========================================================= */

.jg-v2-future {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    padding: 42px 0;
    border-bottom: 1px solid var(--line);
}

.jg-v2-future-label {
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.jg-v2-future h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 30px;
    font-weight: 900;
}


/* =========================================================
   CONCLUSION
========================================================= */

.jg-v2-conclusion {
    margin-top: 55px;
    padding: 42px;
    background:
        linear-gradient(
            135deg,
            #fff 0%,
            #f3f7ff 100%
        );
    border: 1px solid var(--line);
    position: relative;
}

.jg-v2-conclusion::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 7px;
    background: linear-gradient(
        180deg,
        var(--red),
        var(--blue)
    );
}

.jg-v2-conclusion h2 {
    margin: 0 0 18px;
    padding-left: 17px;
    color: var(--navy);
    font-size: 29px;
    font-weight: 900;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .jg-about-v2 {
        padding: 45px 15px 60px;
    }

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

    .jg-v2-hero-left {
        min-height: 270px;
    }

    .jg-v2-hero-right {
        padding: 35px;
    }

    .jg-v2-section-head {
        grid-template-columns: 90px 1fr;
        gap: 22px;
    }

    .jg-v2-body {
        margin-left: 112px;
    }

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

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

    .jg-v2-future {
        grid-template-columns: 120px 1fr;
    }
}


@media (max-width: 600px) {

    .jg-about-v2 {
        padding: 28px 11px 45px;
    }

    .jg-v2-hero {
        margin-bottom: 38px;
    }

    .jg-v2-hero-left {
        padding: 39px 27px;
    }

    .jg-v2-hero-right {
        padding: 27px 23px;
    }

    .jg-v2-title {
        font-size: 37px;
    }

    .jg-v2-section-head {
        display: block;
    }

    .jg-v2-number {
        margin-bottom: 10px;
        font-size: 42px;
    }

    .jg-v2-heading {
        font-size: 25px;
    }

    .jg-v2-body {
        margin-left: 0;
    }

    .jg-v2-approach {
        padding: 24px 20px;
    }

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

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

    .jg-v2-panel {
        padding: 25px 21px;
    }

    .jg-v2-experience {
        padding: 30px 0;
    }

    .jg-v2-experience::before {
        left: 8px;
    }

    .jg-v2-experience-item {
        display: block;
        padding-left: 30px;
    }

    .jg-v2-dot {
        position: absolute;
        left: 1px;
        top: 4px;
        margin: 0;
    }

    .jg-v2-experience-content {
        padding: 23px 20px;
    }

    .jg-v2-info-box {
        padding: 27px 22px;
    }

    .jg-v2-wide {
        padding: 30px 23px;
    }

    .jg-v2-future {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px 0;
    }

    .jg-v2-conclusion {
        padding: 29px 22px;
    }

    .jg-about-v2 p {
        font-size: 14.5px;
    }
}