/* =========================================================
   FONTS
   Display: Plus Jakarta Sans (headings — geometric, confident)
   Body:    Inter (already loaded sitewide)
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* =========================================================
   TOKENS
========================================================= */

.rr-homepage{
    --brand:#2563eb;
    --brand-dark:#1d4ed8;
    --brand-light:#60a5fa;

    --verified:#0891b2;
    --verified-light:#22d3ee;

    --amber:#f59e0b;

    --ink:#0f172a;
    --ink-soft:#475569;
    --muted:#64748b;

    --paper:#f8fafc;
    --paper-blue:#eef4ff;
    --line:#e2e8f0;

    --radius-sm:14px;
    --radius-md:20px;
    --radius-lg:28px;

    --shadow-sm:0 8px 20px rgba(15,23,42,0.05);
    --shadow-md:0 16px 36px rgba(15,23,42,0.08);
    --shadow-brand:0 14px 32px rgba(37,99,235,0.18);
}

/* =========================================================
   LAYOUT LOCK FIX
========================================================= */

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden !important;
}

.rr-homepage{
    width:100%;
    max-width:100%;
    overflow-x:hidden !important;
}

iframe,
ins.adsbygoogle{
    max-width:100% !important;
}

.rr-home-hero,
.rr-industries-section,
.rr-trust-section,
.rr-country-section,
.rr-testimonials-section,
.rr-faq-section{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

@media screen and (orientation:landscape){

    html,
    body,
    .rr-homepage{
        width:100vw !important;
        max-width:100vw !important;
        overflow-x:hidden !important;
    }

}

/* =========================================================
   GLOBAL
========================================================= */

body{
    margin:0;
    padding:0;
    background:var(--paper);
    font-family:'Inter',sans-serif;
    color:var(--ink);
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

*{
    box-sizing:border-box;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.rr-homepage h1,
.rr-homepage h2,
.rr-homepage h3{
    font-family:'Plus Jakarta Sans','Inter',sans-serif;
}

.rr-container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:0 18px;
    overflow:hidden;
}

/* Shared dotted texture — echoes the footer's grid, ties the page together */

.rr-home-hero,
.rr-faq-section{
    position:relative;
}

.rr-home-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:radial-gradient(rgba(37,99,235,.14) 1.4px,transparent 1.4px);
    background-size:26px 26px;
    -webkit-mask-image:linear-gradient(to bottom,rgba(0,0,0,.55),transparent 70%);
    mask-image:linear-gradient(to bottom,rgba(0,0,0,.55),transparent 70%);
    pointer-events:none;
}

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

.rr-home-hero{
    padding:76px 0 84px;
    background:
    radial-gradient(circle at 15% 20%,rgba(37,99,235,.14),transparent 40%),
    radial-gradient(circle at 85% 10%,rgba(8,145,178,.10),transparent 38%),
    linear-gradient(to bottom,#ffffff,#eef4ff);
}

.rr-home-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
    text-align:center;
}

.rr-mini-badge{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#ffffff;
    color:var(--brand-dark);
    padding:9px 18px 9px 14px;
    border-radius:50px;
    border:1px solid #dbeafe;
    box-shadow:var(--shadow-sm);
    font-size:12.5px;
    font-weight:700;
    letter-spacing:.2px;
    margin-bottom:26px;
}

.rr-mini-badge::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--verified),var(--verified-light));
    box-shadow:0 0 0 3px rgba(8,145,178,.15);
    flex-shrink:0;
}

.rr-home-hero h1{
    margin:0 0 20px;
    font-size:60px;
    line-height:1.06;
    font-weight:800;
    color:var(--ink);
    letter-spacing:-1.6px;
}

.rr-home-hero p{
    max-width:780px;
    margin:auto;
    color:var(--ink-soft);
    font-size:17.5px;
    line-height:1.85;
}

/* =========================================================
   SEARCH
========================================================= */

.rr-search-wrapper{
    position:relative;
    z-index:2;
    max-width:1000px;
    margin:44px auto 0;
}

.rr-search-box{
    background:#ffffff;
    border-radius:26px;
    padding:20px;
    border:1px solid var(--line);
    box-shadow:
    0 18px 44px rgba(37,99,235,.12),
    0 6px 18px rgba(15,23,42,.05);
}

.rr-job-search-form{
    display:grid;
    grid-template-columns:2fr 2fr 1fr;
    gap:14px;
}

.rr-job-search-form input{
    width:100%;
    height:64px;
    border:1px solid #dbe2ea;
    border-radius:16px;
    background:var(--paper);
    padding:0 22px;
    font-size:15px;
    font-family:inherit;
    outline:none;
    transition:.25s ease;
}

.rr-job-search-form input::placeholder{
    color:#94a3b8;
}

.rr-job-search-form input:focus{
    background:#ffffff;
    border-color:var(--brand);
    box-shadow:0 0 0 4px rgba(37,99,235,.10);
}

.rr-job-search-form button{
    height:64px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,var(--brand),var(--brand-dark));
    color:#ffffff;
    font-size:15.5px;
    font-weight:700;
    font-family:inherit;
    letter-spacing:.2px;
    cursor:pointer;
    transition:.25s ease;
    box-shadow:0 12px 26px rgba(37,99,235,.28);
}

.rr-job-search-form button:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 32px rgba(37,99,235,.36);
}

/* =========================================================
   STATS
========================================================= */

.rr-home-stats{
    position:relative;
    z-index:2;
    margin-top:42px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.rr-stat-box{
    background:#ffffff;
    border-radius:20px;
    padding:26px 16px;
    text-align:center;
    border:1px solid var(--line);
    box-shadow:var(--shadow-sm);
    transition:.25s ease;
}

.rr-stat-box:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-md);
    border-color:#c7d9fb;
}

.rr-stat-box h3{
    margin:0;
    font-size:34px;
    background:linear-gradient(135deg,var(--brand),var(--verified));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    font-weight:800;
    letter-spacing:-.5px;
}

.rr-stat-box p{
    margin:8px 0 0;
    color:var(--muted);
    font-size:13.5px;
    font-weight:500;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.rr-section-heading{
    text-align:center;
    margin-bottom:46px;
}

.rr-section-heading span{
    display:inline-block;
    background:var(--paper-blue);
    color:var(--brand);
    padding:8px 16px;
    border-radius:40px;
    font-size:11.5px;
    font-weight:700;
    letter-spacing:.6px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.rr-section-heading h2{
    margin:0 0 16px;
    font-size:40px;
    line-height:1.2;
    font-weight:800;
    color:var(--ink);
    letter-spacing:-1px;
}

.rr-section-heading p{
    max-width:760px;
    margin:auto;
    color:var(--muted);
    font-size:15.5px;
    line-height:1.8;
}

/* =========================================================
   INDUSTRIES
========================================================= */

.rr-industries-section{
    padding:90px 0;
}

.rr-industries-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
}

.rr-industry-card{
    background:#ffffff;
    border-radius:18px;
    padding:22px 16px;
    border:1px solid var(--line);
    transition:.25s ease;
    text-align:center;
    box-shadow:var(--shadow-sm);
}

.rr-industry-card:hover{
    transform:translateY(-5px);
    border-color:#c7d9fb;
    box-shadow:0 18px 34px rgba(37,99,235,.12);
}

.rr-industry-icon{
    width:54px;
    height:54px;
    border-radius:16px;
    background:linear-gradient(135deg,var(--paper-blue),#dbeafe);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--brand);
    margin:0 auto 14px;
    transition:.25s ease;
    overflow:visible;
}

.rr-industry-icon svg{
    width:32px;
    height:32px;
    display:block;
    flex:0 0 32px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
    overflow:visible;
}

.rr-industry-icon svg path,
.rr-industry-icon svg rect,
.rr-industry-icon svg circle,
.rr-industry-icon svg line,
.rr-industry-icon svg polyline,
.rr-industry-icon svg polygon{
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.rr-industry-card:hover .rr-industry-icon{
    background:linear-gradient(135deg,var(--brand),var(--verified));
    color:#ffffff;
    transform:scale(1.06);
}

.rr-industry-card h3{
    margin:0 0 8px;
    font-size:16.5px;
    font-weight:700;
    color:var(--ink);
}

.rr-industry-card p{
    margin:0;
    color:var(--muted);
    font-size:12.5px;
    line-height:1.65;
}

/* =========================================================
   TRUST SECTION
========================================================= */

.rr-trust-section{
    padding:20px 0 90px;
}

.rr-trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.rr-trust-card{
    position:relative;
    background:#ffffff;
    border-radius:22px;
    padding:28px 24px;
    border:1px solid var(--line);
    box-shadow:var(--shadow-sm);
    transition:.25s ease;
    overflow:hidden;
}

.rr-trust-card::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,var(--brand),var(--verified));
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .3s ease;
}

.rr-trust-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-md);
}

.rr-trust-card:hover::after{
    transform:scaleX(1);
}

.rr-trust-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:linear-gradient(135deg,var(--brand),var(--brand-dark));
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-size:24px;
    margin-bottom:20px;
    box-shadow:var(--shadow-brand);
}

.rr-trust-card h3{
    margin:0 0 10px;
    font-size:18.5px;
    font-weight:700;
    color:var(--ink);
}

.rr-trust-card p{
    margin:0;
    color:var(--muted);
    line-height:1.75;
    font-size:13.5px;
}

/* =========================================================
   COUNTRIES
========================================================= */

.rr-country-section{
    padding:20px 0 90px;
}

.rr-country-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
}

.rr-country-card{
    background:#ffffff;
    border-radius:16px;
    padding:16px 18px;
    border:1px solid var(--line);
    box-shadow:var(--shadow-sm);
    transition:.25s ease;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:11px;

    font-size:14.5px;
    font-weight:700;
    color:var(--ink);
}

.rr-country-card img{
    width:26px;
    height:19px;
    object-fit:cover;
    border-radius:4px;
    box-shadow:0 1px 4px rgba(0,0,0,0.15);
    flex-shrink:0;
}

.rr-country-card span{
    display:block;
    line-height:1.2;
}

.rr-country-card:hover{
    transform:translateY(-4px);
    border-color:#c7d9fb;
    box-shadow:0 14px 28px rgba(37,99,235,.12);
}

/* =========================================================
   TESTIMONIALS
========================================================= */

.rr-testimonials-section{
    padding:20px 0 100px;
}

.rr-testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.rr-testimonial-card{
    position:relative;
    background:#ffffff;
    border-radius:24px;
    padding:30px 26px;
    border:1px solid var(--line);
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:.25s ease;
}

.rr-testimonial-card:hover{
    box-shadow:var(--shadow-md);
    transform:translateY(-4px);
}

.rr-testimonial-card::before{
    content:'"';
    position:absolute;
    top:-18px;
    right:20px;
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size:100px;
    color:var(--paper-blue);
    font-weight:800;
    line-height:1;
}

.rr-testimonial-avatar{
    margin-bottom:16px;
}

.rr-testimonial-avatar img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid var(--paper-blue);
    box-shadow:0 6px 16px rgba(0,0,0,0.08);
}

.rr-stars{
    color:var(--amber);
    font-size:16px;
    margin-bottom:16px;
    letter-spacing:2px;
}

.rr-testimonial-card p{
    position:relative;
    z-index:2;
    margin:0;
    color:var(--ink-soft);
    line-height:1.85;
    font-size:14.5px;
}

.rr-user{
    margin-top:22px;
    padding-top:18px;
    border-top:1px solid var(--line);
}

.rr-user strong{
    display:block;
    color:var(--ink);
    font-size:15px;
    font-weight:700;
}

.rr-user span{
    color:var(--muted);
    font-size:12.5px;
}

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

.rr-faq-section{
    padding:20px 0 110px;
}

.rr-faq-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:radial-gradient(rgba(37,99,235,.10) 1.4px,transparent 1.4px);
    background-size:26px 26px;
    -webkit-mask-image:radial-gradient(circle at 50% 0%,rgba(0,0,0,.5),transparent 65%);
    mask-image:radial-gradient(circle at 50% 0%,rgba(0,0,0,.5),transparent 65%);
    pointer-events:none;
}

.rr-faq-grid{
    position:relative;
    z-index:2;
    max-width:960px;
    margin:auto;
}

.rr-faq-item{
    background:#ffffff;
    border-radius:18px;
    border:1px solid var(--line);
    margin-bottom:14px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:border-color .25s ease,box-shadow .25s ease;
}

.rr-faq-item.active{
    border-color:#c7d9fb;
    box-shadow:var(--shadow-md);
}

.rr-faq-question{
    position:relative;
    padding:22px 60px 22px 26px;
    cursor:pointer;
    font-size:16px;
    font-weight:700;
    color:var(--ink);
    transition:color .2s ease;
}

.rr-faq-item.active .rr-faq-question{
    color:var(--brand-dark);
}

.rr-faq-question::after{
    content:'+';
    position:absolute;
    right:24px;
    top:50%;
    transform:translateY(-50%);
    width:28px;
    height:28px;
    border-radius:50%;
    background:var(--paper-blue);
    color:var(--brand);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
    transition:.25s ease;
}

.rr-faq-item.active .rr-faq-question::after{
    content:'−';
    background:linear-gradient(135deg,var(--brand),var(--brand-dark));
    color:#fff;
    transform:translateY(-50%) rotate(180deg);
}

.rr-faq-answer{
    display:none;
    padding:0 26px 26px;
    color:var(--muted);
    line-height:1.85;
    font-size:14px;
}

.rr-faq-item.active .rr-faq-answer{
    display:block;
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce){

    .rr-homepage *{
        transition:none !important;
        animation:none !important;
    }

}

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

@media(max-width:1200px){

    .rr-industries-grid{
        grid-template-columns:repeat(4,1fr);
    }

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

}

@media(max-width:992px){

    .rr-home-hero h1{
        font-size:46px;
    }

    .rr-home-stats,
    .rr-trust-grid,
    .rr-testimonials-grid{
        grid-template-columns:repeat(2,1fr);
    }

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

}

@media(max-width:768px){

    .rr-industry-icon{
        width:54px;
        height:54px;
    }

    .rr-industry-icon svg{
        width:30px;
        height:30px;
        flex-basis:30px;
    }

    .rr-home-hero{
        padding:56px 0 66px;
    }

    .rr-home-hero h1{
        font-size:36px;
        letter-spacing:-1px;
    }

    .rr-home-hero p{
        font-size:15.5px;
    }

    .rr-job-search-form{
        grid-template-columns:1fr;
    }

    .rr-job-search-form button{
        margin-top:2px;
    }

    .rr-home-stats,
    .rr-industries-grid,
    .rr-trust-grid,
    .rr-country-grid,
    .rr-testimonials-grid{
        grid-template-columns:1fr;
    }

    .rr-section-heading h2{
        font-size:30px;
    }

    .rr-faq-question{
        font-size:15px;
        padding:20px 54px 20px 20px;
    }

}

@media(max-width:480px){

    .rr-home-hero h1{
        font-size:29px;
    }

    .rr-stat-box{
        padding:22px 14px;
    }

    .rr-stat-box h3{
        font-size:28px;
    }

}