/**
 * RAVIDEX final responsive overrides
 */

@media (max-width: 991px) {
    .rv-hero__grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 48px;
    }

    .rv-hero__content,
    .rv-hero__visual {
        width: 100%;
        max-width: 100%;
    }

    .rv-hero__visual {
        width: min(100%, 580px);
    }

    .rv-decision-card {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .rv-hero {
        padding: 60px 0 50px;
    }

    .rv-hero__grid {
        gap: 38px;
    }

    .rv-hero h1 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
    }

    .rv-hero .rv-hero__description {
        font-size: 1rem;
        line-height: 1.9;
    }

    .rv-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rv-hero__actions .rv-btn {
        width: 100%;
    }

    .rv-trust-bar__items {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .rv-trust-item {
        justify-content: flex-start;
        min-height: 88px;
        border-bottom: 1px solid var(--rv-color-border);
        border-left: 0;
    }

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

@media (max-width: 480px) {
    .rv-decision-card {
        padding: 22px;
    }

    .rv-decision-card__header {
        display: grid;
    }

    .rv-decision-card__status {
        justify-self: start;
    }

    .rv-decision-card__metrics {
        grid-template-columns: 1fr;
    }

    .rv-decision-card__metrics div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: right;
    }
}

/* Sprint 2 responsive */

@media (max-width: 991px) {
    .rv-why-v2,
    .rv-lighthouse {
        padding: 85px 0;
    }

    .rv-why-v2__grid,
    .rv-lighthouse__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 55px;
    }

    .rv-why-v2__content,
    .rv-lighthouse__content {
        max-width: 760px;
    }
}

@media (max-width: 767px) {
    .rv-why-v2,
    .rv-lighthouse {
        padding: 65px 0;
    }

    .rv-why-v2__grid,
    .rv-lighthouse__grid {
        gap: 42px;
    }

    .rv-challenge-card {
        grid-template-columns: 48px 1fr;
        gap: 15px;
        padding: 21px 18px;
    }

    .rv-challenge-card__number {
        width: 44px;
        height: 44px;
    }

    .rv-lighthouse__content h2 {
        font-size: clamp(2.25rem, 11vw, 3.2rem);
    }

    .rv-btn--lighthouse {
        width: 100%;
    }

    .rv-lighthouse-step {
        grid-template-columns: 50px 1fr;
        gap: 15px;
        padding: 19px 16px;
    }

    .rv-lighthouse-step__number {
        width: 48px;
        height: 48px;
        border-width: 4px;
    }

    .rv-lighthouse__path::before {
        right: 24px;
    }
}

@media (max-width: 420px) {
    .rv-challenge-card,
    .rv-lighthouse-step {
        grid-template-columns: 1fr;
    }

    .rv-lighthouse__path::before {
        display: none;
    }
}

/* ==========================================================
    Sprint 2 — Why RAVIDEX
========================================================== */

.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;
    color: var(--rv-color-primary);
    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 {
    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;
    color: var(--rv-color-primary);
    font-size: 1.08rem;
}

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

/* ==========================================================
    Sprint 2 — 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;
}

/* ==========================================================
    Sprint 2 — Responsive
========================================================== */

@media (max-width: 991px) {
    .rv-why-v2,
    .rv-lighthouse {
        padding: 85px 0;
    }

    .rv-why-v2__grid,
    .rv-lighthouse__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 55px;
    }

    .rv-why-v2__content,
    .rv-lighthouse__content {
        max-width: 760px;
    }
}

@media (max-width: 767px) {
    .rv-why-v2,
    .rv-lighthouse {
        padding: 65px 0;
    }

    .rv-why-v2__grid,
    .rv-lighthouse__grid {
        gap: 42px;
    }

    .rv-challenge-card {
        grid-template-columns: 48px 1fr;
        gap: 15px;
        padding: 21px 18px;
    }

    .rv-challenge-card__number {
        width: 44px;
        height: 44px;
    }

    .rv-lighthouse__content h2 {
        font-size: clamp(2.25rem, 11vw, 3.2rem);
    }

    .rv-btn--lighthouse {
        width: 100%;
    }

    .rv-lighthouse-step {
        grid-template-columns: 50px 1fr;
        gap: 15px;
        padding: 19px 16px;
    }

    .rv-lighthouse-step__number {
        width: 48px;
        height: 48px;
        border-width: 4px;
    }

    .rv-lighthouse__path::before {
        right: 24px;
    }
}

@media (max-width: 420px) {
    .rv-challenge-card,
    .rv-lighthouse-step {
        grid-template-columns: 1fr;
    }

    .rv-lighthouse__path::before {
        display: none;
    }
}
 .rv-why-v2 blockquote.rv-why-v2__quote {
    border-top: 1px solid var(--rv-color-border);
    border-bottom: 1px solid var(--rv-color-border);
    border-left: 1px solid var(--rv-color-border) !important;
    border-right: 4px solid var(--rv-color-secondary) !important;
}

.rv-why-v2 .rv-section-kicker {
    padding: 8px 14px;
    margin-bottom: 22px;
    color: #b96700;
    background: #fff4d6;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 30px;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.5;
}

.rv-why-v2 .rv-section-kicker::before {
    width: 38px;
    height: 3px;
    background: var(--rv-color-secondary);
    border-radius: 3px;
}

/* ==========================================================
    Sprint 3 — Management Decision Workshops
========================================================== */

.rv-workshops-v2 {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background: #f4f7fb;
}

.rv-workshops-v2::before {
    position: absolute;
    top: -160px;
    left: -160px;
    width: 420px;
    height: 420px;
    background: rgba(20, 184, 166, 0.06);
    border-radius: 50%;
    content: "";
}

.rv-workshops-v2__header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 55px;
}

.rv-workshops-v2__heading h2 {
    max-width: 650px;
    margin: 0;
    color: var(--rv-color-primary);
    font-size: clamp(2.15rem, 4vw, 3.4rem);
    line-height: 1.4;
}

.rv-workshops-v2__intro {
    max-width: 680px;
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 1.02rem;
    line-height: 2.05;
}

.rv-workshops-v2__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.rv-workshop-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px;
    overflow: hidden;
    background: var(--rv-color-white);
    border: 1px solid var(--rv-color-border);
    border-top: 4px solid var(--rv-color-accent);
    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-workshop-card::after {
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 150px;
    height: 150px;
    background: rgba(20, 184, 166, 0.05);
    border-radius: 50%;
    content: "";
}

.rv-workshop-card:hover {
    border-color: rgba(20, 184, 166, 0.45);
    border-top-color: var(--rv-color-secondary);
    box-shadow: var(--rv-shadow-medium);
    transform: translateY(-7px);
}

.rv-workshop-card--featured {
    border-top-color: var(--rv-color-secondary);
}

.rv-workshop-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 26px;
}

.rv-workshop-card__number {
    color: var(--rv-color-secondary-dark);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.rv-workshop-card__type {
    padding: 6px 11px;
    color: #0f766e;
    background: #ccfbf1;
    border-radius: 30px;
    font-size: 0.74rem;
    font-weight: 700;
}

.rv-workshop-card--featured .rv-workshop-card__type {
    color: #9a5800;
    background: #fff1c7;
}

.rv-workshop-card h3 {
    min-height: 70px;
    margin: 0 0 16px;
    color: var(--rv-color-primary);
    font-size: 1.28rem;
    line-height: 1.65;
}

.rv-workshop-card > p {
    margin: 0 0 23px;
    color: var(--rv-color-text-soft);
    font-size: 0.92rem;
    line-height: 1.9;
}

.rv-workshop-card__list {
    display: grid;
    gap: 11px;
    padding: 20px 0;
    margin: auto 0 22px;
    border-top: 1px solid var(--rv-color-border);
    border-bottom: 1px solid var(--rv-color-border);
    list-style: none;
}

.rv-workshop-card__list li {
    position: relative;
    padding-right: 20px;
    color: var(--rv-color-text);
    font-size: 0.88rem;
    line-height: 1.7;
}

.rv-workshop-card__list li::before {
    position: absolute;
    top: 0.75em;
    right: 0;
    width: 7px;
    height: 7px;
    background: var(--rv-color-accent);
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
}

.rv-workshop-card__link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;
    color: var(--rv-color-primary);
    font-size: 0.9rem;
    font-weight: 800;
}

.rv-workshop-card__link span {
    color: var(--rv-color-secondary-dark);
    font-size: 1.25rem;
    transition: transform var(--rv-transition-fast);
}

.rv-workshop-card__link:hover {
    color: var(--rv-color-secondary-dark);
}

.rv-workshop-card__link:hover span {
    transform: translateX(-5px);
}

.rv-workshops-v2__footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 27px 30px;
    margin-top: 32px;
    background: var(--rv-color-primary);
    border-radius: var(--rv-radius-large);
    box-shadow: var(--rv-shadow-medium);
}

.rv-workshops-v2__footer p {
    margin: 0;
    color: #dbe4ef;
    font-size: 0.95rem;
}

.rv-btn--workshops {
    flex: 0 0 auto;
}

/* Workshops responsive */

@media (max-width: 991px) {
    .rv-workshops-v2 {
        padding: 85px 0;
    }

    .rv-workshops-v2__header {
        grid-template-columns: minmax(0, 1fr);
        gap: 25px;
    }

    .rv-workshops-v2__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rv-workshop-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .rv-workshops-v2 {
        padding: 65px 0;
    }

    .rv-workshops-v2__header {
        margin-bottom: 38px;
    }

    .rv-workshops-v2__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .rv-workshop-card:last-child {
        grid-column: auto;
    }

    .rv-workshop-card {
        padding: 25px 21px;
    }

    .rv-workshop-card h3 {
        min-height: 0;
    }

    .rv-workshops-v2__footer {
        display: grid;
        padding: 24px 21px;
    }

    .rv-btn--workshops {
        width: 100%;
    }
}

/* ==========================================================
    Sprint 3 — RAVIDEX Services
========================================================== */

.rv-services-v2 {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background: var(--rv-color-white);
}

.rv-services-v2__header {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 55px;
}

.rv-services-v2__header h2 {
    margin: 0;
    color: var(--rv-color-primary);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.35;
}

.rv-services-v2__header > p {
    max-width: 690px;
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 1.02rem;
    line-height: 2.05;
}

.rv-services-v2__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--rv-color-border);
    border-right: 1px solid var(--rv-color-border);
}

.rv-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 38px;
    overflow: hidden;
    background: var(--rv-color-white);
    border-bottom: 1px solid var(--rv-color-border);
    border-left: 1px solid var(--rv-color-border);
    transition:
        background-color var(--rv-transition-normal),
        box-shadow var(--rv-transition-normal);
}

.rv-service-card::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--rv-color-secondary),
        var(--rv-color-accent)
    );
    content: "";
    transition: width var(--rv-transition-normal);
}

.rv-service-card:hover {
    z-index: 2;
    background: #fbfcfe;
    box-shadow: var(--rv-shadow-medium);
}

.rv-service-card:hover::before {
    width: 100%;
}

.rv-service-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.rv-service-card__number {
    color: var(--rv-color-secondary-dark);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
}

.rv-service-card__line {
    width: 65px;
    height: 1px;
    background: var(--rv-color-border);
}

.rv-service-card h3 {
    margin: 0 0 15px;
    color: var(--rv-color-primary);
    font-size: 1.35rem;
    line-height: 1.55;
}

.rv-service-card > p {
    margin: 0 0 22px;
    color: var(--rv-color-text-soft);
    font-size: 0.94rem;
    line-height: 1.95;
}

.rv-service-card ul {
    display: grid;
    gap: 10px;
    padding: 20px 0;
    margin: auto 0 22px;
    border-top: 1px solid var(--rv-color-border);
    list-style: none;
}

.rv-service-card li {
    position: relative;
    padding-right: 19px;
    color: var(--rv-color-text);
    font-size: 0.88rem;
    line-height: 1.7;
}

.rv-service-card li::before {
    position: absolute;
    top: 0.75em;
    right: 0;
    width: 7px;
    height: 7px;
    background: var(--rv-color-secondary);
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
}

.rv-service-card > a {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;
    color: var(--rv-color-primary);
    font-size: 0.9rem;
    font-weight: 800;
}

.rv-service-card > a span {
    color: var(--rv-color-secondary-dark);
    font-size: 1.25rem;
    transition: transform var(--rv-transition-fast);
}

.rv-service-card > a:hover {
    color: var(--rv-color-secondary-dark);
}

.rv-service-card > a:hover span {
    transform: translateX(-5px);
}

.rv-services-v2__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 32px 38px;
    margin-top: 34px;
    background:
        linear-gradient(
            135deg,
            var(--rv-color-primary),
            var(--rv-color-primary-soft)
        );
    border-radius: var(--rv-radius-large);
    box-shadow: var(--rv-shadow-medium);
}

.rv-services-v2__cta > div {
    display: grid;
    gap: 7px;
}

.rv-services-v2__cta span {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.rv-services-v2__cta strong {
    color: var(--rv-color-white);
    font-size: 1.12rem;
    line-height: 1.7;
}

.rv-btn--services {
    flex: 0 0 auto;
}

/* Services responsive */

@media (max-width: 991px) {
    .rv-services-v2 {
        padding: 85px 0;
    }

    .rv-services-v2__header {
        grid-template-columns: minmax(0, 1fr);
        gap: 25px;
    }

    .rv-service-card {
        padding: 31px;
    }
}

@media (max-width: 767px) {
    .rv-services-v2 {
        padding: 65px 0;
    }

    .rv-services-v2__header {
        margin-bottom: 38px;
    }

    .rv-services-v2__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .rv-service-card {
        padding: 28px 22px;
    }

    .rv-services-v2__cta {
        display: grid;
        padding: 26px 22px;
    }

    .rv-btn--services {
        width: 100%;
    }
}

/* ==========================================================
    Sprint 4 — RAVIDEX Podcast
========================================================== */

.rv-podcast {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(245, 158, 11, 0.1),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #0b1324 0%,
            var(--rv-color-primary) 60%,
            #17263e 100%
        );
    color: var(--rv-color-white);
}

.rv-podcast::before {
    position: absolute;
    top: -190px;
    left: -190px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
}

.rv-podcast__intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: end;
    gap: 75px;
    margin-bottom: 55px;
}

.rv-podcast__identity {
    display: flex;
    align-items: center;
    gap: 24px;
}

.rv-podcast__signal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    background: var(--rv-color-secondary);
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.25);
}

.rv-podcast__signal span {
    width: 4px;
    background: var(--rv-color-primary);
    border-radius: 5px;
}

.rv-podcast__signal span:nth-child(1),
.rv-podcast__signal span:nth-child(5) {
    height: 15px;
}

.rv-podcast__signal span:nth-child(2),
.rv-podcast__signal span:nth-child(4) {
    height: 28px;
}

.rv-podcast__signal span:nth-child(3) {
    height: 40px;
}

.rv-podcast__eyebrow {
    margin: 0 0 7px;
    color: var(--rv-color-secondary);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.rv-podcast__identity h2 {
    margin: 0;
    color: var(--rv-color-white);
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    line-height: 1.3;
}

.rv-podcast__description p {
    max-width: 640px;
    margin: 0 0 10px;
    color: #dbe4ef;
    font-size: 1.04rem;
    line-height: 2;
}

.rv-podcast__description > span {
    color: var(--rv-color-secondary);
    font-size: 0.86rem;
    font-weight: 700;
}

.rv-podcast__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.rv-podcast-card {
    overflow: hidden;
    background: var(--rv-color-white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--rv-radius-large);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    transition:
        transform var(--rv-transition-normal),
        box-shadow var(--rv-transition-normal);
}

.rv-podcast-card:hover {
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
    transform: translateY(-7px);
}

.rv-podcast-card__cover {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    padding: 25px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #17263e,
            #0b1324
        );
}

.rv-podcast-card__cover::before {
    position: absolute;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50%;
    content: "";
}

.rv-podcast-card__episode,
.rv-podcast-card__status {
    position: absolute;
    z-index: 2;
    top: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.rv-podcast-card__episode {
    right: 20px;
    color: #cbd5e1;
}

.rv-podcast-card__status {
    left: 20px;
    padding: 5px 10px;
    color: #9a5800;
    background: #fff1c7;
    border-radius: 20px;
}

.rv-podcast-card__play {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--rv-color-secondary);
    border: 7px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.rv-podcast-card__play span {
    width: 0;
    height: 0;
    margin-right: 5px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 16px solid var(--rv-color-primary);
}

.rv-podcast-card__wave {
    position: absolute;
    right: 22px;
    bottom: 20px;
    left: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 25px;
    opacity: 0.48;
}

.rv-podcast-card__wave i {
    width: 3px;
    background: var(--rv-color-accent);
    border-radius: 4px;
}

.rv-podcast-card__wave i:nth-child(1),
.rv-podcast-card__wave i:nth-child(9) {
    height: 7px;
}

.rv-podcast-card__wave i:nth-child(2),
.rv-podcast-card__wave i:nth-child(8) {
    height: 13px;
}

.rv-podcast-card__wave i:nth-child(3),
.rv-podcast-card__wave i:nth-child(7) {
    height: 20px;
}

.rv-podcast-card__wave i:nth-child(4),
.rv-podcast-card__wave i:nth-child(6) {
    height: 11px;
}

.rv-podcast-card__wave i:nth-child(5) {
    height: 24px;
    background: var(--rv-color-secondary);
}

.rv-podcast-card__body {
    min-height: 220px;
    padding: 27px;
    color: var(--rv-color-text);
}

.rv-podcast-card__category {
    display: block;
    margin-bottom: 11px;
    color: #0f766e;
    font-size: 0.76rem;
    font-weight: 800;
}

.rv-podcast-card h3 {
    margin: 0 0 13px;
    color: var(--rv-color-primary);
    font-size: 1.25rem;
    line-height: 1.65;
}

.rv-podcast-card p {
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 0.9rem;
    line-height: 1.9;
}

.rv-podcast__footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding-top: 35px;
}

.rv-podcast__footer p {
    max-width: 720px;
    margin: 0;
    color: #cbd5e1;
    font-size: 0.94rem;
    line-height: 1.9;
}

.rv-btn--podcast {
    flex: 0 0 auto;
}

/* Podcast responsive */

@media (max-width: 991px) {
    .rv-podcast {
        padding: 85px 0;
    }

    .rv-podcast__intro {
        grid-template-columns: minmax(0, 1fr);
        gap: 25px;
    }

    .rv-podcast__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rv-podcast-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .rv-podcast {
        padding: 65px 0;
    }

    .rv-podcast__identity {
        align-items: flex-start;
        gap: 16px;
    }

    .rv-podcast__signal {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .rv-podcast__signal span:nth-child(3) {
        height: 31px;
    }

    .rv-podcast__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .rv-podcast-card:last-child {
        grid-column: auto;
    }

    .rv-podcast-card__body {
        min-height: 0;
    }

    .rv-podcast__footer {
        display: grid;
    }

    .rv-btn--podcast {
        width: 100%;
    }
}

 /* ==========================================================
    Sprint 4 — RAVIDEX Insights
========================================================== */

.rv-insights {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background: #f4f7fb;
}

.rv-insights::before {
    position: absolute;
    right: -180px;
    bottom: -180px;
    width: 440px;
    height: 440px;
    background: rgba(245, 158, 11, 0.055);
    border-radius: 50%;
    content: "";
}

.rv-insights__header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 55px;
}

.rv-insights__header h2 {
    margin: 0;
    color: var(--rv-color-primary);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.35;
}

.rv-insights__intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.rv-insights__intro p {
    max-width: 620px;
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 1rem;
    line-height: 2;
}

.rv-insights__intro > a {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 8px;
    color: var(--rv-color-primary);
    font-size: 0.88rem;
    font-weight: 800;
}

.rv-insights__intro > a span {
    color: var(--rv-color-secondary-dark);
    font-size: 1.2rem;
}

.rv-insights__intro > a:hover {
    color: var(--rv-color-secondary-dark);
}

.rv-insights__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.rv-insight-card {
    position: relative;
    overflow: hidden;
    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);
}

.rv-insight-card:hover {
    box-shadow: var(--rv-shadow-medium);
    transform: translateY(-7px);
}

.rv-insight-card__media {
    position: relative;
    display: block;
    height: 225px;
    overflow: hidden;
    background: var(--rv-color-primary);
}

.rv-insight-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.rv-insight-card:hover .rv-insight-card__media img {
    transform: scale(1.045);
}

.rv-insight-card__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(20, 184, 166, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #0b1324,
            #1b2a44
        );
}

.rv-insight-card__placeholder::before {
    width: 55px;
    height: 3px;
    margin-bottom: 15px;
    background: var(--rv-color-secondary);
    border-radius: 3px;
    content: "";
}

.rv-insight-card__placeholder span {
    margin-bottom: 5px;
    color: var(--rv-color-secondary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.rv-insight-card__placeholder strong {
    color: var(--rv-color-white);
    font-size: 1.35rem;
    letter-spacing: 0.08em;
}

.rv-insight-card__status {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 6px 11px;
    color: #9a5800;
    background: #fff1c7;
    border-radius: 25px;
    font-size: 0.74rem;
    font-weight: 800;
}

.rv-insight-card__body {
    min-height: 265px;
    padding: 27px;
}

.rv-insight-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 13px;
    color: #0f766e;
    font-size: 0.75rem;
    font-weight: 700;
}

.rv-insight-card__meta span + span {
    position: relative;
    padding-right: 14px;
}

.rv-insight-card__meta span + span::before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 4px;
    height: 4px;
    background: var(--rv-color-secondary);
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
}

.rv-insight-card h3 {
    margin: 0 0 13px;
    color: var(--rv-color-primary);
    font-size: 1.23rem;
    line-height: 1.7;
}

.rv-insight-card h3 a {
    color: inherit;
}

.rv-insight-card h3 a:hover {
    color: var(--rv-color-secondary-dark);
}

.rv-insight-card__body > p {
    margin: 0 0 21px;
    color: var(--rv-color-text-soft);
    font-size: 0.9rem;
    line-height: 1.9;
}

.rv-insight-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rv-color-primary);
    font-size: 0.86rem;
    font-weight: 800;
}

.rv-insight-card__link span {
    color: var(--rv-color-secondary-dark);
    font-size: 1.2rem;
    transition: transform var(--rv-transition-fast);
}

.rv-insight-card__link:hover {
    color: var(--rv-color-secondary-dark);
}

.rv-insight-card__link:hover span {
    transform: translateX(-5px);
}

/* Insights responsive */

@media (max-width: 991px) {
    .rv-insights {
        padding: 85px 0;
    }

    .rv-insights__header {
        grid-template-columns: minmax(0, 1fr);
        gap: 25px;
    }

    .rv-insights__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rv-insight-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .rv-insights {
        padding: 65px 0;
    }

    .rv-insights__header {
        margin-bottom: 38px;
    }

    .rv-insights__intro {
        display: grid;
    }

    .rv-insights__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .rv-insight-card:last-child {
        grid-column: auto;
    }

    .rv-insight-card__media {
        height: 205px;
    }

    .rv-insight-card__body {
        min-height: 0;
        padding: 24px 21px;
    }
}

/* ==========================================================
    RAVIDEX About Page
========================================================== */

.rv-about-hero {
    position: relative;
    padding: 125px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(20, 184, 166, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0b1324,
            var(--rv-color-primary-soft)
        );
    color: var(--rv-color-white);
}

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

.rv-about-hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.rv-about-hero__eyebrow {
    margin: 0 0 18px;
    color: var(--rv-color-secondary);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

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

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

.rv-about-hero__content > p:last-child {
    max-width: 750px;
    margin: 0;
    color: #dbe4ef;
    font-size: 1.08rem;
    line-height: 2;
}

.rv-about-intro {
    padding: 110px 0;
    background: var(--rv-color-white);
}

.rv-about-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 80px;
}

.rv-about-intro__content h2 {
    margin: 0 0 25px;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    line-height: 1.5;
}

.rv-about-intro__content > p:not(.rv-section-kicker) {
    color: var(--rv-color-text-soft);
    font-size: 1rem;
    line-height: 2.05;
}

.rv-about-philosophy {
    padding: 38px;
    background: var(--rv-color-primary);
    border-top: 4px solid var(--rv-color-secondary);
    border-radius: var(--rv-radius-large);
    box-shadow: var(--rv-shadow-medium);
}

.rv-about-philosophy > span {
    color: var(--rv-color-secondary);
    font-size: 0.82rem;
    font-weight: 800;
}

.rv-about-philosophy blockquote {
    padding: 0;
    margin: 20px 0 28px;
    color: var(--rv-color-white);
    border: 0 !important;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 2;
}

.rv-about-philosophy__words {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rv-about-philosophy__words span {
    padding: 7px 11px;
    color: #dbe4ef;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    font-size: 0.75rem;
}

.rv-experience {
    padding: 110px 0;
    background: #f4f7fb;
}

.rv-experience__header {
    max-width: 800px;
    margin-bottom: 52px;
}

.rv-experience__header h2,
.rv-about-values__header h2 {
    margin: 0 0 18px;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.rv-experience__header > p:last-child {
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 1rem;
    line-height: 2;
}

.rv-experience__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.rv-experience-card {
    padding: 29px 24px;
    background: var(--rv-color-white);
    border: 1px solid var(--rv-color-border);
    border-top: 3px solid var(--rv-color-secondary);
    border-radius: var(--rv-radius-large);
    box-shadow: var(--rv-shadow-small);
}

.rv-experience-card__number {
    display: block;
    margin-bottom: 23px;
    color: var(--rv-color-secondary-dark);
    font-size: 1.85rem;
    font-weight: 800;
}

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

.rv-experience-card p {
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 0.87rem;
    line-height: 1.9;
}

.rv-about-founder {
    padding: 110px 0;
    background: var(--rv-color-primary);
    color: var(--rv-color-white);
}

.rv-about-founder__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 80px;
}

.rv-about-founder__identity {
    display: flex;
    align-items: center;
    gap: 24px;
}

.rv-about-founder__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 105px;
    flex: 0 0 105px;
    color: var(--rv-color-primary);
    background: var(--rv-color-secondary);
    border-radius: 50%;
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.rv-about-founder__identity span {
    color: var(--rv-color-secondary);
    font-size: 0.82rem;
    font-weight: 800;
}

.rv-about-founder__identity h2 {
    margin: 7px 0;
    color: var(--rv-color-white);
    font-size: 2rem;
}

.rv-about-founder__identity p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.rv-about-founder__content p {
    margin: 0 0 17px;
    color: #dbe4ef;
    font-size: 1rem;
    line-height: 2.05;
}

.rv-about-values {
    padding: 110px 0;
    background: var(--rv-color-white);
}

.rv-about-values__header {
    margin-bottom: 48px;
}

.rv-about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.rv-about-values__grid article {
    padding: 32px;
    background: #f8fafc;
    border: 1px solid var(--rv-color-border);
    border-radius: var(--rv-radius-large);
}

.rv-about-values__grid article > span {
    display: block;
    margin-bottom: 21px;
    color: var(--rv-color-secondary-dark);
    font-size: 1.25rem;
    font-weight: 800;
}

.rv-about-values__grid h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
}

.rv-about-values__grid p {
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 0.9rem;
    line-height: 1.9;
}

.rv-about-cta {
    padding: 0 0 100px;
    background: var(--rv-color-white);
}

.rv-about-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px;
    background: linear-gradient(
        135deg,
        var(--rv-color-primary),
        var(--rv-color-primary-soft)
    );
    border-radius: var(--rv-radius-large);
    box-shadow: var(--rv-shadow-medium);
}

.rv-about-cta__inner span {
    color: var(--rv-color-secondary);
    font-size: 0.84rem;
    font-weight: 800;
}

.rv-about-cta__inner h2 {
    margin: 7px 0 0;
    color: var(--rv-color-white);
    font-size: clamp(1.55rem, 3vw, 2.2rem);
}

/* About responsive */

@media (max-width: 991px) {
    .rv-about-hero {
        padding: 95px 0;
    }

    .rv-about-intro,
    .rv-experience,
    .rv-about-founder,
    .rv-about-values {
        padding: 85px 0;
    }

    .rv-about-intro__grid,
    .rv-about-founder__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 55px;
    }

    .rv-experience__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .rv-about-hero {
        padding: 70px 0;
    }

    .rv-about-intro,
    .rv-experience,
    .rv-about-founder,
    .rv-about-values {
        padding: 65px 0;
    }

    .rv-about-intro__grid {
        gap: 40px;
    }

    .rv-about-philosophy {
        padding: 28px 23px;
    }

    .rv-experience__grid,
    .rv-about-values__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .rv-about-founder__identity {
        align-items: flex-start;
    }

    .rv-about-founder__mark {
        width: 78px;
        height: 78px;
        flex-basis: 78px;
    }

    .rv-about-cta {
        padding-bottom: 65px;
    }

    .rv-about-cta__inner {
        display: grid;
        padding: 29px 23px;
    }

    .rv-about-cta__inner .rv-btn {
        width: 100%;
    }
}

/* ==========================================================
    RAVIDEX Contact Page
========================================================== */

.rv-contact-hero {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(20, 184, 166, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0b1324,
            var(--rv-color-primary-soft)
        );
}

.rv-contact-hero__content {
    max-width: 850px;
}

.rv-contact-hero__eyebrow {
    margin: 0 0 18px;
    color: var(--rv-color-secondary);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.rv-contact-hero h1 {
    margin: 0 0 25px;
    color: var(--rv-color-white);
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: 1.35;
}

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

.rv-contact-hero__content > p:last-child {
    max-width: 720px;
    margin: 0;
    color: #dbe4ef;
    font-size: 1.06rem;
    line-height: 2;
}

.rv-contact-main {
    padding: 110px 0;
    background: #f4f7fb;
}

.rv-contact-main__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
    align-items: start;
    gap: 75px;
}

.rv-contact-info h2 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.45;
}

.rv-contact-info__intro {
    margin: 0 0 37px;
    color: var(--rv-color-text-soft);
    font-size: 1rem;
    line-height: 2;
}

.rv-contact-info__items {
    display: grid;
    gap: 15px;
}

.rv-contact-info__items article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 17px;
    padding: 20px;
    background: var(--rv-color-white);
    border: 1px solid var(--rv-color-border);
    border-radius: var(--rv-radius-medium);
}

.rv-contact-info__items article > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--rv-color-secondary-dark);
    background: #fff4d6;
    border-radius: 50%;
    font-size: 0.82rem;
    font-weight: 800;
}

.rv-contact-info__items h3 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.rv-contact-info__items p {
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 0.84rem;
    line-height: 1.7;
}

.rv-contact-form-card {
    padding: 38px;
    background: var(--rv-color-white);
    border: 1px solid var(--rv-color-border);
    border-top: 4px solid var(--rv-color-secondary);
    border-radius: var(--rv-radius-large);
    box-shadow: var(--rv-shadow-medium);
}

.rv-contact-form-card > h2 {
    margin: 0 0 7px;
    font-size: 1.65rem;
}

.rv-contact-form-card > p {
    margin: 0 0 27px;
    color: var(--rv-color-text-soft);
    font-size: 0.83rem;
}

.rv-contact-form {
    display: grid;
    gap: 20px;
}

.rv-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rv-form-field {
    display: grid;
    gap: 8px;
}

.rv-form-field label {
    color: var(--rv-color-primary);
    font-size: 0.84rem;
    font-weight: 700;
}

.rv-form-field input,
.rv-form-field select,
.rv-form-field textarea {
    width: 100%;
    padding: 12px 14px;
    color: var(--rv-color-text);
    background: #fbfcfe;
    border: 1px solid var(--rv-color-border);
    border-radius: var(--rv-radius-small);
    outline: 0;
    transition:
        border-color var(--rv-transition-fast),
        box-shadow var(--rv-transition-fast);
}

.rv-form-field input,
.rv-form-field select {
    min-height: 48px;
}

.rv-form-field textarea {
    min-height: 145px;
    resize: vertical;
}

.rv-form-field input:focus,
.rv-form-field select:focus,
.rv-form-field textarea:focus {
    border-color: var(--rv-color-accent);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12);
}

.rv-form-field--hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.rv-form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--rv-color-text-soft);
    font-size: 0.8rem;
    line-height: 1.7;
    cursor: pointer;
}

.rv-form-consent input {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 4px;
    accent-color: var(--rv-color-accent);
}

.rv-contact-form__submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.rv-form-notice {
    padding: 13px 15px;
    margin-bottom: 20px;
    border-radius: var(--rv-radius-small);
    font-size: 0.85rem;
    line-height: 1.8;
}

.rv-form-notice--success {
    color: #065f46;
    background: #d1fae5;
    border: 1px solid #a7f3d0;
}

.rv-form-notice--error {
    color: #991b1b;
    background: #fee2e2;
    border: 1px solid #fecaca;
}

/* Contact responsive */

@media (max-width: 991px) {
    .rv-contact-hero {
        padding: 90px 0;
    }

    .rv-contact-main {
        padding: 85px 0;
    }

    .rv-contact-main__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 55px;
    }
}

@media (max-width: 767px) {
    .rv-contact-hero {
        padding: 70px 0;
    }

    .rv-contact-main {
        padding: 65px 0;
    }

    .rv-contact-form-card {
        padding: 27px 21px;
    }

    .rv-form-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

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

.rv-lp-hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(20, 184, 166, 0.16),
            transparent 30%
        ),
        linear-gradient(135deg, #0b1324, #17263e);
    color: var(--rv-color-white);
}

.rv-lp-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 90px;
}

.rv-lp-hero__eyebrow {
    margin: 0 0 17px;
    color: var(--rv-color-secondary);
    font-size: 0.9rem;
    font-weight: 800;
}

.rv-lp-hero h1 {
    margin: 0 0 15px;
    color: var(--rv-color-white);
    font-size: clamp(3.1rem, 6vw, 5.8rem);
    line-height: 1;
}

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

.rv-lp-hero h2 {
    margin: 0 0 22px;
    color: var(--rv-color-white);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.rv-lp-hero__content > p:not(.rv-lp-hero__eyebrow) {
    max-width: 680px;
    margin: 0 0 32px;
    color: #dbe4ef;
    font-size: 1.03rem;
    line-height: 2;
}

.rv-lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.rv-lp-hero__secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--rv-color-white);
    font-size: 0.9rem;
    font-weight: 700;
}

.rv-lp-hero__secondary span {
    color: var(--rv-color-secondary);
    font-size: 1.2rem;
}

.rv-lp-beacon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 430px;
}

.rv-lp-beacon__light {
    position: absolute;
    top: 53px;
    left: 50%;
    width: 360px;
    height: 145px;
    background: linear-gradient(
        90deg,
        rgba(245, 158, 11, 0),
        rgba(245, 158, 11, 0.2),
        rgba(245, 158, 11, 0)
    );
    clip-path: polygon(50% 45%, 100% 0, 100% 100%, 50% 55%, 0 100%, 0 0);
    transform: translateX(-50%);
}

.rv-lp-beacon__top {
    position: relative;
    z-index: 2;
    width: 110px;
    height: 66px;
    background: var(--rv-color-secondary);
    border: 8px solid var(--rv-color-primary);
    border-radius: 55px 55px 12px 12px;
    box-shadow: 0 0 45px rgba(245, 158, 11, 0.4);
}

.rv-lp-beacon__tower {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: space-evenly;
    width: 115px;
    height: 220px;
    padding: 20px;
    background: linear-gradient(
        90deg,
        #dbe4ef,
        #ffffff,
        #cbd5e1
    );
    clip-path: polygon(24% 0, 76% 0, 100% 100%, 0 100%);
}

.rv-lp-beacon__tower span {
    height: 3px;
    background: rgba(15, 23, 42, 0.16);
}

.rv-lp-beacon__base {
    position: relative;
    z-index: 2;
    width: 175px;
    height: 24px;
    background: var(--rv-color-secondary);
    border-radius: 5px 5px 20px 20px;
}

.rv-lp-beacon__label {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 28px;
    color: #cbd5e1;
    font-size: 0.8rem;
}

.rv-lp-beacon__label i {
    width: 60px;
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--rv-color-text-soft),
        var(--rv-color-secondary)
    );
}

.rv-lp-beacon__label strong {
    color: var(--rv-color-secondary);
}

.rv-lp-problem,
.rv-lp-principles {
    padding: 110px 0;
    background: var(--rv-color-white);
}

.rv-lp-problem__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 50px;
}

.rv-lp-problem__grid h2,
.rv-lp-framework__header h2,
.rv-lp-principles__header h2,
.rv-lp-use__content h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    line-height: 1.5;
}

.rv-lp-problem__content p {
    margin: 0 0 13px;
    color: var(--rv-color-text-soft);
    font-size: 1rem;
    line-height: 2;
}

.rv-lp-problem__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.rv-lp-problem__cards article,
.rv-lp-principles__grid article {
    padding: 29px;
    background: #f8fafc;
    border: 1px solid var(--rv-color-border);
    border-top: 3px solid var(--rv-color-secondary);
    border-radius: var(--rv-radius-large);
}

.rv-lp-problem__cards span,
.rv-lp-principles__grid span {
    display: block;
    margin-bottom: 21px;
    color: var(--rv-color-secondary-dark);
    font-size: 1.2rem;
    font-weight: 800;
}

.rv-lp-problem__cards h3,
.rv-lp-principles__grid h3 {
    margin: 0 0 11px;
    font-size: 1.15rem;
}

.rv-lp-problem__cards p,
.rv-lp-principles__grid p {
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 0.88rem;
    line-height: 1.9;
}

.rv-lp-framework {
    padding: 110px 0;
    background: #f4f7fb;
}

.rv-lp-framework__header {
    max-width: 820px;
    margin-bottom: 50px;
}

.rv-lp-framework__header > p:last-child {
    margin: 17px 0 0;
    color: var(--rv-color-text-soft);
    line-height: 2;
}

.rv-lp-framework__steps {
    display: grid;
    gap: 16px;
}

.rv-lp-step {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) minmax(220px, 0.38fr);
    align-items: center;
    gap: 25px;
    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);
}

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

.rv-lp-step__content > span {
    color: #0f766e;
    font-size: 0.76rem;
    font-weight: 700;
}

.rv-lp-step__content h3 {
    margin: 5px 0 8px;
    font-size: 1.16rem;
}

.rv-lp-step__content p {
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 0.87rem;
    line-height: 1.8;
}

.rv-lp-step__output {
    display: grid;
    gap: 6px;
    padding: 15px;
    background: #f8fafc;
    border-right: 3px solid var(--rv-color-accent);
    border-radius: var(--rv-radius-small);
}

.rv-lp-step__output strong {
    color: var(--rv-color-primary);
    font-size: 0.76rem;
}

.rv-lp-step__output span {
    color: var(--rv-color-text-soft);
    font-size: 0.8rem;
    line-height: 1.7;
}

.rv-lp-principles__header {
    margin-bottom: 48px;
}

.rv-lp-principles__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.rv-lp-use {
    padding: 110px 0;
    background: var(--rv-color-primary);
    color: var(--rv-color-white);
}

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

.rv-lp-use__content h2 {
    color: var(--rv-color-white);
}

.rv-lp-use__content > p:last-child {
    margin: 20px 0 0;
    color: #dbe4ef;
    line-height: 2;
}

.rv-lp-use__list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.rv-lp-use__list li {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 17px 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--rv-radius-medium);
}

.rv-lp-use__list span {
    color: var(--rv-color-secondary);
    font-weight: 800;
}

.rv-lp-cta {
    padding: 90px 0;
    background: var(--rv-color-white);
}

.rv-lp-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px;
    background: linear-gradient(
        135deg,
        var(--rv-color-primary),
        var(--rv-color-primary-soft)
    );
    border-radius: var(--rv-radius-large);
}

.rv-lp-cta__inner span {
    color: var(--rv-color-secondary);
    font-size: 0.84rem;
    font-weight: 800;
}

.rv-lp-cta__inner h2 {
    margin: 7px 0 0;
    color: var(--rv-color-white);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

/* Lighthouse page responsive */

@media (max-width: 991px) {
    .rv-lp-hero__grid,
    .rv-lp-problem__grid,
    .rv-lp-use__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 55px;
    }

    .rv-lp-problem__cards,
    .rv-lp-principles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rv-lp-step {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .rv-lp-step__output {
        grid-column: 2;
    }
}

@media (max-width: 767px) {
    .rv-lp-hero,
    .rv-lp-problem,
    .rv-lp-framework,
    .rv-lp-principles,
    .rv-lp-use {
        padding: 65px 0;
    }

    .rv-lp-beacon {
        min-height: 390px;
    }

    .rv-lp-problem__cards,
    .rv-lp-principles__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .rv-lp-step {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 15px;
        padding: 20px 17px;
    }

    .rv-lp-step__number {
        width: 48px;
        height: 48px;
    }

    .rv-lp-step__output {
        grid-column: 1 / -1;
    }

    .rv-lp-cta {
        padding: 65px 0;
    }

    .rv-lp-cta__inner {
        display: grid;
        padding: 29px 23px;
    }

    .rv-lp-cta__inner .rv-btn {
        width: 100%;
    }
}

/* ==========================================================
    RAVIDEX Services Page
========================================================== */

.rv-sp-hero {
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(20, 184, 166, 0.14),
            transparent 30%
        ),
        linear-gradient(135deg, #0b1324, #17263e);
}

.rv-sp-hero__content {
    max-width: 900px;
}

.rv-sp-hero__eyebrow {
    margin: 0 0 18px;
    color: var(--rv-color-secondary);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

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

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

.rv-sp-hero__content > p:not(.rv-sp-hero__eyebrow) {
    max-width: 740px;
    margin: 0 0 32px;
    color: #dbe4ef;
    font-size: 1.05rem;
    line-height: 2;
}

.rv-sp-intro,
.rv-sp-services,
.rv-sp-process,
.rv-sp-models {
    padding: 110px 0;
}

.rv-sp-intro,
.rv-sp-process {
    background: var(--rv-color-white);
}

.rv-sp-services,
.rv-sp-models {
    background: #f4f7fb;
}

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

.rv-sp-intro h2,
.rv-sp-services__header h2,
.rv-sp-process__header h2,
.rv-sp-models__content h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    line-height: 1.5;
}

.rv-sp-intro__content p,
.rv-sp-models__content > p:last-child {
    margin: 0 0 13px;
    color: var(--rv-color-text-soft);
    font-size: 1rem;
    line-height: 2;
}

.rv-sp-services__header,
.rv-sp-process__header {
    margin-bottom: 50px;
}

.rv-sp-services__list {
    display: grid;
    gap: 17px;
}

.rv-sp-service {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.1fr) minmax(260px, 0.9fr);
    align-items: center;
    gap: 35px;
    padding: 30px;
    background: var(--rv-color-white);
    border: 1px solid var(--rv-color-border);
    border-radius: var(--rv-radius-large);
    box-shadow: var(--rv-shadow-small);
}

.rv-sp-service__heading {
    display: flex;
    align-items: center;
    gap: 18px;
}

.rv-sp-service__heading > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    color: var(--rv-color-primary);
    background: var(--rv-color-secondary);
    border-radius: 50%;
    font-weight: 800;
}

.rv-sp-service__heading p {
    margin: 0 0 4px;
    color: #0f766e;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.rv-sp-service__heading h3 {
    margin: 0;
    font-size: 1.15rem;
}

.rv-sp-service__description p {
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 0.9rem;
    line-height: 1.9;
}

.rv-sp-service ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.rv-sp-service li {
    position: relative;
    padding-right: 17px;
    color: var(--rv-color-text);
    font-size: 0.82rem;
    line-height: 1.7;
}

.rv-sp-service li::before {
    position: absolute;
    top: 0.75em;
    right: 0;
    width: 6px;
    height: 6px;
    background: var(--rv-color-secondary);
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
}

.rv-sp-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.rv-sp-process__grid article {
    position: relative;
    padding: 29px 24px;
    background: #f8fafc;
    border: 1px solid var(--rv-color-border);
    border-top: 3px solid var(--rv-color-accent);
    border-radius: var(--rv-radius-large);
}

.rv-sp-process__grid span,
.rv-sp-models__cards article > span {
    display: block;
    margin-bottom: 20px;
    color: var(--rv-color-secondary-dark);
    font-size: 1.3rem;
    font-weight: 800;
}

.rv-sp-process__grid h3,
.rv-sp-models__cards h3 {
    margin: 0 0 11px;
    font-size: 1.12rem;
}

.rv-sp-process__grid p,
.rv-sp-models__cards p {
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 0.87rem;
    line-height: 1.9;
}

.rv-sp-models__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 70px;
}

.rv-sp-models__content > p:last-child {
    margin-top: 20px;
}

.rv-sp-models__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.rv-sp-models__cards article {
    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);
}

.rv-sp-cta {
    padding: 90px 0;
    background: var(--rv-color-white);
}

.rv-sp-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px;
    background: linear-gradient(
        135deg,
        var(--rv-color-primary),
        var(--rv-color-primary-soft)
    );
    border-radius: var(--rv-radius-large);
}

.rv-sp-cta__inner span {
    color: var(--rv-color-secondary);
    font-size: 0.84rem;
    font-weight: 800;
}

.rv-sp-cta__inner h2 {
    margin: 7px 0 0;
    color: var(--rv-color-white);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

/* Services page responsive */

@media (max-width: 991px) {
    .rv-sp-intro__grid,
    .rv-sp-models__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 50px;
    }

    .rv-sp-service {
        grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
    }

    .rv-sp-service ul {
        grid-column: 1 / -1;
        padding-top: 20px;
        border-top: 1px solid var(--rv-color-border);
    }

    .rv-sp-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .rv-sp-hero,
    .rv-sp-intro,
    .rv-sp-services,
    .rv-sp-process,
    .rv-sp-models {
        padding: 65px 0;
    }

    .rv-sp-service {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
        padding: 23px 20px;
    }

    .rv-sp-service ul {
        grid-column: auto;
    }

    .rv-sp-process__grid,
    .rv-sp-models__cards {
        grid-template-columns: minmax(0, 1fr);
    }

    .rv-sp-cta {
        padding: 65px 0;
    }

    .rv-sp-cta__inner {
        display: grid;
        padding: 29px 23px;
    }

    .rv-sp-cta__inner .rv-btn {
        width: 100%;
    }
}

/* ==========================================================
    RAVIDEX Workshops Page
========================================================== */

.rv-wp-hero {
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(20, 184, 166, 0.15),
            transparent 30%
        ),
        linear-gradient(135deg, #0b1324, #17263e);
}

.rv-wp-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
    align-items: center;
    gap: 85px;
}

.rv-wp-hero__eyebrow {
    margin: 0 0 18px;
    color: var(--rv-color-secondary);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.rv-wp-hero h1 {
    margin: 0 0 23px;
    color: var(--rv-color-white);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.35;
}

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

.rv-wp-hero__content > p:not(.rv-wp-hero__eyebrow) {
    max-width: 700px;
    margin: 0 0 32px;
    color: #dbe4ef;
    font-size: 1.04rem;
    line-height: 2;
}

.rv-wp-hero__panel {
    display: grid;
    grid-template-columns: 1fr 26px 1fr 26px 1fr;
    align-items: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--rv-radius-large);
}

.rv-wp-hero__panel > span {
    grid-column: 1 / -1;
    margin-bottom: 25px;
    color: var(--rv-color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
}

.rv-wp-hero__panel div {
    text-align: center;
}

.rv-wp-hero__panel strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    color: var(--rv-color-primary);
    background: var(--rv-color-secondary);
    border-radius: 50%;
}

.rv-wp-hero__panel p {
    margin: 0;
    color: var(--rv-color-white);
    font-size: 0.77rem;
    line-height: 1.6;
}

.rv-wp-hero__panel i {
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.rv-wp-intro,
.rv-wp-programs,
.rv-wp-method,
.rv-wp-audience {
    padding: 110px 0;
}

.rv-wp-intro,
.rv-wp-method {
    background: var(--rv-color-white);
}

.rv-wp-programs {
    background: #f4f7fb;
}

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

.rv-wp-intro h2,
.rv-wp-programs__header h2,
.rv-wp-method__header h2,
.rv-wp-audience__content h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    line-height: 1.5;
}

.rv-wp-intro__content p,
.rv-wp-audience__content > p:last-child {
    margin: 0 0 13px;
    color: var(--rv-color-text-soft);
    font-size: 1rem;
    line-height: 2;
}

.rv-wp-programs__header {
    max-width: 820px;
    margin-bottom: 50px;
}

.rv-wp-programs__header > p:last-child {
    margin: 17px 0 0;
    color: var(--rv-color-text-soft);
    line-height: 2;
}

.rv-wp-programs__list {
    display: grid;
    gap: 18px;
}

.rv-wp-program {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) minmax(280px, 0.65fr);
    align-items: center;
    gap: 28px;
    padding: 29px;
    background: var(--rv-color-white);
    border: 1px solid var(--rv-color-border);
    border-radius: var(--rv-radius-large);
    box-shadow: var(--rv-shadow-small);
}

.rv-wp-program__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    color: var(--rv-color-primary);
    background: var(--rv-color-secondary);
    border-radius: 50%;
    font-weight: 800;
}

.rv-wp-program__content > span {
    color: #0f766e;
    font-size: 0.75rem;
    font-weight: 800;
}

.rv-wp-program__content h3 {
    margin: 5px 0 9px;
    font-size: 1.2rem;
}

.rv-wp-program__content p {
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 0.87rem;
    line-height: 1.85;
}

.rv-wp-program ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.rv-wp-program li {
    position: relative;
    padding-right: 17px;
    color: var(--rv-color-text);
    font-size: 0.82rem;
    line-height: 1.7;
}

.rv-wp-program li::before {
    position: absolute;
    top: 0.75em;
    right: 0;
    width: 6px;
    height: 6px;
    background: var(--rv-color-accent);
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
}

.rv-wp-method__header {
    margin-bottom: 48px;
}

.rv-wp-method__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.rv-wp-method__grid article {
    padding: 28px 24px;
    background: #f8fafc;
    border: 1px solid var(--rv-color-border);
    border-top: 3px solid var(--rv-color-accent);
    border-radius: var(--rv-radius-large);
}

.rv-wp-method__grid span,
.rv-wp-audience__items span {
    display: block;
    margin-bottom: 20px;
    color: var(--rv-color-secondary-dark);
    font-size: 1.25rem;
    font-weight: 800;
}

.rv-wp-method__grid h3,
.rv-wp-audience__items h3 {
    margin: 0 0 11px;
    font-size: 1.1rem;
}

.rv-wp-method__grid p {
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 0.86rem;
    line-height: 1.9;
}

.rv-wp-audience {
    background: var(--rv-color-primary);
    color: var(--rv-color-white);
}

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

.rv-wp-audience__content h2 {
    color: var(--rv-color-white);
}

.rv-wp-audience__content > p:last-child {
    margin-top: 20px;
    color: #dbe4ef;
}

.rv-wp-audience__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.rv-wp-audience__items article {
    padding: 22px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--rv-radius-medium);
}

.rv-wp-audience__items h3 {
    margin: 0;
    color: var(--rv-color-white);
    font-size: 0.95rem;
    line-height: 1.8;
}

.rv-wp-cta {
    padding: 90px 0;
    background: var(--rv-color-white);
}

.rv-wp-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px;
    background: linear-gradient(
        135deg,
        var(--rv-color-primary),
        var(--rv-color-primary-soft)
    );
    border-radius: var(--rv-radius-large);
}

.rv-wp-cta__inner span {
    color: var(--rv-color-secondary);
    font-size: 0.84rem;
    font-weight: 800;
}

.rv-wp-cta__inner h2 {
    margin: 7px 0 0;
    color: var(--rv-color-white);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

/* Workshops page responsive */

@media (max-width: 991px) {
    .rv-wp-hero__grid,
    .rv-wp-intro__grid,
    .rv-wp-audience__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 50px;
    }

    .rv-wp-program {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .rv-wp-program ul {
        grid-column: 2;
        padding-top: 18px;
        border-top: 1px solid var(--rv-color-border);
    }

    .rv-wp-method__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .rv-wp-hero,
    .rv-wp-intro,
    .rv-wp-programs,
    .rv-wp-method,
    .rv-wp-audience {
        padding: 65px 0;
    }

    .rv-wp-hero__panel {
        grid-template-columns: minmax(0, 1fr);
        gap: 15px;
    }

    .rv-wp-hero__panel i {
        width: 1px;
        height: 24px;
        margin: auto;
    }

    .rv-wp-program {
        grid-template-columns: minmax(0, 1fr);
        padding: 23px 20px;
    }

    .rv-wp-program ul {
        grid-column: auto;
    }

    .rv-wp-method__grid,
    .rv-wp-audience__items {
        grid-template-columns: minmax(0, 1fr);
    }

    .rv-wp-cta {
        padding: 65px 0;
    }

    .rv-wp-cta__inner {
        display: grid;
        padding: 29px 23px;
    }

    .rv-wp-cta__inner .rv-btn {
        width: 100%;
    }
}

/* ==========================================================
    RAVIDEX Podcast Page
========================================================== */

.rv-pp-hero {
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(20, 184, 166, 0.16),
            transparent 30%
        ),
        linear-gradient(135deg, #0b1324, #17263e);
}

.rv-pp-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    align-items: center;
    gap: 90px;
}

.rv-pp-hero__eyebrow {
    margin: 0 0 18px;
    color: var(--rv-color-secondary);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.rv-pp-hero h1 {
    margin: 0 0 24px;
    color: var(--rv-color-white);
    font-size: clamp(2.9rem, 5vw, 4.9rem);
    line-height: 1.35;
}

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

.rv-pp-hero__content > p:not(.rv-pp-hero__eyebrow) {
    max-width: 680px;
    margin: 0 0 25px;
    color: #dbe4ef;
    font-size: 1.05rem;
    line-height: 2;
}

.rv-pp-hero__status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #cbd5e1;
    font-size: 0.84rem;
}

.rv-pp-hero__status span {
    width: 8px;
    height: 8px;
    background: var(--rv-color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.13);
}

.rv-pp-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rv-pp-visual__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 265px;
    height: 265px;
    background:
        radial-gradient(
            circle,
            rgba(245, 158, 11, 0.17),
            rgba(255, 255, 255, 0.035)
        );
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.25);
}

.rv-pp-visual__play,
.rv-pp-episode__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rv-color-secondary);
    border-radius: 50%;
}

.rv-pp-visual__play {
    width: 92px;
    height: 92px;
    border: 8px solid rgba(255, 255, 255, 0.12);
}

.rv-pp-visual__play span,
.rv-pp-episode__icon span {
    width: 0;
    height: 0;
    margin-right: 5px;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-right: 17px solid var(--rv-color-primary);
}

.rv-pp-visual__wave {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 55px;
    margin-top: 23px;
}

.rv-pp-visual__wave i {
    width: 4px;
    background: var(--rv-color-accent);
    border-radius: 4px;
}

.rv-pp-visual__wave i:nth-child(odd) {
    height: 22px;
}

.rv-pp-visual__wave i:nth-child(even) {
    height: 42px;
}

.rv-pp-visual__wave i:nth-child(5),
.rv-pp-visual__wave i:nth-child(7) {
    height: 55px;
    background: var(--rv-color-secondary);
}

.rv-pp-about,
.rv-pp-season,
.rv-pp-topics {
    padding: 110px 0;
}

.rv-pp-about,
.rv-pp-topics {
    background: var(--rv-color-white);
}

.rv-pp-season {
    background: #f4f7fb;
}

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

.rv-pp-about h2,
.rv-pp-season__header h2,
.rv-pp-topics__header h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    line-height: 1.5;
}

.rv-pp-about__content p {
    margin: 0 0 13px;
    color: var(--rv-color-text-soft);
    font-size: 1rem;
    line-height: 2;
}

.rv-pp-season__header {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 50px;
}

.rv-pp-season__header > p {
    margin: 0;
    color: var(--rv-color-text-soft);
    line-height: 2;
}

.rv-pp-season__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px;
}

.rv-pp-episode {
    overflow: hidden;
    background: var(--rv-color-white);
    border: 1px solid var(--rv-color-border);
    border-radius: var(--rv-radius-large);
    box-shadow: var(--rv-shadow-small);
}

.rv-pp-episode__cover {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: linear-gradient(145deg, #0b1324, #1b2a44);
}

.rv-pp-episode__number,
.rv-pp-episode__badge {
    position: absolute;
    top: 18px;
    font-size: 0.74rem;
    font-weight: 800;
}

.rv-pp-episode__number {
    right: 18px;
    color: #cbd5e1;
}

.rv-pp-episode__badge {
    left: 18px;
    padding: 5px 10px;
    color: #9a5800;
    background: #fff1c7;
    border-radius: 20px;
}

.rv-pp-episode__icon {
    width: 70px;
    height: 70px;
}

.rv-pp-episode__body {
    min-height: 215px;
    padding: 27px;
}

.rv-pp-episode__body > span {
    color: #0f766e;
    font-size: 0.76rem;
    font-weight: 800;
}

.rv-pp-episode__body h3 {
    margin: 10px 0 13px;
    font-size: 1.23rem;
    line-height: 1.7;
}

.rv-pp-episode__body p {
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 0.9rem;
    line-height: 1.9;
}

.rv-pp-topics__header {
    margin-bottom: 48px;
}

.rv-pp-topics__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.rv-pp-topics__grid article {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 23px;
    background: #f8fafc;
    border: 1px solid var(--rv-color-border);
    border-radius: var(--rv-radius-medium);
}

.rv-pp-topics__grid span {
    color: var(--rv-color-secondary-dark);
    font-weight: 800;
}

.rv-pp-topics__grid h3 {
    margin: 0;
    font-size: 1rem;
}

.rv-pp-cta {
    padding: 90px 0;
    background: #f4f7fb;
}

.rv-pp-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px;
    background: linear-gradient(
        135deg,
        var(--rv-color-primary),
        var(--rv-color-primary-soft)
    );
    border-radius: var(--rv-radius-large);
}

.rv-pp-cta__inner span {
    color: var(--rv-color-secondary);
    font-size: 0.84rem;
    font-weight: 800;
}

.rv-pp-cta__inner h2 {
    margin: 7px 0 0;
    color: var(--rv-color-white);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

/* Podcast page responsive */

@media (max-width: 991px) {
    .rv-pp-hero__grid,
    .rv-pp-about__grid,
    .rv-pp-season__header {
        grid-template-columns: minmax(0, 1fr);
        gap: 45px;
    }

    .rv-pp-season__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rv-pp-episode:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .rv-pp-hero,
    .rv-pp-about,
    .rv-pp-season,
    .rv-pp-topics {
        padding: 65px 0;
    }

    .rv-pp-season__grid,
    .rv-pp-topics__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .rv-pp-episode:last-child {
        grid-column: auto;
    }

    .rv-pp-episode__body {
        min-height: 0;
    }

    .rv-pp-cta {
        padding: 65px 0;
    }

    .rv-pp-cta__inner {
        display: grid;
        padding: 29px 23px;
    }

    .rv-pp-cta__inner .rv-btn {
        width: 100%;
    }
}

/* ==========================================================
    RAVIDEX Insights Page
========================================================== */

.rv-ip-hero {
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(20, 184, 166, 0.15),
            transparent 30%
        ),
        linear-gradient(135deg, #0b1324, #17263e);
}

.rv-ip-hero__content {
    max-width: 900px;
}

.rv-ip-hero__eyebrow {
    margin: 0 0 18px;
    color: var(--rv-color-secondary);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.rv-ip-hero h1 {
    margin: 0 0 24px;
    color: var(--rv-color-white);
    font-size: clamp(2.9rem, 5vw, 4.9rem);
    line-height: 1.35;
}

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

.rv-ip-hero__content > p:not(.rv-ip-hero__eyebrow) {
    max-width: 740px;
    margin: 0;
    color: #dbe4ef;
    font-size: 1.05rem;
    line-height: 2;
}

.rv-ip-intro,
.rv-ip-articles,
.rv-ip-topics {
    padding: 110px 0;
}

.rv-ip-intro,
.rv-ip-topics {
    background: var(--rv-color-white);
}

.rv-ip-articles {
    background: #f4f7fb;
}

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

.rv-ip-intro h2,
.rv-ip-articles__header h2,
.rv-ip-topics__header h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    line-height: 1.5;
}

.rv-ip-intro__grid > p {
    margin: 0;
    color: var(--rv-color-text-soft);
    font-size: 1rem;
    line-height: 2;
}

.rv-ip-articles__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.rv-ip-articles__notice {
    padding: 8px 13px;
    color: #9a5800;
    background: #fff1c7;
    border-radius: 25px;
    font-size: 0.78rem;
    font-weight: 800;
}

.rv-ip-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.rv-ip-articles__grid .rv-insight-card__body {
    min-height: 250px;
}

.rv-ip-pagination {
    margin-top: 45px;
}

.rv-ip-pagination ul {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.rv-ip-pagination a,
.rv-ip-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    background: var(--rv-color-white);
    border: 1px solid var(--rv-color-border);
    border-radius: var(--rv-radius-small);
    font-size: 0.82rem;
}

.rv-ip-pagination .current {
    color: var(--rv-color-primary);
    background: var(--rv-color-secondary);
    border-color: var(--rv-color-secondary);
    font-weight: 800;
}

.rv-ip-topics__header {
    margin-bottom: 45px;
}

.rv-ip-topics__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.rv-ip-topics__grid span {
    padding: 19px 22px;
    color: var(--rv-color-primary);
    background: #f8fafc;
    border: 1px solid var(--rv-color-border);
    border-right: 3px solid var(--rv-color-accent);
    border-radius: var(--rv-radius-small);
    font-size: 0.9rem;
    font-weight: 700;
}

.rv-ip-cta {
    padding: 90px 0;
    background: #f4f7fb;
}

.rv-ip-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px;
    background: linear-gradient(
        135deg,
        var(--rv-color-primary),
        var(--rv-color-primary-soft)
    );
    border-radius: var(--rv-radius-large);
}

.rv-ip-cta__inner span {
    color: var(--rv-color-secondary);
    font-size: 0.84rem;
    font-weight: 800;
}

.rv-ip-cta__inner h2 {
    margin: 7px 0 0;
    color: var(--rv-color-white);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

/* Insights page responsive */

@media (max-width: 991px) {
    .rv-ip-intro__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 35px;
    }

    .rv-ip-articles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rv-ip-topics__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .rv-ip-hero,
    .rv-ip-intro,
    .rv-ip-articles,
    .rv-ip-topics {
        padding: 65px 0;
    }

    .rv-ip-articles__header {
        display: grid;
        align-items: start;
    }

    .rv-ip-articles__grid,
    .rv-ip-topics__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .rv-ip-articles__grid .rv-insight-card__body {
        min-height: 0;
    }

    .rv-ip-cta {
        padding: 65px 0;
    }

    .rv-ip-cta__inner {
        display: grid;
        padding: 29px 23px;
    }

    .rv-ip-cta__inner .rv-btn {
        width: 100%;
    }
}

/* Fix: RAVIDEX philosophy card */
body .rv-about-philosophy {
    background: var(--rv-color-primary) !important;
}

body .rv-about-philosophy blockquote {
    color: var(--rv-color-white) !important;
}

body .rv-about-philosophy__words span {
    color: #dbe4ef !important;
}

body .rv-about-philosophy {
    background-color: #10243a !important;
    background-image: none !important;
}

body .rv-about-philosophy blockquote {
    color: #ffffff !important;
    background: transparent !important;
    background-image: none !important;
}

body .rv-about-philosophy__words span {
    color: #dbe4ef !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
}

body .rv-about-philosophy blockquote {
    padding: 12px 18px !important;
    border-right: 4px solid #d89b2b !important;
    border-left: 0 !important;
}

body .rv-about-philosophy blockquote::before,
body .rv-about-philosophy blockquote::after {
    display: none !important;
    content: none !important;
}

/* RAVIDEX direct contact information */

.rv-contact-direct {
    display: grid;
    gap: 12px;
    margin: 0 0 32px;
}

.rv-contact-direct a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    color: var(--rv-color-primary);
    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);
}

.rv-contact-direct a:hover {
    color: var(--rv-color-secondary-dark);
    transform: translateY(-2px);
}

.rv-contact-direct span {
    font-size: 0.88rem;
    font-weight: 700;
}

.rv-contact-direct strong {
    font-size: 0.95rem;
}

.rv-footer-contact-links {
    display: grid;
    gap: 8px;
    margin-bottom: 19px;
}

.rv-footer-contact-links a {
    color: #cbd5e1;
    font-size: 0.92rem;
}

/* Improve decision card text contrast */

body .rv-decision-card__label {
    color: #475569 !important;
}

body .rv-decision-card__intro {
    color: #334155 !important;
    font-weight: 600;
}

body .rv-decision-step strong {
    color: #10243a !important;
}

body .rv-decision-step small {
    color: #475569 !important;
}

body .rv-decision-card__note {
    color: #334155 !important;
    font-weight: 500;
}

.rv-footer-contact-links a:hover {
    color: var(--rv-color-secondary);
}

/* Fix Project Lighthouse steps layout */

body .rv-decision-path {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin-top: 22px !important;
}

body .rv-decision-step {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 11px !important;
    padding: 15px 12px !important;
    background-color: #f4f7fb !important;
    border: 1px solid #dbe3ec !important;
    border-radius: 12px !important;
}

body .rv-decision-step > span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    color: #10243a !important;
    background-color: #fff0c7 !important;
    border-radius: 50% !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
}

body .rv-decision-step strong {
    display: block !important;
    color: #10243a !important;
}

body .rv-decision-step small {
    display: block !important;
    margin-top: 3px !important;
    color: #475569 !important;
}

@media (max-width: 480px) {
    body .rv-decision-path {
        grid-template-columns: minmax(0, 1fr) !important;
    }
}