/* Why Us Section */
.why-us {
    position: relative;
    padding: 6rem 0;
    background-color: #ffffff;
    overflow: hidden;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.why-text {
    position: relative;
    z-index: 1;
}

.why-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
}

.insight-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.insight-content h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #0f172a;
    font-size: 1.25rem;
}

.insight-content p {
    margin: 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-visual {
    position: relative;
    z-index: 0;
}

.visual-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    transition: transform 0.5s ease;
}

.visual-container:hover .featured-image {
    transform: scale(1.03);
}

/* Challenge Section */
.challenge-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    border-radius: 1.5rem;
    padding: 4rem;
    margin-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.challenge-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3 3-1.343 3-3zm-8-50c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3 3-1.343 3-3zm8-16c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3 3-1.343 3-3zm32 32c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3 3-1.343 3-3z' fill='%2310b981' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.challenge-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.challenge-header h3 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.challenge-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    border-radius: 2px;
}

.challenge-header p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 700px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.solution-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #10b981;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    transform: scale(1.1);
}

.solution-card h4 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* BAAP Section */
.baap-section {
    margin-bottom: 6rem;
}

.baap-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.baap-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.baap-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.baap-text {
    position: relative;
    z-index: 1;
}

.baap-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.baap-features {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.baap-features li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: default;
}

.baap-features li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #d1fae5;
}

.baap-features li i {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.baap-features li h4 {
    margin: 0 0 0.5rem;
    color: #0f172a;
    font-size: 1.1rem;
}

.baap-features li p {
    margin: 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.baap-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.baap-cta p {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #4b5563;
}

.baap-visual {
    position: relative;
    z-index: 0;
}

.baap-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.baap-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.baap-image-container:hover .baap-image {
    transform: scale(1.03);
}

.baap-badge-floating {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: rotate(5deg);
    animation: float 6s ease-in-out infinite;
}

.baap-badge-floating span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.baap-badge-floating small {
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Enhanced Shift to Emotional Loyalty Section */
.shift-section {
    position: relative;
    padding: 4rem 0;
}

.shift-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.shift-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ec4899, #f97316);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.shift-badge i {
    font-size: 1.25rem;
}

.shift-description {
    font-size: 1.3rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.strategy-cards-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.strategy-card-enhanced {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.strategy-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ec4899, #f97316);
}

.strategy-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(236, 72, 153, 0.3);
}

.strategy-visual {
    flex-shrink: 0;
}

.strategy-icon-container {
    position: relative;
    display: inline-block;
}

.strategy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ec4899, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.strategy-card-enhanced:hover .strategy-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.5);
}

.strategy-icon i {
    font-size: 2rem;
    color: white;
}

.strategy-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: #ec4899;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.strategy-content {
    flex: 1;
}

.strategy-content h4 {
    font-size: 1.75rem;
    color: #0f172a;
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.strategy-content p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.strategy-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateX(5px);
}

.benefit-item i {
    font-size: 1.1rem;
    color: #10b981;
    width: 20px;
}

.benefit-item span {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
}

/* Shift Visualization */
.shift-visualization {
    margin-top: 4rem;
    text-align: center;
}

.shift-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.diagram-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    min-width: 200px;
}

.diagram-item.featured {
    background: linear-gradient(135deg, #ec4899, #f97316);
    color: white;
    border-color: #ec4899;
    transform: scale(1.05);
}

.diagram-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.featured .diagram-icon {
    background: rgba(255, 255, 255, 0.3);
}

.diagram-icon i {
    font-size: 1.5rem;
    color: inherit;
}

.diagram-item span {
    font-weight: 700;
    font-size: 1.1rem;
}

.featured span {
    color: white;
}

.diagram-arrow {
    font-size: 2rem;
    color: #ec4899;
    opacity: 0.7;
}

/* Responsive Styles for Shift Section */
@media (max-width: 1024px) {
    .strategy-cards-enhanced {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .strategy-card-enhanced {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .shift-diagram {
        flex-direction: column;
        gap: 1.5rem;
    }

    .diagram-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .shift-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .shift-description {
        font-size: 1.1rem;
    }

    .strategy-card-enhanced {
        padding: 2rem 1.5rem;
    }

    .strategy-content h4 {
        font-size: 1.5rem;
    }

    .diagram-item {
        min-width: 180px;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .shift-section {
        padding: 3rem 0;
    }

    .shift-badge {
        padding: 0.5rem 1.25rem;
    }

    .shift-description {
        font-size: 1rem;
    }

    .strategy-cards-enhanced {
        gap: 1.5rem;
    }

    .strategy-card-enhanced {
        padding: 1.5rem;
    }

    .strategy-icon {
        width: 70px;
        height: 70px;
    }

    .strategy-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        top: -8px;
        right: -8px;
    }

    .diagram-item {
        min-width: 160px;
        padding: 1.25rem;
    }
}

.drivers-section .section-header h3 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.drivers-section .section-header p {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.driver-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.driver-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.driver-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.driver-card:hover::before {
    opacity: 1;
}

.driver-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #10b981;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.driver-card:hover .driver-icon {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: white;
    transform: scale(1.1) rotate(10deg);
    border-color: transparent;
}

.driver-card h4 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.driver-card p {
    color: #4b5563;
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

/* RPM Section */
.rpm-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    border-radius: 1.5rem;
    padding: 4rem;
    margin-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.rpm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.rpm-text h3 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.rpm-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    border-radius: 2px;
}

.rpm-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.rpm-features {
    margin-top: 2rem;
}

.rpm-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.rpm-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.rpm-feature i {
    font-size: 1.25rem;
    color: #10b981;
    flex-shrink: 0;
}

.rpm-feature span {
    font-size: 1rem;
    color: #0f172a;
    font-weight: 500;
}

.rpm-visual {
    position: relative;
    z-index: 1;
}

.rpm-circle {
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.2);
    animation: pulse 4s ease-in-out infinite;
}

.rpm-inner {
    width: 90%;
    height: 90%;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.rpm-inner span {
    font-size: 3.5rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rpm-inner small {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 600;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    filter: blur(40px);
    opacity: 0.6;
}

.floating-element.el-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.floating-element.el-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    animation: float 18s ease-in-out infinite reverse;
}

.floating-element.el-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -50px;
    animation: float 12s ease-in-out infinite;
    animation-delay: 2s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .baap-content,
    .rpm-content {
        gap: 3rem;
    }
    
    .drivers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rpm-circle {
        max-width: 350px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .why-content,
    .baap-content,
    .rpm-content {
        grid-template-columns: 1fr;
    }
    
    .baap-visual,
    .rpm-visual {
        order: -1;
    }
    
    .rpm-circle {
        max-width: 300px;
        height: 300px;
        margin: 0 auto 3rem;
    }
    
    .rpm-inner span {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .challenge-section,
    .rpm-section {
        padding: 3rem 2rem;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .drivers-grid {
        grid-template-columns: 1fr;
    }
    
    .baap-badge {
        font-size: 1.25rem;
        padding: 0.4rem 1.25rem;
    }
    
    .baap-features li {
        padding: 1rem;
    }
    
    .rpm-circle {
        max-width: 250px;
        height: 250px;
    }
    
    .rpm-inner span {
        font-size: 2.5rem;
    }
    .challenge-section,
    .rpm-section {
        padding: 2rem 1.5rem;
    }
    
    .challenge-header h3,
    .rpm-text h3 {
        font-size: 1.75rem;
    }

    .strategy-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .strategy-card {
        padding: 1.25rem;
    }

    .strategy-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
    }

    .strategy-icon i {
        font-size: 1.1rem;
    }

    .strategy-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        top: -8px;
        right: -8px;
    }

    .strategy-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .strategy-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .baap-badge {
        font-size: 1.1rem;
        padding: 0.3rem 1rem;
    }
    
    .baap-features li {
        flex-direction: column;
        text-align: center;
    }
    
    .baap-features li i {
        margin: 0 auto 0.75rem;
    }
    
    .rpm-feature {
        padding: 0.75rem 1rem;
    }
    
    .rpm-circle {
        max-width: 200px;
        height: 200px;
    }
    
    .rpm-inner span {
        font-size: 2rem;
    }
    
    .rpm-inner small {
        font-size: 0.9rem;
    }
}
