/* ==========================================================
   RAVIDEX V2
   Home Page Styles
========================================================== */


/* ==========================================================
   Container
========================================================== */

.rv-container {

    width: min(1200px, 90%);

    margin: 0 auto;

}



/* ==========================================================
   Hero Section
========================================================== */

.rv-hero {

    background: linear-gradient(
        135deg,
        #0F172A,
        #1E293B
    );

    color: #ffffff;

    padding: 100px 0;

    text-align: center;

}



/* Hero Title */

.rv-hero h1 {

    font-size: 52px;

    line-height: 1.3;

    font-weight: 800;

    margin-bottom: 25px;

    color: #ffffff;

}



/* Highlight Text */

.rv-hero h1 span {

    color: #F59E0B;

}



/* Hero Description */

.rv-hero p {

    max-width: 750px;

    margin: 0 auto 35px;

    font-size: 20px;

    line-height: 2;

    color: #E2E8F0;

}



/* ==========================================================
   Buttons
========================================================== */

.rv-btn {

    display: inline-block;

    padding: 15px 35px;

    background: #F59E0B;

    color: #ffffff !important;

    border-radius: 8px;

    text-decoration: none;

    font-size: 17px;

    font-weight: 700;

    transition: .3s;

}



.rv-btn:hover {

    background: #D97706;

}



/* Header Button */

.rv-header-button .rv-btn {

    padding: 10px 22px;

    font-size: 15px;

}



/* ==========================================================
   Responsive
========================================================== */

@media (max-width:768px) {


    .rv-hero {

        padding: 60px 0;

    }


    .rv-hero h1 {

        font-size: 34px;

    }


    .rv-hero p {

        font-size: 17px;

    }


}

/* ==========================================================
   RAVIDEX Approach Section
========================================================== */


.rv-approach {

    background:#ffffff;

    padding:90px 0;

    text-align:center;

}


.rv-approach h2 {

    font-size:38px;

    color:#0F172A;

    margin-bottom:20px;

}


.rv-section-desc {

    max-width:800px;

    margin:0 auto 50px;

    color:#475569;

    font-size:18px;

    line-height:2;

}


.rv-cards {

    display:grid;

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

    gap:30px;

}


.rv-card {

    background:#ffffff;

    padding:35px 25px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(15,23,42,.08);

    transition:.3s;

    border-top:4px solid #F59E0B;

}


.rv-card:hover {

    transform:translateY(-8px);

}


.rv-card h3 {

    color:#0F172A;

    font-size:22px;

    margin-bottom:15px;

}


.rv-card p {

    color:#475569;

    line-height:2;

}


@media(max-width:768px){

    .rv-cards{

        grid-template-columns:1fr;

    }

}

/* ==========================================================
   RAVIDEX Development Programs
========================================================== */


.rv-workshops {

    background:#F8FAFC;

    padding:90px 0;

    text-align:center;

}


.rv-workshops h2 {

    font-size:38px;

    color:#0F172A;

    margin-bottom:20px;

}


.rv-workshops .rv-card {

    border-top:4px solid #14B8A6;

}


.rv-workshops .rv-card:hover {

    border-top-color:#F59E0B;

}

/* ==========================================================
   RAVIDEX Solutions Section
========================================================== */


.rv-solutions {

    background:#ffffff;

    padding:90px 0;

    text-align:center;

}


.rv-solutions h2 {

    font-size:38px;

    color:#0F172A;

    margin-bottom:20px;

}


.rv-solutions-grid {

    display:grid;

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

    gap:25px;

    margin-top:50px;

}



.rv-solution-card {

    background:#F8FAFC;

    padding:35px 25px;

    border-radius:15px;

    text-align:right;

    position:relative;

    transition:.3s;

    border-bottom:4px solid transparent;

}



.rv-solution-card:hover {

    transform:translateY(-8px);

    border-bottom-color:#F59E0B;

}



.rv-number {

    display:block;

    font-size:42px;

    font-weight:800;

    color:#F59E0B;

    margin-bottom:20px;

}



.rv-solution-card h3 {

    color:#0F172A;

    font-size:22px;

    margin-bottom:15px;

}



.rv-solution-card p {

    color:#475569;

    line-height:2;

    font-size:16px;

}



@media(max-width:992px){

    .rv-solutions-grid {

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

    }

}



@media(max-width:768px){

    .rv-solutions-grid {

        grid-template-columns:1fr;

    }

}

/* ==========================================================
    RAVIDEX Hero V2
========================================================== */

.rv-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 95px;
    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(20, 184, 166, 0.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--rv-color-primary) 0%,
            #17233a 55%,
            var(--rv-color-primary-soft) 100%
        );
    color: var(--rv-color-white);
    text-align: right;
}

.rv-hero::before {
    position: absolute;
    top: -180px;
    left: -120px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.rv-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    align-items: center;
    gap: 72px;
}

.rv-hero__content {
    max-width: 720px;
}

.rv-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: #fbbf24;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.rv-hero__eyebrow::before {
    width: 34px;
    height: 2px;
    background: currentColor;
    content: "";
}

.rv-hero h1 {
    margin: 0 0 25px;
    color: var(--rv-color-white);
    font-size: clamp(2.65rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.25;
}

.rv-hero h1 span {
    display: block;
    color: var(--rv-color-secondary);
}

.rv-hero .rv-hero__description {
    max-width: 690px;
    margin: 0 0 35px;
    color: #dbe4ef;
    font-size: 1.14rem;
    line-height: 2;
}

.rv-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.rv-btn--primary {
    background: var(--rv-color-secondary);
    border-color: var(--rv-color-secondary);
}

.rv-btn--outline {
    color: var(--rv-color-white) !important;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.42);
}

.rv-btn--outline:hover,
.rv-btn--outline:focus {
    color: var(--rv-color-primary) !important;
    background: var(--rv-color-white);
    border-color: var(--rv-color-white);
}

.rv-hero__visual {
    position: relative;
}

.rv-decision-card {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    color: var(--rv-color-text);
}

.rv-decision-card::before {
    position: absolute;
    top: -10px;
    right: 32px;
    width: 68px;
    height: 5px;
    background: var(--rv-color-secondary);
    border-radius: 10px;
    content: "";
}

.rv-decision-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--rv-color-border);
}

.rv-decision-card__header > div {
    display: grid;
    gap: 5px;
}

.rv-decision-card__label {
    color: var(--rv-color-text-soft);
    font-size: 0.8rem;
}

.rv-decision-card__header strong {
    color: var(--rv-color-primary);
    font-size: 1.15rem;
}

.rv-decision-card__status {
    padding: 7px 11px;
    color: #0f766e;
    background: #ccfbf1;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.rv-decision-card__score {
    padding: 24px 0;
}

.rv-decision-card__score > span {
    color: var(--rv-color-text-soft);
    font-size: 0.88rem;
}

.rv-decision-card__score > strong {
    display: block;
    margin: 6px 0 12px;
    color: var(--rv-color-primary);
    font-size: 2.15rem;
    line-height: 1.2;
}

.rv-decision-card__progress {
    height: 8px;
    overflow: hidden;
    background: #e9eef5;
    border-radius: 20px;
}

.rv-decision-card__progress span {
    display: block;
    width: 84%;
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--rv-color-accent),
        var(--rv-color-secondary)
    );
    border-radius: inherit;
}

.rv-decision-card__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.rv-decision-card__metrics div {
    padding: 15px 10px;
    background: var(--rv-color-background);
    border: 1px solid var(--rv-color-border);
    border-radius: var(--rv-radius-medium);
    text-align: center;
}

.rv-decision-card__metrics span,
.rv-decision-card__metrics strong {
    display: block;
}

.rv-decision-card__metrics span {
    margin-bottom: 5px;
    color: var(--rv-color-text-soft);
    font-size: 0.74rem;
}

.rv-decision-card__metrics strong {
    color: var(--rv-color-primary);
    font-size: 0.84rem;
}

.rv-decision-card__note {
    padding: 17px 0 0;
    margin: 20px 0 0;
    border-top: 1px solid var(--rv-color-border);
    color: var(--rv-color-text-soft);
    font-size: 0.84rem;
    line-height: 1.8;
}

/* ==========================================================
    Trust Bar
========================================================== */

.rv-trust-bar {
    position: relative;
    z-index: 2;
    background: var(--rv-color-white);
    border-bottom: 1px solid var(--rv-color-border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.rv-trust-bar__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.rv-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 105px;
    padding: 20px 28px;
    border-left: 1px solid var(--rv-color-border);
}

.rv-trust-item:last-child {
    border-left: 0;
}

.rv-trust-item__number {
    color: var(--rv-color-secondary);
    font-size: 1.3rem;
    font-weight: 800;
}

.rv-trust-item > div {
    display: grid;
    gap: 4px;
}

.rv-trust-item strong {
    color: var(--rv-color-primary);
    font-size: 0.98rem;
}

.rv-trust-item > div > span {
    color: var(--rv-color-text-soft);
    font-size: 0.82rem;
}
.rv-hero .rv-decision-card__note {
    color: var(--rv-color-text-soft);
}

/* ==========================================================
    Why RAVIDEX V2
========================================================== */

.rv-why-v2 {
    padding: 110px 0;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            var(--rv-color-background) 100%
        );
}

.rv-why-v2__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 80px;
}

.rv-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--rv-color-secondary-dark);
    font-size: 0.92rem;
    font-weight: 800;
}

.rv-section-kicker::before {
    width: 32px;
    height: 2px;
    background: currentColor;
    content: "";
}

.rv-why-v2__content h2 {
    margin: 0 0 25px;
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    line-height: 1.45;
}

.rv-why-v2__content h2 span {
    display: block;
    color: var(--rv-color-secondary-dark);
}

.rv-why-v2__intro {
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 1.04rem;
    line-height: 2.05;
}

.rv-why-v2__quote {
    position: relative;
    padding: 23px 25px;
    margin: 32px 0 0;
    background: var(--rv-color-white);
    border: 1px solid var(--rv-color-border);
    border-right: 4px solid var(--rv-color-secondary);
    border-radius: var(--rv-radius-medium);
    box-shadow: var(--rv-shadow-small);
}

.rv-why-v2__quote p {
    margin: 0;
    color: var(--rv-color-primary);
    font-size: 1.03rem;
    font-weight: 700;
    line-height: 1.9;
}

.rv-why-v2__challenges {
    display: grid;
    gap: 18px;
}

.rv-challenge-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: start;
    gap: 20px;
    padding: 25px;
    background: var(--rv-color-white);
    border: 1px solid var(--rv-color-border);
    border-radius: var(--rv-radius-large);
    box-shadow: var(--rv-shadow-small);
    transition:
        transform var(--rv-transition-normal),
        box-shadow var(--rv-transition-normal),
        border-color var(--rv-transition-normal);
}

.rv-challenge-card:hover {
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: var(--rv-shadow-medium);
    transform: translateY(-4px);
}

.rv-challenge-card__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: var(--rv-color-secondary-dark);
    background: #fff7df;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
}

.rv-challenge-card h3 {
    margin: 0 0 7px;
    font-size: 1.08rem;
}

.rv-challenge-card p {
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 0.92rem;
    line-height: 1.85;
}

/* ==========================================================
    Project Lighthouse
========================================================== */

.rv-lighthouse {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(20, 184, 166, 0.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #0b1324 0%,
            var(--rv-color-primary) 55%,
            #16243c 100%
        );
    color: var(--rv-color-white);
}

.rv-lighthouse::before {
    position: absolute;
    top: -170px;
    right: -170px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
}

.rv-lighthouse__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 80px;
}

.rv-lighthouse__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--rv-color-secondary);
    font-size: 0.92rem;
    font-weight: 800;
}

.rv-lighthouse__eyebrow::before {
    width: 32px;
    height: 2px;
    background: currentColor;
    content: "";
}

.rv-lighthouse__content h2 {
    margin: 0 0 12px;
    color: var(--rv-color-white);
    font-size: clamp(2.5rem, 5vw, 4.35rem);
    line-height: 1.15;
}

.rv-lighthouse__content > h3 {
    margin: 0 0 25px;
    color: var(--rv-color-secondary);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.rv-lighthouse__description {
    max-width: 620px;
    margin: 0 0 32px;
    color: #d6deea;
    font-size: 1.02rem;
    line-height: 2.05;
}

.rv-btn--lighthouse {
    background: var(--rv-color-secondary);
    border-color: var(--rv-color-secondary);
}

.rv-lighthouse__path {
    position: relative;
    display: grid;
    gap: 16px;
}

.rv-lighthouse__path::before {
    position: absolute;
    top: 36px;
    right: 28px;
    bottom: 36px;
    width: 2px;
    background: linear-gradient(
        var(--rv-color-secondary),
        var(--rv-color-accent)
    );
    content: "";
}

.rv-lighthouse-step {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--rv-radius-large);
    backdrop-filter: blur(10px);
    transition:
        transform var(--rv-transition-normal),
        background-color var(--rv-transition-normal);
}

.rv-lighthouse-step:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateX(-5px);
}

.rv-lighthouse-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--rv-color-primary);
    background: var(--rv-color-secondary);
    border: 5px solid var(--rv-color-primary);
    border-radius: 50%;
    font-weight: 800;
}

.rv-lighthouse-step h3 {
    margin: 0 0 5px;
    color: var(--rv-color-white);
    font-size: 1.05rem;
}

.rv-lighthouse-step p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.88rem;
    line-height: 1.8;
}