/* =======================================================
   RESET & BASE
======================================================= */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Manrope', sans-serif;

    background:#ffffff;

    color:#222;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

.jgy-container{

    width:min(1240px,90%);

    margin:0 auto;

}



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

.jgy-hero{

    position:relative;

    min-height:78vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:#1F2F6D;

}

/* image */

.jgy-hero-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center center;

    z-index:1;

}

/* overlay */

/* overlay */

.jgy-hero-overlay{

    position:absolute;

    top:0;
    left:0;
    right:0;
    bottom:0;

    z-index:2;

    background:linear-gradient(
        90deg,
        rgba(31,47,109,.78) 0%,
        rgba(31,47,109,.65) 28%,
        rgba(31,47,109,.42) 55%,
        rgba(31,47,109,.15) 78%,
        rgba(31,47,109,0) 100%
    );

}

/* container */

.jgy-container{

    position:relative;

    z-index:5;

}

/* hero content */

.jgy-hero-content{

    width:min(760px,90vw);

    position:relative;

    z-index:10;

    padding-top:40px;

}

/* logo */

.jgy-site-logo{
    width:210px;
    height:auto;
    display:block;
}

/* yellow line */

.jgy-accent-line{

    width:90px;

    height:3px;

    background:#FFD548;

    margin-bottom:38px;

}

/* title */

.jgy-hero h1{

    margin:0;

    color:#FFFFFF;

    font-size:clamp(60px,7vw,92px);

    line-height:1.03;

    font-weight:800;

    letter-spacing:-0.05em;

    margin-bottom:34px;
	
	max-width:620px;

}

/* lead */

.jgy-lead{

    width:540px;

    margin-top:22px;

    max-width:470px;

    color:rgba(255,255,255,.92);

    font-size:22px;

    line-height:1.7;

    font-weight:300;

}

/* scroll */

.jgy-scroll{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    color:#ffffff;

    text-decoration:none;

    text-transform:uppercase;

    letter-spacing:.25em;

    font-size:13px;

    opacity:.8;

    transition:.3s;

    z-index:20;

}

.jgy-scroll:hover{

    opacity:1;

}

.jgy-scroll span{

    display:block;

    text-align:center;

    margin-top:10px;

    font-size:18px;

}

.jgy-header{

    background:#fff;

    padding:12px 0;

}

/* =======================================================
   END OF HERO
======================================================= */

/* =======================================================
   BY THE NUMBERS
======================================================= */

.jgy-numbers{

    background:#ffffff;

    padding:120px 0;

}

.jgy-section-label{

    display:inline-block;

    color:#E6B800;

    font-size:13px;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

    margin-bottom:18px;

}

.jgy-section-title{

    color:#1F2F6D;

    font-size:46px;

    font-weight:800;

    line-height:1.15;

    max-width:700px;

    margin-bottom:70px;

}

.jgy-stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:60px 40px;

}

.jgy-stat{

    border-top:2px solid #E9EDF4;

    padding-top:22px;

}

.jgy-stat-number{

    font-size:52px;

    font-weight:800;

    color:#1F2F6D;

    line-height:1;

    margin-bottom:14px;

}

.jgy-stat-text{

    color:#5A6475;

    font-size:18px;

    line-height:1.5;

}

/* =======================================================
   END BY THE NUMBERS
======================================================= */

/* =======================================================
   OUR SOLUTION
======================================================= */

.jgy-solution{

    padding:120px 0;

    background:#F7F9FC;

}

.jgy-solution-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.jgy-solution-text p{

    font-size:19px;

    line-height:1.9;

    color:#4F5B72;

    margin-bottom:28px;

}

.jgy-solution-image img{

    width:100%;

    border-radius:16px;

    display:block;

    box-shadow:0 24px 60px rgba(0,0,0,.12);

}

/* =======================================================
   END OF OUR SOLUTION
======================================================= */

/* =======================================================
   ECONOMIC IMPACT
======================================================= */

.jgy-economy{

    padding:120px 0;

    background:#ffffff;

}

.jgy-economy-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.jgy-economy-intro{

    margin-top:24px;

    font-size:20px;

    line-height:1.9;

    color:#4F5B72;

}

.jgy-economy-gallery{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:36px;

}

.jgy-economy-gallery figure{

    overflow:hidden;

    border-radius:18px;

    background:#fff;

    box-shadow:0 12px 35px rgba(0,0,0,.10);

    transition:.3s ease;

}

.jgy-economy-gallery img{

    width:100%;

    display:block;

    transition:.4s;

}

.jgy-economy-gallery figure:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 45px rgba(0,0,0,.16);

}

.jgy-economy-gallery img:hover{

    transform:scale(1.03);

}

/* =======================================================
   END OF ECONOMIC IMPACT
======================================================= */

/* =======================================================
   COMMUNITY IMPACT
======================================================= */

.jgy-community{

    padding:120px 0;

    background:#F7F9FC;

}

.jgy-community-grid{

    display:grid;

    grid-template-columns:1.15fr .85fr;

    gap:80px;

    align-items:center;

}

.jgy-community-image img{

    width:100%;

    border-radius:18px;

    display:block;

}

.jgy-community-content p{

    font-size:19px;

    line-height:1.9;

    color:#4F5B72;

    margin-bottom:24px;

}

/* =======================================================
  END OF COMMUNITY IMPACT
======================================================= */

/* =======================================================
   OUR VALUES
======================================================= */

.jgy-values{

    padding:120px 0;

    background:#ffffff;

}

.jgy-values-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:36px;

    margin-top:70px;

}

.jgy-value-card{

    background:#F7F9FC;

    padding:42px;

    border-radius:16px;

    transition:.3s;

}

.jgy-value-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.jgy-value-card h3{

    color:#1F2F6D;

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;

}

.jgy-value-card p{

    color:#4F5B72;

    font-size:18px;

    line-height:1.8;

}

/* =======================================================
   END OF OUR VALUES
======================================================= */

/* =======================================================
   CTA
======================================================= */

.jgy-cta{

    background:#1F2F6D;

    color:#ffffff;

    text-align:center;

    padding:120px 0;

}

.jgy-cta h2{

    font-size:clamp(42px,5vw,58px);

    font-weight:800;

    line-height:1.15;

    margin:20px auto 28px;

    max-width:820px;

}

.jgy-cta p{

    max-width:760px;

    margin:0 auto;

    font-size:20px;

    line-height:1.8;

    color:rgba(255,255,255,.88);

}

.jgy-contact{

    margin-top:42px !important;

    font-size:22px !important;

    color:#ffffff !important;

}

.jgy-contact a{

    color:#FFD548;

    font-weight:700;

    text-decoration:none;

    transition:color .3s ease;

}

.jgy-contact a:hover{

    color:#ffffff;

}

/* =======================================================
   END OF CTA
======================================================= */

/* =======================================================
   RESPONSIVE — HERO
======================================================= */

@media (max-width:768px){

    .jgy-header{

        padding:18px 0;

    }

    .jgy-site-logo{

        width:160px;

    }

    .jgy-hero{

        min-height:70vh;

        align-items:flex-start;

        padding-top:70px;

    }

    .jgy-hero-content{

        width:100%;

        padding-top:0;

    }

    .jgy-accent-line{

        width:70px;

        margin-bottom:24px;

    }

    .jgy-hero h1{

        font-size:42px;

        line-height:1.1;

        max-width:100%;

        margin-bottom:22px;

    }

    .jgy-lead{

        width:100%;

        max-width:100%;

        font-size:18px;

        line-height:1.7;

    }

    .jgy-scroll{

        bottom:24px;

        font-size:11px;

    }



/* =======================================================
   END OF RESPONSIVE — HERO
======================================================= */


/* =======================================================
   RESPONSIVE — GLOBAL
======================================================= */

@media (max-width:768px){

    .jgy-container{

        width:92%;

    }

    .jgy-numbers,
    .jgy-solution,
    .jgy-economy,
    .jgy-community,
    .jgy-cta{

        padding:70px 0;

    }

    .jgy-section-label{

        font-size:11px;

        letter-spacing:.16em;

        margin-bottom:12px;

    }

    .jgy-section-title{

        font-size:34px;

        line-height:1.2;

        margin-bottom:36px;

        max-width:100%;

    }

    .jgy-solution-text p,
    .jgy-community-content p,
    .jgy-economy-intro,
    .jgy-cta p{

        font-size:17px;

        line-height:1.75;

    }

}
/* =======================================================
   END OF RESPONSIVE — GLOBAL
======================================================= */

/* =======================================================
   RESPONSIVE — BY THE NUMBERS
======================================================= */

.jgy-stats-grid{

    grid-template-columns:repeat(2,1fr);

    gap:36px 24px;

}

.jgy-stat-number{

    font-size:42px;

}

.jgy-stat-text{

    font-size:17px;

    line-height:1.45;

}
/* =======================================================
   END OF RESPONSIVE — BY THE NUMBERS
======================================================= */

/* =======================================================
   RESPONSIVE — CONTENT BLOCKS
======================================================= */

.jgy-solution-grid,
.jgy-community-grid{

    grid-template-columns:1fr;

    gap:40px;

}

.jgy-economy-gallery{

    grid-template-columns:1fr;

    gap:24px;

}

.jgy-solution-image{

    order:2;

}

.jgy-solution-text{

    order:1;

}

.jgy-community-image{

    order:1;

}

.jgy-community-content{

    order:2;

}

.jgy-solution-image img,
.jgy-community-image img,
.jgy-economy-gallery img{

    border-radius:12px;

}

/* =======================================================
  END OF RESPONSIVE — CONTENT BLOCKS
======================================================= */

/* =======================================================
   RESPONSIVE — VALUES
======================================================= */

.jgy-values{

    padding:80px 0;

}

.jgy-values-grid{

    grid-template-columns:1fr;

    gap:24px;

    margin-top:40px;

}

.jgy-value-card{

    padding:28px;

}

.jgy-value-card h3{

    font-size:24px;

}

.jgy-value-card p{

    font-size:17px;

}

/* =======================================================
   END OF RESPONSIVE — VALUES
======================================================= */

/* =======================================================
   RESPONSIVE — CTA
======================================================= */

.jgy-cta{

    padding:80px 0;

}

.jgy-cta h2{

    font-size:34px;

    line-height:1.2;

    margin:18px auto 24px;

}

.jgy-cta p{

    font-size:17px;

    line-height:1.7;

}

.jgy-contact{

    margin-top:30px !important;

    font-size:18px !important;

    word-break:break-word;

}

.jgy-contact a{

    display:inline-block;

    margin-top:8px;

}
/* =======================================================
   END OF RESPONSIVE — CTA
======================================================= */

}

.jgy-footer{

    background:#16265A;

    color:#fff;

    text-align:center;

    padding:50px 0;

}

.jgy-footer small{

    color:rgba(255,255,255,.45);

    font-size:14px;

}