/* CSS Document - Kishan Unjia Portfolio */

/* ==========================================================================
   1. Design Tokens & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-dark: #000000;
    --color-bg-card: #0f070b;
    --color-accent-pink: #e21a52;
    --color-accent-pink-hover: #ff1956;
    --color-text-white: #ffffff;
    --color-text-muted: #d5cbd1;
    --color-text-dark: #0f0f10;
    --color-text-gray: #5e6d55;

    /* Fonts */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: "Poppins", sans-serif;
}

/* ==========================================================================
   2. Global Resets & Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--color-text-white);
    background-color: var(--color-bg-dark);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   3. Hero Layout Structure
   ========================================================================== */
.rlp-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 80px;
    overflow: hidden;
    /* Rich lighting effect: deep burgundy gradients on black background */
    background:
        radial-gradient(circle at 80% 40%, rgba(226, 26, 82, 0.15) 20%, transparent 60%), radial-gradient(circle at 15% 100%, rgba(226, 26, 82, 0.12) 5%, transparent 800%), var(--color-bg-dark)
}

.rlp-hero-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    flex-grow: 1;
}

/* Left Column Content Styling */
.rlp-hero-content {
    width: 100%;
    max-width: min(56%, 760px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 24px;
    padding-bottom: 40px;
    z-index: 5;
}

.rlp-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 80px;
    /* Match Figma font size */
    font-weight: 700;
    /* Match Figma bold weight */
    line-height: 90px;
    /* Match Figma line height */
    color: var(--color-text-white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    /* Match Figma letter spacing (-3%) */
}

.rlp-highlight {
    color: var(--color-accent-pink);
    display: inline;
}

.rlp-hero-description {
    font-size: 22px;
    line-height: 40px;
    color: var(--color-text-white);
    margin-bottom: 40px;
    max-width: 700px;
    font-weight: 400;
}

/* Call to Action Buttons */
.rlp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.rlp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 21px 24px;
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.rlp-btn-primary {
    background-color: var(--color-text-white);
    color: var(--color-accent-pink);
    border: 1px solid var(--color-text-white);
}

.rlp-btn-primary:hover {
    background-color: #fcecef;
    color: var(--color-accent-pink-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(226, 26, 82, 0.25);
}

.rlp-btn-secondary {
    background-color: transparent;
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.rlp-btn-secondary:hover {
    border-color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Growth & Trust Section */
.rlp-growth-section {
    margin-bottom: 30px;
    padding: 24px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(226, 26, 82, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.rlp-growth-section:hover {
    transform: translateY(-4px);
    border-color: rgba(226, 26, 82, 0.4);
    box-shadow: 0 15px 35px rgba(226, 26, 82, 0.15);
}

.rlp-growth-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-white);
    letter-spacing: 0.02em;
    margin: 0;
    position: relative;
    display: inline-block;
}

.rlp-growth-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-accent-pink);
    border-radius: 2px;
}

.rlp-growth-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.rlp-growth-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.rlp-growth-item:hover {
    transform: translateX(4px);
}

.rlp-growth-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: rgba(226, 26, 82, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

.rlp-growth-icon svg {
    width: 12px;
    height: 12px;
}

.rlp-growth-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
}

.rlp-growth-item:hover .rlp-growth-text {
    color: var(--color-text-white);
}

.rlp-trust-badge {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rlp-trust-stars {
    display: flex;
    gap: 2px;
}

.rlp-trust-star {
    width: 18px;
    height: 18px;
    color: #ffb400;
    filter: drop-shadow(0 0 3px rgba(255, 180, 0, 0.5));
}

.rlp-trust-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Right Column - Speaker Media Styling */
.rlp-hero-media {
    position: absolute;
    top: 0;
    right: 40px;
    width: 45%;
    height: 1080px;
    z-index: 1;
    pointer-events: none;
}

/* Glowing Aura Behind Speaker */
.rlp-glow-backdrop {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(226, 26, 82, 0.25) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.rlp-speaker-img {
    max-width: 100%;
    height: auto;
    max-height: 95%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(226, 26, 82, 0.4);
    box-shadow: 0 0 60px rgba(226, 26, 82, 0.3);
    z-index: 2;
    display: block;
}

/* ==========================================================================
   4. Testimonials Marquee Section
   ========================================================================== */
.rlp-testimonial-marquee {
    position: relative;
    width: 100%;
    background-color: #000000;
    padding: 30px 0 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 10;
    /* Soft transparency fade on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 12%, #000000 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000000 12%, #000000 88%, transparent 100%);
}

.rlp-marquee-container {
    width: 100%;
    overflow: hidden;
}

.rlp-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: rlp-scroll 35s linear infinite;
}

/* Pause scroll animation on hover */
.rlp-marquee-track:hover {
    animation-play-state: paused;
}

/* Testimonial Card Styling */
.rlp-testimonial-card {
    flex-shrink: 0;
    width: 360px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rlp-testimonial-card figure {
    margin: 0;
    padding: 0;
    height: 238px;
    overflow: hidden;
    border-radius: 12px;
}

.rlp-testimonial-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.rlp-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(226, 26, 82, 0.12);
}

.rlp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 6px;
}

.rlp-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.35;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.rlp-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.rlp-card-stars {
    display: flex;
    gap: 1px;
    color: #ffb400;
    font-size: 0.82rem;
}

.rlp-score-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0a0a0a;
}

.rlp-card-date {
    font-size: 0.75rem;
    color: var(--color-text-gray);
    margin-bottom: 12px;
    font-weight: 500;
}

.rlp-card-quote {
    font-size: 0.81rem;
    line-height: 1.55;
    color: #333333;
    font-weight: 400;
    margin-bottom: 16px;
    height: 60px;
    /* Limits size to 3 lines */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.rlp-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 12px;
    margin-top: auto;
}

.rlp-author-icon {
    width: 15px;
    height: 15px;
    color: #14a800;
    /* Upwork Green */
    flex-shrink: 0;
}

.rlp-author-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: #0a0a0a;
}

/* ==========================================================================
   5. Why Work With Me Section
   ========================================================================== */
.rlp-why-sec {
    position: relative;
    width: 100%;
    background-color: var(--color-bg-dark);
    padding-top: 50px;
    padding-bottom: 90px;
    background:
        radial-gradient(circle at 10% 70%, rgba(226, 26, 82, 0.08) 0%, transparent 50%),
        var(--color-bg-dark);
}

/* Stats Capsule Bar Wrapper */
.rlp-stats-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
    position: relative;
    z-index: 15;
}

.rlp-stats-bar {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.12);
    /* Charcoal grey matching mockup background */
    border: 1px solid rgba(251, 18, 94, 0.2);
    /* Faint pink border */
    border-radius: 12px;
    /* Rectangle corners matching mockup */
    padding: 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rlp-stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.rlp-stat-box:first-child {
    justify-content: flex-start;
}

.rlp-stat-box:last-child {
    justify-content: flex-end;
}

.rlp-stat-icon-circle {
    width: 54px;
    height: 54px;
    background-color: var(--color-accent-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-text-white);
}

.rlp-stat-icon-circle svg {
    width: 20px;
    height: 20px;
}

.rlp-stat-info {
    display: flex;
    flex-direction: column;
}

.rlp-stat-num {
    font-size: 32px;
    /* Large bold numbers matching mockup */
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-white);
}

.rlp-stat-label {
    font-size: 20px;
    color: var(--color-text-white);
    font-weight: 400;
    white-space: nowrap;
    margin-top: 2px;
}

.rlp-stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(226, 26, 82, 0.8);
    /* Pink divider line matching mockup */
    margin: 0 10px;
    flex-shrink: 0;
}

/* Biography & Content Block Container */
.rlp-why-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
    padding: 50px 0 0 0;
}

.rlp-why-header {
    margin-bottom: 50px;
    /* Reduced gap */
}

.rlp-why-subtitle {
    color: var(--color-accent-pink);
    font-size: 24px;
    /* Matching mockup */
    font-weight: 600;
    margin-bottom: 15px;
}

.rlp-why-title {
    font-family: var(--font-heading);
    font-size: 48px;
    /* Larger title size matching mockup */
    font-weight: 700;
    line-height: 48px;
    color: var(--color-text-white);
    margin-bottom: 24px;
}

.rlp-why-desc {
    font-size: 24px;
    line-height: 40px;
    color: var(--color-text-white);
    margin-bottom: 16px;
    font-weight: 400;
}

/* "What Makes Me Different?" Section Styles */
.rlp-diff-section {
    width: 100%;
    margin-top: 10px;
    /* Reduced gap between bio and diff title */
}

.rlp-diff-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 50px;
}

.rlp-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.rlp-diff-card {
    background-color: rgba(255, 255, 255, 0.12);
    /* Matching stats bar charcoal background */
    border: 1px solid rgba(255, 255, 255, 0.02);
    /* Flat dark look */
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 74px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rlp-diff-card:hover {
    border-color: rgba(226, 26, 82, 0.20);
    background-color: #1a1a1d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.rlp-diff-icon-box {
    width: 60px;
    /* Matching mockup icon proportions */
    height: 60px;
    background-color: var(--color-accent-pink);
    border-radius: 8px;
    /* Slightly rounded square */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-text-white);
}

.rlp-diff-icon-box svg {
    width: 20px;
    height: 20px;
}

.rlp-diff-text {
    font-size: 24px;
    /* Matching mockup text size */
    font-weight: 400;
    color: var(--color-text-white);
    line-height: 32px;
}

/* Comparison Table Section */
.rlp-compare-section {
    margin-top: 80px;
    width: 100%;
}

.rlp-compare-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.rlp-compare-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 10px;
}

.rlp-compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.rlp-compare-table th,
.rlp-compare-table td {
    padding: 22px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 20px;
    vertical-align: middle;
}

.rlp-compare-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-white);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 22px;
}

/* Center icons columns */
.rlp-compare-table th:nth-child(2),
.rlp-compare-table th:nth-child(3),
.rlp-compare-table th:nth-child(4),
.rlp-compare-table td:nth-child(2),
.rlp-compare-table td:nth-child(3),
.rlp-compare-table td:nth-child(4) {
    text-align: center;
}

/* Highlight Kishan Unjia Column */
.rlp-compare-table th:nth-child(4),
.rlp-compare-table td:nth-child(4) {
    color: var(--color-text-white);
    font-weight: 700;
    background: rgba(226, 26, 82, 0.03);
}

.rlp-compare-table tbody tr {
    transition: background-color 0.2s ease;
}

.rlp-compare-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.rlp-compare-table tbody tr:hover td:nth-child(4) {
    background: rgba(226, 26, 82, 0.05);
}

.rlp-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.rlp-status-svg {
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* ==========================================================================
   6. CSS Animations
   ========================================================================== */
@keyframes rlp-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

/* ==========================================================================
   7. Responsive Design & Media Queries
   ========================================================================== */

/* Large screens and desktop size adjustment */
@media (max-width: 1200px) {
    .rlp-hero-content h1 {
        font-size: 64px;
        line-height: 72px;
        max-width: 900px;
    }

    .rlp-hero-container {
        padding: 0 30px;
    }

    .rlp-stats-container {
        padding: 0 30px;
    }

    .rlp-why-container {
        padding: 60px 30px 0 30px;
    }

    .rlp-diff-grid {
        gap: 16px;
    }
}

/* Tablets and small laptops */
@media (max-width: 992px) {
    .rlp-hero-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 40px;
    }

    .rlp-hero-content {
        align-items: center;
        max-width: 100%;
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .rlp-hero-content h1 {
        font-size: 48px;
        line-height: 56px;
        max-width: 100%;
    }

    .rlp-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .rlp-hero-ctas {
        justify-content: center;
    }



    .rlp-hero-media {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        margin-top: 30px;
        pointer-events: auto;
    }

    .rlp-speaker-img {
        max-height: 450px;
        width: auto;
    }

    .rlp-glow-backdrop {
        right: 50%;
        transform: translateX(50%);
        width: 350px;
        height: 350px;
        bottom: 0;
    }

    /* Stats Bar Wrapping */
    .rlp-stats-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 16px;
        padding: 24px 30px;
    }

    .rlp-stat-box {
        flex: none;
        width: calc(50% - 16px);
        justify-content: start !important;
    }

    .rlp-stat-divider {
        display: none;
        /* Hide dividers on wrapped tablets */
    }

    /* Feature Grid Wrapping */
    .rlp-diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
    .rlp-why-title {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .rlp-diff-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .rlp-stats-bar {
        padding: 20px;
    }

    .rlp-stat-box {
        width: 100%;
        justify-content: flex-start !important;
        padding-left: 20px;
    }

    .rlp-why-desc {
        font-size: 18px;
        line-height: 28px;
    }

    .rlp-compare-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .rlp-compare-table th,
    .rlp-compare-table td {
        padding: 16px 14px;
        font-size: 16px;
    }

    .rlp-compare-table th {
        font-size: 16px;
    }
}

/* Mobile Screens */
@media (max-width: 576px) {
    .rlp-hero {
        padding-top: 40px;
    }

    .rlp-hero-container {
        padding: 0 20px;
    }

    .rlp-hero-content h1 {
        font-size: 32px;
        line-height: 38px;
        letter-spacing: -0.02em;
    }

    .rlp-hero-description {
        font-size: 0.95rem;
    }

    .rlp-hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .rlp-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 18px;
    }



    .rlp-speaker-img {
        max-height: 350px;
    }

    .rlp-glow-backdrop {
        width: 260px;
        height: 260px;
    }

    .rlp-testimonial-marquee {
        padding: 20px 0 35px 0;
    }

    /* Stats Bar Mobile */
    .rlp-stats-container {
        padding: 0 20px;
    }

    .rlp-stat-box {
        padding-left: 0;
    }

    .rlp-stat-num {
        font-size: 1.4rem;
    }

    .rlp-stat-label {
        font-size: 0.78rem;
    }

    /* Bio Mobile */
    .rlp-why-container {
        padding: 40px 20px 0 20px;
    }

    /* Feature Grid Mobile */
    .rlp-diff-grid {
        grid-template-columns: 1fr;
    }

    .rlp-diff-card {
        padding: 14px 18px;
    }

    .rlp-hero-description {
        line-height: 22px;
    }

    .rlp-hero-media {
        display: none;
    }

    .rlp-why-subtitle {
        font-size: 18px;
        margin-bottom: 0;
    }

    .rlp-diff-text {
        font-size: 18px;
        line-height: 28px;
    }

    .rlp-services-header {
        margin-bottom: 30px;
    }

    .rlp-compare-title {
        font-size: 24px;
        text-align: left;
        margin-bottom: 20px;
    }

    .rlp-compare-table th,
    .rlp-compare-table td {
        padding: 12px 10px;
        font-size: 14px;
    }

    .rlp-compare-table th {
        font-size: 14px;
    }
}

/* ==========================================================================
   8. Our Services Section
   ========================================================================== */
.rlp-services-sec {
    position: relative;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.12);
    /* Charcoal grey background for section */
    padding: 80px 0 100px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 80%, rgba(226, 26, 82, 0.06) 0%, transparent 50%),
        #121214;
}

.rlp-services-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
}

.rlp-services-header {
    margin-bottom: 50px;
}

.rlp-services-subtitle {
    color: var(--color-accent-pink);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.rlp-services-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text-white);
}

.rlp-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.rlp-service-card {
    position: relative;
    background-color: #000000;
    /* Pure black cards to match Figma mockup */
    border: 1px solid rgba(226, 26, 82, 1);
    border-radius: 30px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rlp-service-card:hover {
    border-color: rgba(226, 26, 82, 0.25);
    background-color: #080205;
    /* Subtle pink/magenta hover background */
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.rlp-service-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background-color: var(--color-accent-pink);
    color: var(--color-text-white);
    font-size: 18px;
    font-weight: 600;
    padding: 8px 18px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    letter-spacing: 0.5px;
}

.rlp-service-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.rlp-service-icon-box {
    width: 100px;
    height: 100px;
    background-color: var(--color-accent-pink);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-text-white);
}

.rlp-service-icon-box svg {
    width: 48px;
    height: 48px;
}

.rlp-service-header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rlp-service-card-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--color-text-white);
    font-family: var(--font-heading);
}

.rlp-service-card-desc {
    font-size: 20px;
    line-height: 1.45;
    color: var(--color-text-white);
    margin-bottom: 24px;
}

.rlp-service-body {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 15px;
    align-items: center;
    flex-grow: 1;
}

.rlp-service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rlp-service-list li {
    display: flex;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-white);
    line-height: 22px;
}

.rlp-service-list li SVG {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
}

.rlp-service-check {
    width: 15px;
    height: 15px;
    color: var(--color-accent-pink);
    flex-shrink: 0;
}

.rlp-service-media-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.rlp-service-media-box figure {
    margin: 0;
    padding: 0;
    height: 145px;
}

.rlp-service-media-box figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   9. Inline CSS Mockup Illustrations
   ========================================================================== */

/* Web Mockup */
.rlp-mockup-web {
    position: relative;
    width: 130px;
    height: 90px;
}

.rlp-mockup-browser {
    width: 110px;
    height: 76px;
    border: 2px solid rgba(226, 26, 82, 0.45);
    border-radius: 6px;
    background: #121214;
    /* Charcoal background to contrast inside the black card */
    overflow: hidden;
}

.rlp-mockup-browser-header {
    height: 12px;
    border-bottom: 1.5px solid rgba(226, 26, 82, 0.45);
    display: flex;
    gap: 3px;
    padding-left: 5px;
    align-items: center;
    background-color: rgba(226, 26, 82, 0.05);
}

.rlp-mockup-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: rgba(226, 26, 82, 0.45);
}

.rlp-mockup-browser-body {
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rlp-mockup-line {
    height: 2.5px;
    background-color: rgba(226, 26, 82, 0.35);
    border-radius: 1px;
}

.rlp-mockup-line.header-line {
    width: 40px;
}

.rlp-mockup-grid-2 {
    display: flex;
    gap: 6px;
}

.rlp-mockup-line-box {
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(226, 26, 82, 0.45);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rlp-mockup-circle-small {
    width: 12px;
    height: 12px;
    border: 1.5px solid rgba(226, 26, 82, 0.45);
    border-radius: 50%;
}

.rlp-mockup-lines-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.rlp-mockup-phone {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 60px;
    border: 2px solid var(--color-accent-pink);
    border-radius: 5px;
    background-color: #121214;
    /* Charcoal background to contrast inside the black card */
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.rlp-mockup-phone-earpiece {
    width: 8px;
    height: 2px;
    background-color: rgba(226, 26, 82, 0.5);
    border-radius: 1px;
}

.rlp-mockup-phone-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.rlp-mockup-circle-avatar {
    width: 12px;
    height: 12px;
    border: 1.5px solid var(--color-accent-pink);
    border-radius: 50%;
}

.rlp-mockup-line.short-line {
    width: 100%;
    height: 2px;
}

/* Web App Mockup */
.rlp-mockup-app {
    position: relative;
    width: 130px;
    height: 90px;
    display: flex;
    justify-content: center;
}

.rlp-mockup-browser-body.app-body {
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rlp-mockup-app-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rlp-mockup-chart-circle {
    width: 28px;
    height: 28px;
    border: 3px solid var(--color-accent-pink);
    border-top-color: transparent;
    border-radius: 50%;
    transform: rotate(-30deg);
}

.rlp-mockup-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.rlp-mockup-bar {
    width: 4px;
    background-color: var(--color-accent-pink);
    border-radius: 1px 1px 0 0;
}

.rlp-mockup-app-grid-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
}

.rlp-mockup-bar-full {
    width: 45px;
    height: 2.5px;
    background-color: rgba(226, 26, 82, 0.35);
    border-radius: 1px;
}

.rlp-mockup-chart-circle-small {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent-pink);
    border-radius: 50%;
}

/* Branding Mockup */
.rlp-mockup-brand {
    position: relative;
    width: 130px;
    height: 90px;
}

.rlp-mockup-brand-box {
    position: absolute;
    left: 8px;
    top: 8px;
    width: 66px;
    height: 52px;
    border: 2px solid var(--color-accent-pink);
    border-radius: 6px;
    background-color: #121214;
    /* Charcoal background to contrast inside the black card */
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-4deg);
    z-index: 2;
}

.rlp-mockup-brand-text {
    font-size: 8px;
    font-weight: 800;
    color: var(--color-accent-pink);
    letter-spacing: 0.5px;
}

.rlp-mockup-brand-card {
    position: absolute;
    left: 48px;
    bottom: 12px;
    width: 46px;
    height: 28px;
    border: 1.5px solid rgba(226, 26, 82, 0.6);
    border-radius: 4px;
    background-color: #121214;
    /* Charcoal background to contrast inside the black card */
    transform: rotate(8deg);
    z-index: 3;
    box-shadow: -2px 4px 8px rgba(0, 0, 0, 0.5);
}

.rlp-mockup-brand-card.card-under {
    left: 36px;
    bottom: 6px;
    transform: rotate(-10deg);
    z-index: 1;
    border-color: rgba(226, 26, 82, 0.3);
}

.rlp-mockup-brand-pencil {
    position: absolute;
    right: 15px;
    bottom: 10px;
    width: 32px;
    height: 4px;
    background-color: var(--color-accent-pink);
    transform: rotate(-35deg);
    border-radius: 1px;
    z-index: 4;
}

/* SEO Mockup */
.rlp-mockup-seo {
    position: relative;
    width: 130px;
    height: 90px;
}

.seo-browser {
    width: 105px;
    height: 70px;
    position: absolute;
    left: 8px;
    top: 8px;
}

.seo-body {
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.rlp-mockup-seo-label {
    font-size: 9px;
    font-weight: 800;
    color: var(--color-accent-pink);
    letter-spacing: 1px;
    line-height: 1;
}

.rlp-mockup-seo-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.rlp-mockup-seo-bar {
    width: 4px;
    background-color: rgba(226, 26, 82, 0.45);
    border-radius: 1px 1px 0 0;
}

.rlp-mockup-seo-magnifier {
    position: absolute;
    right: 10px;
    bottom: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(-25deg);
    z-index: 3;
}

.rlp-mockup-mag-glass {
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-accent-pink);
    border-radius: 50%;
    background-color: rgba(226, 26, 82, 0.1);
}

.rlp-mockup-mag-handle {
    width: 2px;
    height: 14px;
    background-color: var(--color-accent-pink);
    margin-top: -1px;
}

/* ==========================================================================
   9. Pricing & Packages Section
   ========================================================================== */
.rlp-pricing-sec {
    position: relative;
    width: 100%;
    background-color: var(--color-bg-dark);
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background:
        radial-gradient(circle at 50% 100%, rgba(226, 26, 82, 0.06) 0%, transparent 60%),
        var(--color-bg-dark);
}

.rlp-pricing-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.rlp-pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.rlp-pricing-subtitle {
    color: var(--color-accent-pink);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.rlp-pricing-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-white);
    margin-bottom: 16px;
}

.rlp-pricing-desc {
    font-size: 18px;
    color: var(--color-text-muted);
}

/* Grid */
.rlp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

@keyframes rlp-rotate-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Pricing Card */
.rlp-pricing-card {
    position: relative;
    z-index: 1;
    /* Establish a stacking context so pseudo-element borders render correctly by default */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    /* Hide the rotating square overflow */
}

/* The rotating conic-gradient border block */
.rlp-pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            var(--color-accent-pink) 0deg,
            #ffffff 90deg,
            transparent 180deg,
            transparent 270deg,
            var(--color-accent-pink) 360deg);
    animation: rlp-rotate-border 4s linear infinite;
    z-index: -2;
    opacity: 1;
    /* Always active */
    transition: opacity 0.4s ease;
}

/* The inner card background mask */
.rlp-pricing-card::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #0b0509;
    /* Matches the dark background of card */
    border-radius: 22px;
    z-index: -1;
    opacity: 1;
    /* Always active */
    transition: opacity 0.4s ease;
}

/* Hover effect for all cards */
.rlp-pricing-card:hover {
    transform: translateY(-8px);
}

.rlp-popular-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--color-accent-pink);
    color: var(--color-text-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(226, 26, 82, 0.3);
}

/* Card Header */
.rlp-pricing-card-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rlp-package-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-white);
    margin: 0;
}

.rlp-package-price {
    display: flex;
    align-items: baseline;
    color: var(--color-text-white);
}

.rlp-price-currency {
    font-size: 28px;
    font-weight: 600;
    margin-right: 2px;
    color: var(--color-accent-pink);
}

.rlp-price-amount {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.rlp-price-suffix {
    font-size: 28px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.rlp-price-custom {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-text-white);
}

.rlp-package-tagline {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-muted);
    min-height: 42px;
}

.rlp-pricing-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 24px 0;
}

/* Features List */
.rlp-package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rlp-package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text-muted);
}

.rlp-feature-check {
    width: 18px;
    height: 18px;
    color: var(--color-accent-pink);
    flex-shrink: 0;
}

.rlp-pricing-card.rlp-pricing-popular .rlp-feature-check {
    color: #10b981;
    /* Green check for highlighted items */
}

/* Action Button */
.rlp-pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: transparent;
    color: var(--color-text-white);
}

.rlp-pricing-btn:hover {
    border-color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.rlp-pricing-btn-primary {
    background-color: var(--color-accent-pink);
    border-color: var(--color-accent-pink);
    color: var(--color-text-white);
    box-shadow: 0 4px 15px rgba(226, 26, 82, 0.3);
}

.rlp-pricing-btn-primary:hover {
    background-color: var(--color-accent-pink-hover);
    border-color: var(--color-accent-pink-hover);
    box-shadow: 0 6px 20px rgba(226, 26, 82, 0.5);
    transform: translateY(-1px);
}

/* Responsive Overrides for Pricing Section */
@media (max-width: 992px) {
    .rlp-pricing-sec {
        padding: 80px 0;
    }

    .rlp-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .rlp-pricing-card.rlp-pricing-popular {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .rlp-pricing-title {
        font-size: 36px;
    }

    .rlp-pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rlp-pricing-card.rlp-pricing-popular {
        grid-column: span 1;
    }

    .rlp-pricing-card {
        padding: 36px 24px;
    }
}

/* ==========================================================================
   10. Services Responsive Design
   ========================================================================== */
@media (max-width: 1200px) {
    .rlp-services-container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .rlp-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rlp-service-card {
        padding: 36px 24px 24px 24px;
    }
}

@media (max-width: 576px) {
    .rlp-services-sec {
        padding: 60px 0;
    }

    .rlp-services-container {
        padding: 0 20px;
    }

    .rlp-services-title {
        font-size: 32px;
    }

    .rlp-service-card-title {
        font-size: 20px;
    }

    .rlp-service-body {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
        align-items: start;
    }

    .rlp-service-media-box {
        margin-top: 10px;
        order: -1;
        justify-content: flex-start;
        /* Puts illustration above text points on mobile */
    }

    .rlp-portfolio-stats-box {
        flex-wrap: wrap;
    }

    .rlp-portfolio-showcase {
        height: 430px !important;
    }

    .rlp-portfolio-number {
        font-size: 30px !important;
    }

    .rlp-portfolio-tagline {
        font-size: 18px !important;
    }

    .rlp-portfolio-pill .rlp-portfolio-pill-header span {
        font-size: 18px !important;
    }

    .rlp-portfolio-pill-value {
        font-size: 17px !important;
    }

    .rlp-portfolio-pill {
        padding: 12px 16px !important;
    }

    .rlp-portfolio-services-header span {
        font-size: 18px !important;
    }

    .rlp-portfolio-service-item span {
        font-size: 16px !important;
    }

    .rlp-proof-logo-box {
        height: 40px !important;
    }

    .rlp-process-step-title {
        font-size: 18px !important;
        min-width: 150px !important;
    }

    .rlp-process-step-desc {
        font-size: 16px;
    }

    .rlp-process-icon-circle {
        width: 50px !important;
        height: 50px !important;
    }

    .rlp-process-icon-circle svg {
        width: 22px !important;
        height: 22px !important;
    }

    .rlp-process-step::after {
        display: none;
    }
}

/* ==========================================================================
   11. What Clients Achieve Section
   ========================================================================== */
.rlp-achieve-sec {
    position: relative;
    width: 100%;
    background-color: #050103;
    /* Deep black background matching mockup */
    padding: 100px 0 100px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(226, 26, 82, 0.05) 0%, transparent 60%),
        #050103;
}

.rlp-achieve-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
}

.rlp-achieve-header {
    margin-bottom: 50px;
    text-align: left;
    /* Aligns with services section header */
}

.rlp-achieve-subtitle {
    color: var(--color-accent-pink);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.rlp-achieve-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    color: var(--color-text-white);
}

.rlp-achieve-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.rlp-achieve-card {
    background-color: #121214;
    /* Charcoal grey background for cards */
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rlp-achieve-card:hover {
    border-color: rgba(226, 26, 82, 0.25);
    background-color: rgba(255, 255, 255, 0.12);
    /* Slightly lighter charcoal grey on hover */
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.rlp-achieve-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-accent-pink);
}

.rlp-achieve-icon {
    width: 44px;
    height: 44px;
}

.rlp-achieve-card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 12px;
    line-height: 39px;
}

.rlp-achieve-card-desc {
    font-size: 18px;
    line-height: 28px;
    color: var(--color-text-white);
}

/* Responsive Styles for Achieve Section */
@media (max-width: 1200px) {
    .rlp-achieve-container {
        padding: 0 30px;
    }

    .rlp-achieve-grid {
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .rlp-achieve-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .rlp-achieve-sec {
        padding: 60px 0;
    }

    .rlp-achieve-title {
        font-size: 32px;
    }

    .rlp-achieve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .rlp-achieve-container {
        padding: 0 20px;
    }

    .rlp-achieve-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rlp-achieve-card {
        padding: 32px 20px;
    }
}

/* ==========================================================================
   12. Our Portfolio Section
   ========================================================================== */
.rlp-portfolio-sec {
    position: relative;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.12);
    /* Charcoal background alternating with black */
    padding: 100px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(226, 26, 82, 0.04) 0%, transparent 60%),
        #121214;
}

.rlp-portfolio-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
}

.rlp-portfolio-header {
    margin-bottom: 50px;
    text-align: left;
}

.rlp-portfolio-subtitle {
    color: var(--color-accent-pink);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.rlp-portfolio-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    color: var(--color-text-white);
}

.rlp-portfolio-items {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.rlp-portfolio-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.rlp-portfolio-item-reverse {
    flex-direction: row-reverse;
}

.rlp-portfolio-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rlp-portfolio-showcase {
    height: 560px;
    border-radius: 30px;
}

.rlp-portfolio-showcase-stack {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rlp-portfolio-showcase-stack img {
    height: auto;
    object-fit: contain;
}

.rlp-portfolio-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.rlp-portfolio-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rlp-portfolio-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(226, 26, 82, 0.15);
    border-color: rgba(226, 26, 82, 0.2);
}

.rlp-portfolio-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 30px;
    line-height: 1;
    padding-bottom: 5px;
    border-bottom: 1px solid #FB125E
}

.rlp-portfolio-item-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text-white);
    line-height: 39px;
    margin-bottom: 2px;
    text-transform: capitalize;
}

.rlp-portfolio-tagline {
    font-size: 20px;
    color: var(--color-text-white);
    margin-bottom: 15px;
}

.rlp-portfolio-divider {
    width: 100%;
    border-bottom: 2px dashed rgba(226, 26, 82, 0.8);
    margin-bottom: 24px;
}

.rlp-portfolio-pills-row {
    display: flex;
    gap: 20px 40px;
    margin-bottom: 20px;
}

.rlp-portfolio-pill {
    background-color: #000000;
    border: 1px solid rgba(226, 26, 82, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.rlp-portfolio-pill .rlp-portfolio-pill-header span {
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
}

.rlp-portfolio-pill:hover {
    border-color: rgba(226, 26, 82, 0.25);
    background-color: #050103;
}

.rlp-portfolio-pill-header {
    display: flex;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent-pink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rlp-portfolio-services-header span {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
}

.rlp-portfolio-service-item span {
    font-size: 20px;
    font-weight: 400;
}

.rlp-portfolio-pill-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent-pink);
}

.rlp-portfolio-pill-value {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text-white);
    text-transform: Capitalize;
}

.rlp-portfolio-services-box {
    background-color: #000000;
    border: 1px solid rgba(226, 26, 82, 0.1);
    border-radius: 16px;
    padding: 22px 24px;
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.rlp-portfolio-services-box:hover {
    border-color: rgba(226, 26, 82, 0.25);
    background-color: #050103;
}

.rlp-portfolio-services-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-accent-pink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.rlp-portfolio-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.rlp-portfolio-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-white);
}

.rlp-portfolio-check-icon {
    width: 14px;
    height: 14px;
    color: var(--color-accent-pink);
    flex-shrink: 0;
}

.rlp-portfolio-stats-box {
    background-color: #000000;
    border: 1px solid rgba(226, 26, 82, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.3s ease;
}

.rlp-portfolio-stats-box:hover {
    border-color: rgba(226, 26, 82, 0.25);
    background-color: #050103;
}

.rlp-portfolio-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.rlp-portfolio-stat-circle {
    width: 40px;
    height: 40px;
    background-color: var(--color-accent-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-white);
    flex-shrink: 0;
}

.rlp-portfolio-stat-circle svg {
    width: 14px;
    height: 14px;
}

.rlp-portfolio-stat-text {
    display: flex;
    flex-direction: column;
}

.rlp-portfolio-stat-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-white);
    line-height: 1.15;
    margin-bottom: 4px;
}

.rlp-portfolio-stat-label {
    font-size: 16px;
    color: var(--color-text-white);
    line-height: 1.2;
}

.card-divider {
    height: 64px;
    width: 1px;
    background-color: #FB125E
}

/* ==========================================================================
   13. Portfolio Responsive Media Queries
   ========================================================================== */
@media (max-width: 1200px) {
    .rlp-portfolio-container {
        padding: 0 30px;
    }

    .rlp-portfolio-item {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .rlp-portfolio-sec {
        padding: 80px 0;
    }

    .rlp-portfolio-items {
        gap: 60px;
    }

    .rlp-portfolio-item,
    .rlp-portfolio-item-reverse {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 30px;
    }

    .rlp-portfolio-info {
        max-width: 100%;
        width: 100%;
    }

    .rlp-portfolio-stats-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 10px;
    }

    .rlp-proof-logos {
        justify-content: center;
        align-items: center;
    }

    .rlp-proof-logo-box {
        width: auto !important;
    }
}

@media (max-width: 768px) {
    .rlp-portfolio-title {
        font-size: 32px;
    }

    .rlp-portfolio-item-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .rlp-portfolio-sec {
        padding: 60px 0;
    }

    .rlp-portfolio-container {
        padding: 0 20px;
    }

    .rlp-portfolio-pills-row {
        flex-direction: column;
        gap: 12px;
    }

    .rlp-portfolio-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rlp-portfolio-stats-box {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ==========================================================================
   14. Find Me Online Section
   ========================================================================== */
.rlp-find-sec {
    position: relative;
    width: 100%;
    background-color: var(--color-bg-dark);
    /* Solid black #050103 */
    padding: 100px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 80%, rgba(226, 26, 82, 0.08) 0%, transparent 50%),
        var(--color-bg-dark);
}

.rlp-find-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
}

.rlp-find-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

/* Badges Row */
.rlp-find-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.rlp-find-badge {
    background-color: #121214;
    border: 1px solid rgba(226, 26, 82, 0.15);
    border-radius: 8px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.rlp-badge-stars {
    color: #ffb400;
    /* Gold/yellow stars */
    font-size: 18px;
}

.rlp-badge-highlight {
    color: var(--color-accent-pink);
    /* Pink highlighted number/text */
    font-size: 24px;
    font-weight: 600;
}

.rlp-badge-text {
    color: var(--color-text-white);
    /* Grey label text */
    font-size: 24px;
    font-weight: 600;
    line-height: 12px;
}

/* Grid Layout */
.rlp-find-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rlp-find-card {
    background-color: #121214;
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 18px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.rlp-find-card:hover {
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--color-accent-pink);
    box-shadow: 0 15px 35px rgba(226, 26, 82, 0.15);
}

.rlp-find-icon-circle {
    width: 64px;
    height: 64px;
    background-color: var(--color-accent-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-white);
    transition: transform 0.35s ease;
}

.rlp-find-card:hover .rlp-find-icon-circle {
    transform: scale(1.08);
}

.rlp-find-icon-circle svg {
    width: 28px;
    height: 28px;
}

.rlp-find-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-white);
    letter-spacing: 0.02em;
}

/* Responsive Media Queries for Find Me Online */
@media (max-width: 1200px) {
    .rlp-find-container {
        padding: 0 30px;
    }

    .rlp-find-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .rlp-find-sec {
        padding: 80px 0;
    }

    .rlp-find-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rlp-find-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .rlp-find-sec {
        padding: 60px 0;
    }

    .rlp-find-container {
        padding: 0 20px;
    }

    .rlp-find-badges {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .rlp-find-badge {
        justify-content: center;
    }

    .rlp-find-grid {
        gap: 16px;
    }

    .rlp-find-card {
        padding: 32px 20px;
    }
}

/* ==========================================================================
   10. Social Proof Section
   ========================================================================== */
.rlp-proof-sec {
    background-color: rgba(255, 255, 255, 0.12);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.rlp-proof-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
}

.rlp-proof-subtitle {
    color: var(--color-accent-pink);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.rlp-proof-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 64px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.rlp-proof-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.rlp-proof-card {
    background-color: #000000;
    border-radius: 16px;
    padding: 56px 20px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.rlp-proof-card:hover {
    transform: translateY(-8px);
    border-color: rgba(226, 26, 82, 0.3);
    box-shadow: 0 12px 30px rgba(226, 26, 82, 0.15);
}

.rlp-proof-icon-circle {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--color-accent-pink);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.rlp-proof-card:hover .rlp-proof-icon-circle {
    transform: translateX(-50%) scale(1.05);
}

.rlp-proof-icon-circle svg {
    width: 24px;
    height: 24px;
    color: var(--color-text-white);
}

.rlp-proof-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 0.02em;
}

.rlp-proof-logos {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.rlp-proof-logo-box {
    height: 64px;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    text-decoration: none;
    border-radius: 8px;
}

.rlp-proof-logo-box:hover {
    transform: scale(1.06);
    filter: brightness(1.15) drop-shadow(0 0 10px rgba(226, 26, 82, 0.3));
}

.rlp-proof-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   11. Our Process Section
   ========================================================================== */
.rlp-process-sec {
    background-color: #050103;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.rlp-process-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
}

.rlp-process-subtitle {
    color: var(--color-accent-pink);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.rlp-process-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 64px;
    line-height: 1.2;
}

.rlp-process-timeline-wrapper {
    position: relative;
    width: 100%;
    margin-top: 48px;
}

.rlp-process-line {
    display: none;
    /* Hidden, using robust pseudo-element connection line instead */
}

.rlp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.rlp-process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Horizontal Timeline Line connecting circles */
.rlp-process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 80px;
    top: 40px;
    width: calc(100% - 80px + 32px);
    height: 2px;
    background-color: var(--color-text-white);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.rlp-process-step-active:not(:last-child)::after {
    background-color: var(--color-accent-pink);
}

.rlp-process-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #121214;
    border: 2px solid var(--color-text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.6);
    z-index: 2;
    transition: all 0.3s ease;
}

.rlp-process-step-active .rlp-process-icon-circle {
    background-color: var(--color-accent-pink);
    border-color: var(--color-accent-pink);
    color: var(--color-text-white);
    box-shadow: 0 0 24px rgba(226, 26, 82, 0.4);
}

.rlp-process-icon-circle svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.rlp-process-num-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background-color: #fff;
    color: var(--color-accent-pink);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.rlp-process-step-active .rlp-process-num-badge {
    background-color: #ffffff;
    color: var(--color-accent-pink);
    border-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.rlp-process-step-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-accent-pink);
    margin-bottom: 12px;
}

.rlp-process-step-desc {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--color-text-white);
    line-height: 28px;
}

/* ==========================================================================
   12. Responsive Media Queries for New Sections
   ========================================================================== */
@media (max-width: 1200px) {

    .rlp-proof-container,
    .rlp-process-container {
        padding: 0 30px;
    }

    .rlp-proof-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 24px;
    }

    .rlp-process-grid {
        gap: 24px;
    }

    .rlp-process-step:not(:last-child)::after {
        width: calc(100% - 80px + 24px);
    }
}

@media (max-width: 992px) {

    .rlp-proof-sec,
    .rlp-process-sec {
        padding: 80px 0;
    }

    .rlp-proof-title,
    .rlp-process-title {
        font-size: 34px;
        margin-bottom: 48px;
    }

    .rlp-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 24px;
    }

    /* Convert horizontal timeline to vertical timeline */
    .rlp-process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rlp-process-step {
        flex-direction: row;
        gap: 24px;
        align-items: flex-start;
        position: relative;
    }

    .rlp-process-icon-circle {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    /* Vertical connecting line */
    .rlp-process-step:not(:last-child)::after {
        left: 40px;
        top: 80px;
        bottom: -40px;
        right: auto;
        width: 2px;
        height: auto;
        z-index: 1;
    }
}

@media (max-width: 576px) {

    .rlp-proof-sec,
    .rlp-process-sec {
        padding: 60px 0;
    }

    .rlp-proof-container,
    .rlp-process-container {
        padding: 0 20px;
    }

    .rlp-proof-grid {
        grid-template-columns: 1fr;
        gap: 56px 16px;
    }

    .rlp-proof-title,
    .rlp-process-title {
        font-size: 28px;
    }

    .rlp-process-step {
        gap: 16px;
    }

    .rlp-process-step:not(:last-child)::after {
        left: 40px;
        top: 80px;
        bottom: -40px;
    }
}

/* ==========================================================================
   13. Free Website Audit Section
   ========================================================================== */
.rlp-audit-sec {
    background-color: rgba(255, 255, 255, 0.12);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(93, 63, 68, 1);
}

.rlp-audit-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
}

.rlp-audit-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.rlp-audit-subtitle {
    color: var(--color-accent-pink);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.rlp-audit-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 16px;
    line-height: 48px;
}

.rlp-audit-desc {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--color-text-white);
    line-height: 28px;
    margin-bottom: 40px;
}

.rlp-audit-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.rlp-audit-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rlp-audit-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--color-accent-pink);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-accent-pink);
    flex-shrink: 0;
}

.rlp-audit-check svg {
    width: 10px;
    height: 10px;
}

.rlp-audit-point-text {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--color-text-white);
}

.rlp-audit-action-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.rlp-btn-white-bg {
    background-color: #ffffff !important;
    color: var(--color-accent-pink) !important;
    border-color: #ffffff !important;
}

.rlp-btn-white-bg:hover {
    background-color: var(--color-accent-pink-hover) !important;
    color: #ffffff !important;
    border-color: var(--color-accent-pink-hover) !important;
}

.rlp-audit-action-note {
    display: flex;
    flex-direction: column;
}

.rlp-audit-note-primary {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-text-white);
}

.rlp-audit-note-secondary {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-text-white);
}

.rlp-audit-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.rlp-audit-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 570px;
}

.rlp-audit-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(226, 26, 82, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.rlp-audit-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

/* ==========================================================================
   14. Call to Action Section
   ========================================================================== */
.rlp-cta-sec {
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin: 0 0 -200px 0;
    border-top: 1px solid rgba(93, 63, 68, 1);
}

.rlp-cta-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
}

.rlp-cta-banner {
    background-color: var(--color-accent-pink);
    border-radius: 24px;
    padding: 64px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(226, 26, 82, 0.15);
}

.rlp-cta-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.rlp-cta-content {
    position: relative;
    z-index: 2;
    max-width: 1170px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rlp-cta-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 24px;
    line-height: 48px;
}

.rlp-cta-desc {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--color-text-white);
    line-height: 24px;
    margin-bottom: 30px;
    /* Reduced to balance checklist spacing */
}

.rlp-cta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    list-style: none;
    margin-bottom: 48px;
    padding: 0;
    width: 100%;
}

.rlp-cta-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text-white);
}

.rlp-cta-feature-check {
    width: 24px;
    height: 24px;
    color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 4px;
    flex-shrink: 0;
}

.rlp-cta-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
    width: 100%;
}

.rlp-cta-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.rlp-cta-badge:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.rlp-cta-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-white);
    flex-shrink: 0;
}

.rlp-cta-badge-icon svg {
    width: 35px;
    height: 35px;
}

.rlp-cta-badge-text {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-text-white);
}

.rlp-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.rlp-btn-outline {
    background-color: transparent !important;
    color: var(--color-text-white) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.rlp-btn-outline:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
}

/* ==========================================================================
   15. Footer Section
   ========================================================================== */
.rlp-footer {
    background-color: rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-top: 200px;
}

.rlp-footer-container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 70px 0 0px;
}

.rlp-footer-top {
    padding-bottom: 40px;
    text-align: center;
}

.rlp-footer-desc {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--color-text-white);
    line-height: 34px;
    margin-bottom: 30px;
}

.rlp-footer-socials {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.rlp-footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-white);
    transition: all 0.3s ease;
}

.rlp-footer-social-link:hover {
    color: var(--color-text-muted);
    transform: translateY(-4px);
}

.rlp-footer-social-link svg {
    width: 20px;
    height: 20px;
}

#rlp-social-freelancer svg {
    width: 24px;
    height: 18px;
}

.rlp-footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 50px;
    right: 80px;

}

.rlp-footer-logo-container img {
    height: 140px;
    width: 140px;
}

.rlp-footer-logo-mark {
    width: 64px;
    height: 64px;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.rlp-footer-logo-container:hover .rlp-footer-logo-mark {
    transform: rotate(180deg);
}

.rlp-footer-bottom {
    background-color: var(--color-accent-pink);
    padding: 16px 0;
    width: 100%;
}

.rlp-footer-bottom-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.rlp-footer-copyright {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--color-text-white);
    font-weight: 600;
}

.rlp-footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rlp-footer-links a {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--color-text-white);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.rlp-footer-links a:hover {
    opacity: 0.8;
}

.rlp-footer-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* ==========================================================================
   16. Responsive Breakpoints for New Sections
   ========================================================================== */
@media (max-width: 1200px) {
    .rlp-audit-grid {
        gap: 40px;
    }

    .rlp-audit-title {
        font-size: 34px;
    }

    .rlp-cta-banner {
        padding: 56px 32px;
    }
}

@media (max-width: 992px) {
    .rlp-audit-sec {
        padding: 60px 0;
    }

    .rlp-audit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .rlp-audit-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .rlp-audit-desc {
        max-width: 700px;
    }

    .rlp-audit-points {
        max-width: 600px;
        width: 100%;
    }

    .rlp-audit-point {
        justify-content: center;
    }

    .rlp-audit-action-row {
        justify-content: center;
    }

    .rlp-footer-top {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .rlp-footer-desc {
        max-width: 100%;
    }

    .rlp-hero {
        padding: 0;
        min-height: auto;
    }

    .rlp-why-sec {
        padding-top: 0 !important;
        padding-bottom: 60px;
    }

    .rlp-service-icon-box {
        width: 80px;
        height: 80px;
    }

    .rlp-service-icon-box svg {
        width: 35px;
        height: 35px;
    }

    .rlp-cta-container {
        padding: 0 30px;
    }

    .rlp-footer-bottom-container {
        padding: 0 30px;
    }

}

@media (max-width: 768px) {
    .rlp-cta-title {
        font-size: 30px;
    }

    .rlp-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        width: 100%;
        max-width: 320px;
    }

    .rlp-cta-buttons a {
        text-align: center;
    }

    .rlp-footer-logo-container {
        display: none;
    }
}

@media (max-width: 576px) {
    .rlp-audit-sec {
        padding: 60px 0;
    }

    .rlp-audit-container,
    .rlp-cta-container,
    .rlp-footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .rlp-audit-title {
        font-size: 28px;
    }

    .rlp-audit-points {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-left: 15px;
    }

    .rlp-audit-point {
        justify-content: flex-start;
    }

    .rlp-audit-action-row {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .rlp-audit-action-row a {
        width: 100%;
        text-align: center;
    }

    .rlp-audit-action-note {
        text-align: center;
    }

    .rlp-cta-sec {
        padding: 60px 0;
    }

    .rlp-cta-banner {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .rlp-cta-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .rlp-cta-badges {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .rlp-cta-badge {
        justify-content: flex-start;
    }

    .rlp-footer-container {
        padding-top: 48px;
        padding-bottom: 24px;
    }

    .rlp-footer-bottom-container {
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .rlp-process-step-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .rlp-audit-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .rlp-audit-point-text {
        font-size: 16px;
    }

    .rlp-cta-desc {
        font-size: 16px;
        line-height: 24px;
    }

    .rlp-cta-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 30px;
    }

    .rlp-cta-features li {
        font-size: 18px;
        text-align: left;
    }

    .rlp-cta-badge-text {
        font-size: 18px;
    }

    .rlp-cta-sec {
        margin: 0;
        padding: 0 0 0;
    }

    .rlp-footer {
        padding: 40px 0 0;
    }

    .rlp-footer-container {
        padding-top: 0;
    }

    .rlp-footer-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .rlp-footer-copyright {
        font-size: 16px;
    }

    .rlp-footer-links a {
        font-size: 16px;
    }

    .rlp-footer-top {
        padding-bottom: 20px;
    }

    .rlp-services-subtitle,
    .rlp-audit-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .rlp-achieve-subtitle,
    .rlp-portfolio-subtitle,
    .rlp-process-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }

}

@media (max-width: 575px) {
    .rlp-service-icon-box {
        width: 50px;
        height: 50px;
    }

    .rlp-service-card-desc {
        font-size: 16px;
        line-height: 22px;
    }

    .rlp-service-badge {
        font-size: 14px;
        padding: 6px 12px;
        border-bottom-left-radius: 14px;
        border-top-right-radius: 14px;
    }

    .rlp-service-list {
        gap: 12px;
    }

    .rlp-service-list li {
        align-items: flex-start;
        line-height: 1.5;
    }

    .rlp-service-list li span {
        font-size: 16px;
        line-height: 1.5;
    }

    .rlp-achieve-card-title {
        line-height: 28px;
    }

    .card-divider {
        display: none;
    }

    .rlp-portfolio-stats-box {
        flex-direction: column;
        align-items: start;
    }

    .rlp-portfolio-showcase {
        height: 260px !important;
    }

    .rlp-badge-text {
        font-size: 18px;
    }

    .rlp-find-badge {
        justify-content: start;
    }

    .rlp-find-card {
        padding: 20px;
    }

    .rlp-proof-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .rlp-proof-card {
        padding-top: 36px;
    }

    .rlp-proof-card-title {
        margin-bottom: 12px;
    }

    .rlp-process-step {
        flex-wrap: wrap;
        align-items: center;
    }

    .rlp-cta-badge-icon svg {
        width: 28px;
        height: 28px;
    }

    .rlp-footer-top {
        padding-bottom: 0;
    }

    .rlp-service-media-box figure {
        height: 100px;
    }
}

/* ==========================================================================
   17. Frequently Asked Questions Section
   ========================================================================== */
.rlp-faq-sec {
    position: relative;
    width: 100%;
    background-color: var(--color-bg-dark);
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background:
        radial-gradient(circle at 10% 30%, rgba(226, 26, 82, 0.05) 0%, transparent 55%),
        var(--color-bg-dark);
}

.rlp-faq-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.rlp-faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.rlp-faq-subtitle {
    color: var(--color-accent-pink);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.rlp-faq-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text-white);
    margin-bottom: 16px;
}

.rlp-faq-desc {
    font-size: 20px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.rlp-faq-list {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Details element resets & styles */
.rlp-faq-item {
    background-color: #121214;
    /* Match card backgrounds */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rlp-faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background-color: #161619;
}

.rlp-faq-item[open] {
    border-color: var(--color-accent-pink);
    background-color: #121214;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Summary element resets & styles */
.rlp-faq-question {
    list-style: none;
    /* Hide default arrow */
    outline: none;
    cursor: pointer;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-white);
    user-select: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.rlp-faq-question::-webkit-details-marker {
    display: none;
    /* Hide default arrow on Webkit browsers */
}

.rlp-faq-question:hover {
    color: var(--color-accent-pink);
}

/* Icon rotation and animation */
.rlp-faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-pink);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.rlp-faq-item[open] .rlp-faq-icon {
    transform: rotate(45deg);
    /* Turns the plus into a close cross */
}

/* Answer block */
.rlp-faq-answer {
    padding: 0 30px 24px 30px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
    border-top: 1px solid transparent;
    /* Re-drawn when active */
    animation: rlp-slide-down 0.25s ease-out;
}

.rlp-faq-item[open] .rlp-faq-answer {
    border-top-color: rgba(255, 255, 255, 0.03);
}

.rlp-faq-answer p {
    margin: 0;
}

@keyframes rlp-slide-down {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .rlp-faq-sec {
        padding: 60px 0;
    }

    .rlp-faq-container {
        padding: 0 20px;
        gap: 40px;
    }

    .rlp-faq-title {
        font-size: 32px;
    }

    .rlp-faq-question {
        padding: 20px;
        font-size: 18px;
    }

    .rlp-faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* ==========================================================================
   18. Floating Action Buttons
   ========================================================================== */
.rlp-floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 9999;
    pointer-events: none; /* Let pointer events pass through container background */
}

/* Individual Floating Button Reset & Base */
.rlp-float-btn {
    pointer-events: auto; /* Re-enable pointer events on the buttons */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    outline: none;
}

/* Circular Chat Toggle Button */
.rlp-float-chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: var(--color-text-white);
    background: linear-gradient(135deg, var(--color-accent-pink) 0%, #ff4081 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(226, 26, 82, 0.4);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.rlp-float-chat-toggle:hover {
    background: linear-gradient(135deg, var(--color-accent-pink-hover) 0%, #ff5252 100%);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 25px rgba(226, 26, 82, 0.6);
}

.rlp-float-chat-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: auto;
}

/* Chat Popover Menu */
.rlp-float-chat-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 260px;
    background: rgba(18, 18, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 15px 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10000;
    
    /* Animation initial state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.rlp-float-chat-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Menu Items inside popover */
.rlp-chat-menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.rlp-chat-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--color-accent-pink-hover);
    transform: translateX(-4px);
}

.rlp-chat-menu-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rlp-chat-menu-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.rlp-chat-menu-icon svg,
.rlp-chat-menu-icon svg path {
    fill: currentColor !important;
}

/* Icon specific colors (as per screenshot) */
.rlp-icon-call {
    background-color: rgba(76, 175, 80, 0.15);
    color: #4CAF50; /* Green phone */
}

.rlp-icon-whatsapp {
    background-color: rgba(37, 211, 102, 0.15);
    color: #25D366; /* Green WhatsApp */
}

.rlp-icon-instagram {
    background-color: rgba(225, 48, 108, 0.15);
    color: #E1306C; /* Pink Instagram */
}

.rlp-icon-email {
    background-color: rgba(33, 150, 243, 0.15);
    color: #2196F3; /* Blue Mail */
}

.rlp-icon-telegram {
    background-color: rgba(0, 136, 204, 0.15);
    color: #0088cc; /* Blue Telegram */
}

/* Book Free Audit Button (Pill on Desktop) */
.rlp-float-audit {
    padding: 14px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--color-accent-pink) 0%, #ff4081 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-white);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 10px;
}

.rlp-float-audit:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 30px rgba(226, 26, 82, 0.6);
    background: linear-gradient(135deg, var(--color-accent-pink-hover) 0%, #ff5252 100%);
}

/* Icon styles inside floating buttons */
.rlp-float-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Tooltip on Hover for Circular Buttons (Desktop only) */
.rlp-float-tooltip {
    position: absolute;
    right: 70px;
    background-color: #121214;
    color: var(--color-text-white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.rlp-float-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #121214;
}

.rlp-float-btn:hover .rlp-float-tooltip {
    opacity: 1;
    visibility: visible;
    right: 66px;
}

/* Responsive Overrides (Mobile Sticky Bottom Bar) */
@media (max-width: 768px) {
    .rlp-floating-actions {
        bottom: 0;
        right: 0;
        left: 0;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: rgba(8, 8, 8, 0.96);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px)) 16px;
        gap: 10px;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
        pointer-events: auto;
        border-radius: 0;
    }

    /* Disable floating hover translates on mobile to keep layout stable */
    .rlp-float-btn:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .rlp-float-chat-toggle {
        width: 48px;
        height: 48px;
        box-shadow: none;
    }

    .rlp-float-chat-menu {
        bottom: 65px;
        left: 0;
        right: auto;
        width: 260px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        transform-origin: bottom left;
    }

    .rlp-float-audit {
        flex: 1;
        height: 48px;
        padding: 0 16px;
        justify-content: center;
        font-size: 13px;
        border-radius: 12px;
        box-shadow: none;
    }

    /* Disable Tooltips on mobile */
    .rlp-float-tooltip {
        display: none !important;
    }

    /* Provide a safe offset at the bottom of the body to prevent content clipping */
    body {
        padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
    }
}

/* ==========================================================================
   19. Case Studies Section
   ========================================================================== */
.rlp-cases-sec {
    position: relative;
    width: 100%;
    background-color: var(--color-bg-dark);
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background:
        radial-gradient(circle at 90% 80%, rgba(226, 26, 82, 0.05) 0%, transparent 55%),
        var(--color-bg-dark);
}

.rlp-cases-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.rlp-cases-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.rlp-cases-subtitle {
    color: var(--color-accent-pink);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.rlp-cases-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text-white);
    margin-bottom: 16px;
}

.rlp-cases-desc {
    font-size: 20px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.rlp-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.rlp-case-card {
    background-color: #121214;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.rlp-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rlp-case-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent-pink);
    box-shadow: 0 15px 35px rgba(226, 26, 82, 0.1);
}

.rlp-case-card:hover::before {
    opacity: 1;
}

.rlp-case-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.rlp-case-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent-pink);
}

.rlp-case-client {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-white);
}

.rlp-case-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rlp-case-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rlp-case-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.rlp-case-text {
    font-size: 18px;
    color: var(--color-text-white);
    font-weight: 400;
}

/* Highlight style for Results */
.rlp-case-highlight {
    background: rgba(226, 26, 82, 0.03);
    border: 1px solid rgba(226, 26, 82, 0.15);
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 10px;
}

.rlp-case-highlight .rlp-case-label {
    color: var(--color-accent-pink);
    font-weight: 700;
}

.rlp-case-highlight .rlp-case-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-white);
}

/* Responsive Case Studies */
@media (max-width: 992px) {
    .rlp-cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rlp-cases-sec {
        padding: 60px 0;
    }

    .rlp-cases-container {
        padding: 0 20px;
        gap: 40px;
    }

    .rlp-cases-title {
        font-size: 32px;
    }

    .rlp-case-card {
        padding: 30px;
        gap: 20px;
    }

    .rlp-case-client {
        font-size: 24px;
    }

    .rlp-case-highlight .rlp-case-text {
        font-size: 20px;
    }
}

/* ==========================================================================
   Testimonial Marquee Slider Section Styling
   ========================================================================== */
.rlp-testimonial-marquee {
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    background-color: var(--color-bg-dark);
}

.rlp-marquee-container {
    padding: 30px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

/* Gradient fade overlay for premium sliding marquee look */
.rlp-marquee-container::before,
.rlp-marquee-container::after {
    content: "";
    height: 100%;
    width: 150px;
    position: absolute;
    z-index: 2;
    top: 0;
    pointer-events: none;
}

.rlp-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-dark) 0%, transparent 100%);
}

.rlp-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-dark) 0%, transparent 100%);
}

.rlp-marquee-track {
    display: flex;
    width: max-content;
    animation: rlp-marquee-scroll 35s linear infinite;
}

/* Pause marquee on hover */
.rlp-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes rlp-marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.rlp-testimonial-card {
    width: 420px;
    flex-shrink: 0;
    margin-right: 30px;
    background-color: #121214;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.rlp-testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-accent-pink);
    background-color: #18181b;
    box-shadow: 0 20px 40px rgba(226, 26, 82, 0.15), 0 0 20px rgba(226, 26, 82, 0.05);
}

.rlp-test-stars {
    display: flex;
    gap: 6px;
}

.rlp-star-svg {
    width: 20px;
    height: 20px;
    fill: var(--color-accent-pink);
    filter: drop-shadow(0 0 4px rgba(226, 26, 82, 0.5));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rlp-testimonial-card:hover .rlp-star-svg {
    transform: scale(1.12);
    filter: drop-shadow(0 0 8px rgba(226, 26, 82, 0.9));
}

.rlp-test-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-weight: 400;
    flex-grow: 1;
}

.rlp-test-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.rlp-test-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rlp-testimonial-card:hover .rlp-test-avatar {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

/* Distinct premium avatar gradients */
.rlp-avatar-patel {
    background: linear-gradient(135deg, #e21a52, #ff715b);
}
.rlp-avatar-jenkins {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}
.rlp-avatar-shah {
    background: linear-gradient(135deg, #f857a6, #ff5858);
}
.rlp-avatar-rossi {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}
.rlp-avatar-rostova {
    background: linear-gradient(135deg, #fc00ff, #00dbde);
}

.rlp-test-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rlp-test-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-white);
}

.rlp-test-role {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* Responsive styles */
@media (max-width: 768px) {
    .rlp-testimonial-marquee {
        padding: 50px 0;
    }
    
    .rlp-marquee-container::before,
    .rlp-marquee-container::after {
        width: 60px;
    }

    .rlp-testimonial-card {
        width: 320px;
        padding: 25px;
        gap: 20px;
    }

    .rlp-test-text {
        font-size: 14px;
    }

    .rlp-test-avatar {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .rlp-test-name {
        font-size: 16px;
    }

    .rlp-test-role {
        font-size: 12px;
    }
}

/* ==========================================================================
   Reviews Showcase Section Styling
   ========================================================================== */
.rlp-reviews-sec {
    position: relative;
    width: 100%;
    background-color: var(--color-bg-dark);
    padding: 0 0 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background:
        radial-gradient(circle at 10% 20%, rgba(226, 26, 82, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(226, 26, 82, 0.03) 0%, transparent 50%),
        var(--color-bg-dark);
}

.rlp-reviews-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
    padding: 0 40px;
}

.rlp-reviews-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.rlp-reviews-subtitle {
    color: var(--color-accent-pink);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.rlp-reviews-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text-white);
}

.rlp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.rlp-reviews-grid .rlp-testimonial-card {
    background-color: #121214;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
}

.rlp-review-img-card {
    background-color: #121214;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.rlp-review-img-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-accent-pink);
    background-color: #18181b;
    box-shadow: 0 20px 40px rgba(226, 26, 82, 0.12), 0 0 20px rgba(226, 26, 82, 0.05);
}

.rlp-review-screenshot {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* Responsive styles for Reviews Section */
@media (max-width: 992px) {
    .rlp-reviews-sec {
        padding: 80px 0;
    }

    .rlp-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .rlp-reviews-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .rlp-reviews-sec {
        padding: 60px 0;
    }

    .rlp-reviews-container {
        padding: 0 20px;
    }

    .rlp-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rlp-reviews-title {
        font-size: 32px;
    }

    .rlp-reviews-header {
        margin-bottom: 40px;
    }

    .rlp-reviews-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

/* ==========================================================================
   Brand Logo Slider Section Styling
   ========================================================================== */
.rlp-logo-slider-sec {
    position: relative;
    width: 100%;
    background-color: var(--color-bg-dark);
    padding: 50px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.rlp-logo-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

/* Gradient fade overlay for premium sliding logos look */
.rlp-logo-slider-container::before,
.rlp-logo-slider-container::after {
    content: "";
    height: 100%;
    width: 150px;
    position: absolute;
    z-index: 2;
    top: 0;
    pointer-events: none;
}

.rlp-logo-slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-dark) 0%, transparent 100%);
}

.rlp-logo-slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-dark) 0%, transparent 100%);
}

.rlp-logo-slider-track {
    display: flex;
    width: max-content;
    animation: rlp-logo-scroll 25s linear infinite;
}

/* Pause logo slider on hover */
.rlp-logo-slider-track:hover {
    animation-play-state: paused;
}

@keyframes rlp-logo-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.rlp-logo-slide {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rlp-logo-slide img {
    max-height: 40px;
    max-width: 130px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Brighten logo on hover */
.rlp-logo-slide:hover img {
    transform: scale(1.05);
}

/* Responsive Logo Slider */
@media (max-width: 768px) {
    .rlp-logo-slider-sec {
        padding: 35px 0;
    }

    .rlp-logo-slider-container::before,
    .rlp-logo-slider-container::after {
        width: 60px;
    }

    .rlp-logo-slide {
        width: 150px;
    }

    .rlp-logo-slide img {
        max-height: 30px;
        max-width: 100px;
    }
}

/* ==========================================================================
   Scroll Reveal Effects
   ========================================================================== */
.rlp-scroll-section {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1);
    will-change: opacity, transform;
}

.rlp-scroll-section.rlp-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .rlp-scroll-section {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   Mobile Experience Polish
   ========================================================================== */
@media (max-width: 768px) {
    .rlp-hero-container {
        text-align: left;
        align-items: flex-start;
    }

    .rlp-hero-content {
        align-items: flex-start;
        max-width: 100%;
        padding-right: 0;
    }

    .rlp-hero-content h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
        line-height: 1.12;
        max-width: 100%;
    }

    .rlp-hero-description {
        font-size: 1rem;
        line-height: 1.75;
    }

    .rlp-growth-section {
        width: 100%;
        max-width: 100%;
        padding: 18px 16px;
        gap: 14px;
        margin-bottom: 20px;
    }

    .rlp-growth-list {
        gap: 10px;
    }

    .rlp-growth-text {
        font-size: 14px;
    }

    .rlp-hero-ctas {
        width: 100%;
        gap: 10px;
    }

    .rlp-btn {
        min-height: 52px;
        width: 100%;
        font-size: 16px;
        line-height: 1.2;
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .rlp-hero {
        padding-top: 28px;
    }

    .rlp-hero-description {
        margin-bottom: 24px;
    }

    /* Keep hero image visible on phones with compact size */
    .rlp-hero-media {
        display: flex;
        order: -1;
        margin-top: 14px;
        margin-bottom: 16px;
    }

    .rlp-speaker-img {
        max-height: 280px;
    }

    .rlp-growth-section {
        border-radius: 14px;
    }

    .rlp-trust-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .rlp-trust-text {
        font-size: 12px;
    }

    .rlp-portfolio-item,
    .rlp-portfolio-item-reverse {
        gap: 18px;
    }

    .rlp-portfolio-info {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 14px;
    }

    .rlp-portfolio-services-box,
    .rlp-portfolio-stats-box {
        padding: 12px;
    }

    .rlp-portfolio-stats-box {
        gap: 10px;
    }

    .rlp-portfolio-stat-item {
        width: 100%;
    }

    .rlp-portfolio-showcase {
        height: auto !important;
    }

    .rlp-portfolio-img {
        max-height: 300px;
        object-fit: cover;
        border-radius: 16px;
    }

    /* Keep popular badge above title area on mobile */
    .rlp-pricing-card.rlp-pricing-popular {
        padding-top: 64px;
    }

    .rlp-popular-badge {
        top: 14px;
        right: 14px;
    }

    .rlp-pricing-sec {
        padding-top: 48px;
        padding-bottom: 20px;
    }

    .rlp-pricing-container {
        gap: 28px;
        padding: 0 20px;
    }

    .rlp-achieve-sec {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .rlp-achieve-header {
        margin-bottom: 24px;
    }

    .rlp-reviews-sec {
        padding-top: 20px;
        padding-bottom: 16px;
    }

    .rlp-reviews-header {
        margin-bottom: 24px;
    }

    .rlp-reviews-grid {
        gap: 16px;
    }

    .rlp-portfolio-sec {
        padding-top: 24px;
        padding-bottom: 48px;
    }

    .rlp-portfolio-header {
        margin-bottom: 24px;
    }

    .rlp-cases-sec {
        padding-top: 32px;
        padding-bottom: 20px;
    }

    .rlp-cases-container {
        gap: 28px;
    }

    .rlp-find-sec {
        padding-top: 20px;
        padding-bottom: 48px;
    }

    .rlp-find-title {
        margin-bottom: 24px;
    }

    .rlp-find-badges {
        margin-bottom: 32px;
    }
}