/* =====================================
BASE
===================================== */

.rr-about-page{
    background:#0a0a0a;
    color:#e5e7eb;
}

.rr-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* =====================================
HERO
===================================== */

.rr-about-hero{
    padding:100px 20px;
    text-align:center;
    background:
    radial-gradient(circle at top right,rgba(139,92,246,.15),transparent 35%),
    linear-gradient(180deg,#0a0a0a,#111111);
}

.rr-about-badge{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(139,92,246,.15);
    border:1px solid rgba(139,92,246,.25);
    color:#c4b5fd;
    font-size:14px;
    margin-bottom:20px;
}

.rr-about-hero h1{
    font-size:52px;
    font-weight:800;
    color:#fff;
    margin:0 0 20px;
}

.rr-about-hero p{
    max-width:850px;
    margin:0 auto;
    color:#a1a1aa;
    font-size:18px;
    line-height:1.9;
}

/* =====================================
SECTIONS
===================================== */

.rr-about-section{
    padding:70px 0;
    background:#111111;
}

.rr-alt-section{
    background:#171717;
}

.rr-section-heading{
    margin-bottom:35px;
}

.rr-section-heading h2{
    margin:0;
    font-size:32px;
    color:#fff;
    border-left:4px solid #8b5cf6;
    padding-left:15px;
}

/* =====================================
CONTENT CARD
===================================== */

.rr-content-card{
    background:#1a1a1a;
    border:1px solid #2d2d2d;
    border-radius:18px;
    padding:30px;
}

.rr-content-card p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:18px;
}

.rr-content-card p:last-child{
    margin-bottom:0;
}

/* =====================================
FEATURE GRID
===================================== */

.rr-feature-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.rr-feature-item{
    background:#1a1a1a;
    border:1px solid #2d2d2d;
    border-radius:18px;
    padding:25px;
}

.rr-feature-item h3{
    color:#fff;
    margin:0 0 12px;
    font-size:20px;
}

.rr-feature-item p{
    color:#a1a1aa;
    line-height:1.8;
    margin:0;
}

/* =====================================
LISTS
===================================== */

.rr-about-list{
    margin:0;
    padding-left:20px;
}

.rr-about-list li{
    margin-bottom:12px;
    color:#cbd5e1;
    line-height:1.8;
}

/* =====================================
INDUSTRIES
===================================== */

.rr-industries-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.rr-industries-grid div{
    background:#1a1a1a;
    border:1px solid #2d2d2d;
    border-radius:14px;
    padding:16px 18px;
    color:#e5e7eb;
}

/* =====================================
FOUNDER
===================================== */

.rr-founder-section{
    padding:80px 0;
    background:#111111;
}

.rr-founder-grid{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:40px;
    align-items:center;
}

.rr-founder-image img{
    width:100%;
    display:block;
    border-radius:20px;
    border:1px solid #2d2d2d;
}

.rr-founder-content p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:18px;
}

.rr-left-heading{
    margin-bottom:25px;
}

/* =====================================
CTA
===================================== */

.rr-about-cta{
    padding:90px 20px;
    text-align:center;
    background:
    linear-gradient(
        135deg,
        rgba(139,92,246,.12),
        rgba(99,102,241,.12)
    );
}

.rr-about-cta-content{
    max-width:850px;
    margin:auto;
}

.rr-about-cta h2{
    color:#fff;
    font-size:40px;
    margin-bottom:20px;
}

.rr-about-cta p{
    color:#a1a1aa;
    line-height:1.9;
    margin-bottom:15px;
}

.rr-about-cta-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 28px;
    border-radius:14px;
    text-decoration:none;
    color:#fff;
    font-weight:700;
    background:
    linear-gradient(
        135deg,
        #8b5cf6,
        #6366f1
    );
    transition:.25s ease;
}

.rr-about-cta-btn:hover{
    transform:translateY(-2px);
}

/* =====================================
MOBILE
===================================== */

@media(max-width:991px){

    .rr-feature-list{
        grid-template-columns:1fr 1fr;
    }

    .rr-founder-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .rr-about-hero{
        padding:70px 20px;
    }

    .rr-about-hero h1{
        font-size:36px;
    }

    .rr-section-heading h2{
        font-size:26px;
    }

    .rr-feature-list{
        grid-template-columns:1fr;
    }

    .rr-industries-grid{
        grid-template-columns:1fr;
    }

    .rr-content-card,
    .rr-feature-item{
        padding:22px;
    }

    .rr-about-cta h2{
        font-size:30px;
    }

}