/* RPA & AI Page Styles */

/* RPA Hero Section */
.rpa-hero {
    padding-top: 5rem;
    padding-bottom: 3rem;
    background: linear-gradient(135deg, var(--color-navy) 0%, #0a2d5f 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .rpa-hero {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .rpa-hero {
        padding-top: 7rem;
        padding-bottom: 4rem;
    }
}

.rpa-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 145, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

@media (min-width: 768px) {
    .rpa-hero::before {
        width: 450px;
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .rpa-hero::before {
        width: 600px;
        height: 600px;
    }
}

.rpa-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(251, 215, 113, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

@media (min-width: 768px) {
    .rpa-hero::after {
        width: 375px;
        height: 375px;
    }
}

@media (min-width: 1024px) {
    .rpa-hero::after {
        width: 500px;
        height: 500px;
    }
}

.rpa-hero-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .rpa-hero-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.rpa-hero-content {
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.rpa-hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 145, 68, 0.2);
    border: 1px solid rgba(0, 145, 68, 0.3);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .rpa-hero-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

.rpa-hero-title {
    font-size: 1.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .rpa-hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .rpa-hero-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .rpa-hero-title {
        font-size: 3.5rem;
    }
}

.rpa-hero-accent {
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
}

.rpa-hero-accent::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    opacity: 0.4;
    z-index: -1;
}

.rpa-hero-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .rpa-hero-subtitle {
        font-size: 1.0625rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .rpa-hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .rpa-hero-subtitle {
        font-size: 1.25rem;
    }
}

/* What We Offer Section */
.rpa-offer-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--color-light) 100%);
}

@media (min-width: 640px) {
    .rpa-offer-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .rpa-offer-section {
        padding: 5rem 0;
    }
}

.rpa-offer-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .rpa-offer-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.rpa-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .rpa-section-header {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .rpa-section-header {
        margin-bottom: 4rem;
    }
}

.rpa-section-title {
    font-size: 1.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .rpa-section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .rpa-section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .rpa-section-title {
        font-size: 2.5rem;
    }
}

.rpa-section-subtitle {
    font-size: 0.9375rem;
    color: #6b7280;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.5rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .rpa-section-subtitle {
        font-size: 1rem;
        padding: 0;
        line-height: 1.75;
    }
}

@media (min-width: 768px) {
    .rpa-section-subtitle {
        font-size: 1.0625rem;
    }
}

@media (min-width: 1024px) {
    .rpa-section-subtitle {
        font-size: 1.125rem;
    }
}

.rpa-offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .rpa-offer-grid {
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .rpa-offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rpa-offer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rpa-offer-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-light) 100%);
    border: 2px solid rgba(0, 145, 68, 0.1);
    border-radius: 1.25rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .rpa-offer-card {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .rpa-offer-card {
        padding: 20px;
    }
}

.rpa-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .rpa-offer-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        border-color: var(--color-primary);
    }

    .rpa-offer-card:hover::before {
        transform: scaleX(1);
    }

    .rpa-offer-card:hover .rpa-icon-wrapper {
        transform: scale(1.1) rotate(5deg);
    }
}

.rpa-offer-icon {
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .rpa-offer-icon {
        margin-bottom: 1.5rem;
    }
}

.rpa-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
    .rpa-icon-wrapper {
        width: 4.5rem;
        height: 4.5rem;
        border-radius: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .rpa-icon-wrapper {
        width: 5rem;
        height: 5rem;
        border-radius: 1.25rem;
    }
}

.rpa-icon-1 {
    background: linear-gradient(135deg, rgba(0, 145, 68, 0.15) 0%, rgba(0, 145, 68, 0.05) 100%);
    border: 2px solid rgba(0, 145, 68, 0.2);
    color: var(--color-primary);
}

.rpa-icon-2 {
    background: linear-gradient(135deg, rgba(251, 215, 113, 0.2) 0%, rgba(251, 215, 113, 0.1) 100%);
    border: 2px solid rgba(251, 215, 113, 0.3);
    color: #d97706;
}

.rpa-icon-3 {
    background: linear-gradient(135deg, rgba(4, 30, 66, 0.15) 0%, rgba(4, 30, 66, 0.05) 100%);
    border: 2px solid rgba(4, 30, 66, 0.2);
    color: var(--color-navy);
}

.rpa-icon-4 {
    background: linear-gradient(135deg, rgba(0, 145, 68, 0.15) 0%, rgba(251, 215, 113, 0.1) 100%);
    border: 2px solid rgba(0, 145, 68, 0.2);
    color: var(--color-primary);
}

.rpa-offer-title {
    font-size: 1.125rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .rpa-offer-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .rpa-offer-title {
        font-size: 20px;
    }
}

.rpa-offer-description {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    min-height: auto;
}

@media (min-width: 640px) {
    .rpa-offer-description {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .rpa-offer-description {
        font-size: 16px;
        line-height: 1.75;
        height: 100px;
    }
}

/* Why Subraps Section */
.rpa-why-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--color-navy) 0%, #020a1a 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .rpa-why-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .rpa-why-section {
        padding: 5rem 0;
    }
}

.rpa-why-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 145, 68, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

@media (min-width: 768px) {
    .rpa-why-section::before {
        width: 450px;
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .rpa-why-section::before {
        width: 600px;
        height: 600px;
    }
}

.rpa-why-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .rpa-why-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.rpa-why-section .rpa-section-title {
    color: #ffffff;
}

.rpa-why-section .rpa-section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.rpa-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .rpa-why-grid {
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .rpa-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rpa-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .rpa-benefit-card {
        padding: 2rem;
        border-radius: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .rpa-benefit-card {
        padding: 2.5rem;
    }
}

.rpa-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .rpa-benefit-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--color-primary);
        transform: translateY(-8px);
    }

    .rpa-benefit-card:hover::before {
        transform: scaleX(1);
    }

    .rpa-benefit-card:hover .rpa-benefit-icon-wrapper {
        transform: scale(1.1) rotate(5deg);
    }
}

.rpa-benefit-icon {
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .rpa-benefit-icon {
        margin-bottom: 1.5rem;
    }
}

.rpa-benefit-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
    .rpa-benefit-icon-wrapper {
        width: 4.5rem;
        height: 4.5rem;
        border-radius: 1.125rem;
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .rpa-benefit-icon-wrapper {
        width: 5rem;
        height: 5rem;
        border-radius: 1.25rem;
        font-size: 2rem;
    }
}

.rpa-benefit-icon-1 {
    background: linear-gradient(135deg, rgba(0, 145, 68, 0.2) 0%, rgba(0, 145, 68, 0.1) 100%);
    border: 2px solid rgba(0, 145, 68, 0.3);
}

.rpa-benefit-icon-2 {
    background: linear-gradient(135deg, rgba(251, 215, 113, 0.25) 0%, rgba(251, 215, 113, 0.15) 100%);
    border: 2px solid rgba(251, 215, 113, 0.35);
}

.rpa-benefit-icon-3 {
    background: linear-gradient(135deg, rgba(0, 145, 68, 0.2) 0%, rgba(251, 215, 113, 0.15) 100%);
    border: 2px solid rgba(0, 145, 68, 0.3);
}

.rpa-benefit-icon-4 {
    background: linear-gradient(135deg, rgba(4, 30, 66, 0.3) 0%, rgba(4, 30, 66, 0.15) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.rpa-benefit-title {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .rpa-benefit-title {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .rpa-benefit-title {
        font-size: 1.5rem;
    }
}

.rpa-benefit-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .rpa-benefit-description {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .rpa-benefit-description {
        line-height: 1.75;
    }
}

/* Process Section */
.rpa-process-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--color-light) 0%, #ffffff 100%);
}

@media (min-width: 640px) {
    .rpa-process-section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .rpa-process-section {
        padding: 96px 0;
    }
}

.rpa-process-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 640px) {
    .rpa-process-container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.rpa-process-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    margin-top: 32px;
}

@media (min-width: 640px) {
    .rpa-process-timeline {
        gap: 32px;
        margin-top: 40px;
    }
}

@media (min-width: 1024px) {
    .rpa-process-timeline {
        gap: 40px;
        margin-top: 48px;
    }
}

.rpa-process-step {
    position: relative;
}

.rpa-process-step-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-light) 100%);
    border: 2px solid rgba(0, 145, 68, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
    .rpa-process-step-inner {
        flex-direction: row;
        gap: 24px;
        align-items: start;
        padding: 32px;
        border-radius: 20px;
    }
}

@media (min-width: 1024px) {
    .rpa-process-step-inner {
        gap: 40px;
        padding: 40px;
    }
}

.rpa-process-step-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
}

@media (hover: hover) and (pointer: fine) {
    .rpa-process-step-inner:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        border-color: var(--color-primary);
    }

    .rpa-process-step-inner:hover::before {
        transform: scaleX(1);
    }

    .rpa-process-step-inner:hover .rpa-process-icon {
        transform: scale(1.1) rotate(5deg);
    }
}

.rpa-process-icon-wrapper {
    flex-shrink: 0;
}

.rpa-process-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 145, 68, 0.15) 0%, rgba(0, 145, 68, 0.05) 100%);
    border: 2px solid rgba(0, 145, 68, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 145, 68, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
    .rpa-process-icon {
        width: 72px;
        height: 72px;
        border-radius: 18px;
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .rpa-process-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        font-size: 40px;
    }
}

.rpa-process-content {
    flex: 1;
    width: 100%;
}

@media (min-width: 640px) {
    .rpa-process-content {
        width: auto;
    }
}

.rpa-process-title {
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .rpa-process-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
}

@media (min-width: 768px) {
    .rpa-process-title {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .rpa-process-title {
        font-size: 28px;
    }
}

.rpa-process-description {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .rpa-process-description {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .rpa-process-description {
        font-size: 16px;
        line-height: 1.75;
    }
}

/* CTA Section */
.rpa-cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #007a3a 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .rpa-cta-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .rpa-cta-section {
        padding: 5rem 0;
    }
}

.rpa-cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

@media (min-width: 768px) {
    .rpa-cta-section::before {
        width: 450px;
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .rpa-cta-section::before {
        width: 600px;
        height: 600px;
    }
}

.rpa-cta-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .rpa-cta-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.rpa-cta-content {
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.rpa-cta-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .rpa-cta-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .rpa-cta-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .rpa-cta-title {
        font-size: 3rem;
    }
}

.rpa-cta-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .rpa-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2.25rem;
        padding: 0;
        line-height: 1.7;
    }
}

@media (min-width: 768px) {
    .rpa-cta-subtitle {
        font-size: 1.0625rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .rpa-cta-subtitle {
        font-size: 1.125rem;
        line-height: 1.75;
    }
}

.rpa-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    width: 100%;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .rpa-cta-buttons {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        max-width: none;
        width: auto;
    }
}

.rpa-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    width: 100%;
    text-align: center;
}

@media (min-width: 640px) {
    .rpa-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: auto;
        min-width: 180px;
    }
}

@media (min-width: 768px) {
    .rpa-cta-btn {
        padding: 1rem 2.5rem;
        min-width: 200px;
    }
}

.rpa-cta-btn-primary {
    background: #ffffff;
    color: var(--color-primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.rpa-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    background: var(--color-secondary);
    color: var(--color-navy);
}

.rpa-cta-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.rpa-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

