/* =========================================
GLOBAL
========================================= */

body{
    margin:0;
    padding:0;
    background:#f4f7fb;
    font-family:'Inter',sans-serif;
    color:#111827;
    overflow-x:hidden;
}

*{
    box-sizing:border-box;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.rr-container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 18px;
}

/* =========================================
HERO
========================================= */

.rr-home-hero{
    position:relative;
    padding:70px 0 80px;
    background:
    radial-gradient(circle at top left,#2563eb15,transparent 30%),
    radial-gradient(circle at top right,#7c3aed12,transparent 30%),
    linear-gradient(to bottom,#ffffff,#eef4ff);
}

.rr-home-hero-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.rr-mini-badge{
    display:inline-block;
    background:#dbeafe;
    color:#1d4ed8;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:24px;
}

.rr-home-hero h1{
    margin:0 0 20px;
    font-size:60px;
    line-height:1.08;
    font-weight:800;
    color:#0f172a;
    letter-spacing:-2px;
}

.rr-home-hero p{
    max-width:820px;
    margin:auto;
    color:#475569;
    font-size:18px;
    line-height:1.9;
}

/* =========================================
SEARCH
========================================= */

.rr-search-wrapper{
    max-width:1050px;
    margin:45px auto 0;
}

.rr-search-box{
    background:#ffffff;
    border-radius:26px;
    padding:22px;
    border:1px solid #e2e8f0;
    box-shadow:
    0 16px 40px rgba(37,99,235,0.10),
    0 6px 18px rgba(0,0,0,0.04);
}

.rr-job-search-form{
    display:grid;
    grid-template-columns:2fr 2fr 1fr;
    gap:16px;
}

.rr-job-search-form input{
    width:100%;
    height:66px;
    border:none;
    border-radius:18px;
    background:#f8fafc;
    border:1px solid #dbe2ea;
    padding:0 22px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.rr-job-search-form input:focus{
    background:#ffffff;
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,0.08);
}

.rr-job-search-form button{
    height:66px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#ffffff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 10px 24px rgba(37,99,235,0.25);
}

.rr-job-search-form button:hover{
    transform:translateY(-2px);
}

/* =========================================
STATS
========================================= */

.rr-home-stats{
    margin-top:45px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.rr-stat-box{
    background:#ffffff;
    border-radius:22px;
    padding:28px 18px;
    text-align:center;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 22px rgba(0,0,0,0.04);
}

.rr-stat-box h3{
    margin:0;
    font-size:38px;
    color:#2563eb;
    font-weight:800;
}

.rr-stat-box p{
    margin:10px 0 0;
    color:#64748b;
    font-size:14px;
}

/* =========================================
SECTION HEADING
========================================= */

.rr-section-heading{
    text-align:center;
    margin-bottom:45px;
}

.rr-section-heading span{
    display:inline-block;
    background:#eff6ff;
    color:#2563eb;
    padding:8px 16px;
    border-radius:40px;
    font-size:12px;
    font-weight:700;
    margin-bottom:16px;
}

.rr-section-heading h2{
    margin:0 0 18px;
    font-size:42px;
    line-height:1.2;
    font-weight:800;
    color:#0f172a;
}

.rr-section-heading p{
    max-width:800px;
    margin:auto;
    color:#64748b;
    font-size:16px;
    line-height:1.8;
}

/* =========================================
INDUSTRIES
========================================= */

.rr-industries-section{
    padding:90px 0;
}

.rr-industries-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.rr-industry-card{
    background:#ffffff;
    border-radius:20px;
    padding:22px 18px;
    border:1px solid #e2e8f0;
    transition:.3s;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.04);
}

.rr-industry-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 36px rgba(37,99,235,0.10);
}

.rr-industry-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    background:linear-gradient(135deg,#eff6ff,#dbeafe);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:0 auto 16px;
}

.rr-industry-card h3{
    margin:0 0 10px;
    font-size:18px;
    color:#0f172a;
}

.rr-industry-card p{
    margin:0;
    color:#64748b;
    font-size:13px;
    line-height:1.7;
}

/* =========================================
TRUST SECTION
========================================= */

.rr-trust-section{
    padding:20px 0 90px;
}

.rr-trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.rr-trust-card{
    background:#ffffff;
    border-radius:24px;
    padding:28px 24px;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 22px rgba(0,0,0,0.04);
    transition:.3s;
}

.rr-trust-card:hover{
    transform:translateY(-5px);
}

.rr-trust-icon{
    width:68px;
    height:68px;
    border-radius:20px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-size:28px;
    margin-bottom:20px;
}

.rr-trust-card h3{
    margin:0 0 12px;
    font-size:20px;
    color:#0f172a;
}

.rr-trust-card p{
    margin:0;
    color:#64748b;
    line-height:1.8;
    font-size:14px;
}

/* =========================================
COUNTRIES
========================================= */

.rr-country-section{
    padding:20px 0 90px;
}

.rr-country-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.rr-country-card{
    background:#ffffff;
    border-radius:18px;
    padding:18px 20px;
    border:1px solid #e2e8f0;
    box-shadow:0 8px 18px rgba(0,0,0,0.04);
    transition:.3s;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    font-size:15px;
    font-weight:700;
    color:#0f172a;
}

.rr-country-card img{
    width:28px;
    height:20px;
    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);
}

/* =========================================
TESTIMONIALS
========================================= */

.rr-testimonials-section{
    padding:20px 0 100px;
}

.rr-testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.rr-testimonial-card{
    position:relative;
    background:#ffffff;
    border-radius:28px;
    padding:32px 28px;
    border:1px solid #e2e8f0;
    overflow:hidden;
    box-shadow:0 12px 28px rgba(0,0,0,0.05);
}

.rr-testimonial-card::before{
    content:'“';
    position:absolute;
    top:-12px;
    right:18px;
    font-size:110px;
    color:#eff6ff;
    font-weight:800;
}

.rr-testimonial-avatar{
    margin-bottom:18px;
}

.rr-testimonial-avatar img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #eff6ff;
    box-shadow:0 8px 18px rgba(0,0,0,0.08);
}


.rr-stars{
    color:#f59e0b;
    font-size:18px;
    margin-bottom:18px;
    letter-spacing:2px;
}

.rr-testimonial-card p{
    position:relative;
    z-index:2;
    margin:0;
    color:#475569;
    line-height:1.9;
    font-size:15px;
}

.rr-user{
    margin-top:24px;
}

.rr-user strong{
    display:block;
    color:#0f172a;
    font-size:16px;
}

.rr-user span{
    color:#64748b;
    font-size:13px;
}

/* =========================================
FAQ
========================================= */

.rr-faq-section{
    padding:20px 0 110px;
}

.rr-faq-grid{
    max-width:980px;
    margin:auto;
}

.rr-faq-item{
    background:#ffffff;
    border-radius:22px;
    border:1px solid #e2e8f0;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 10px 22px rgba(0,0,0,0.04);
}

.rr-faq-question{
    position:relative;
    padding:24px 28px;
    cursor:pointer;
    font-size:17px;
    font-weight:700;
    color:#0f172a;
}

.rr-faq-question::after{
    content:'+';
    position:absolute;
    right:28px;
    top:18px;
    font-size:32px;
    color:#2563eb;
}

.rr-faq-item.active .rr-faq-question::after{
    content:'−';
}

.rr-faq-answer{
    display:none;
    padding:0 28px 28px;
    color:#64748b;
    line-height:1.9;
    font-size:14px;
}

.rr-faq-item.active .rr-faq-answer{
    display:block;
}

/* =========================================
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:48px;
    }

    .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-home-hero{
        padding:60px 0 70px;
    }

    .rr-home-hero h1{
        font-size:38px;
    }

    .rr-home-hero p{
        font-size:16px;
    }

    .rr-job-search-form{
        grid-template-columns:1fr;
    }

    .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:34px;
    }

}

@media(max-width:480px){

    .rr-home-hero h1{
        font-size:32px;
    }

    .rr-stat-box{
        padding:24px 16px;
    }

}