/* Appeals Page Specific Styles */

/* Hero Section for Appeals */
.appeals-hero {
    background: var(--hero-gradient);
    color: var(--color-light);
    padding: 8vh 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.appeals-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.appeals-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 30px;
}

.big-stat {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-light);
    text-align: center;
    margin: 2vh 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: slideInUp 0.8s ease-out 0.5s both;
}

.big-stat .arrow {
    color: var(--color-danger);
    margin: 0 1rem;
}

/* Multi-donut chart for hero section */
.hero-chart-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin: 3vh 0;
}

.hero-title-left {
    flex: 1;
    text-align: left;
}

.hero-title-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-light);
    line-height: 1.2;
    margin: 0;
}

.multi-donut-chart {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.donut-layer {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease-out;
}

.donut-layer.animate {
    opacity: 1;
    transform: scale(1);
}

.donut-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
}

.outer-donut {
    width: 400px;
    height: 400px;
}

.outer-donut .donut-ring {
    background: conic-gradient(
        #FF6B6B 0deg 360deg,
        rgba(255,255,255,0.4) 360deg
    );
    border: 22px solid rgba(255,255,255,0.3);
    background-clip: padding-box;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.outer-donut .donut-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 44px);
    height: calc(100% - 44px);
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.omiddle-donut {
    width: 350px;
    height: 350px;
}

.omiddle-donut .donut-ring {
    background: conic-gradient(
        #FFE066 0deg 108deg,
        rgba(255,255,255,0.35) 108deg 360deg
    );
    border: 22px solid rgba(255,255,255,0.25);
    background-clip: padding-box;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.omiddle-donut .donut-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 44px);
    height: calc(100% - 44px);
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.middle-donut {
    width: 300px;
    height: 300px;
}

.middle-donut .donut-ring {
    background: conic-gradient(
        #FF8C42 0deg 43.2deg,
        rgba(255,255,255,0.3) 43.2deg 360deg
    );
    border: 22px solid rgba(255,255,255,0.2);
    background-clip: padding-box;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.middle-donut .donut-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 44px);
    height: calc(100% - 44px);
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.inner-donut {
    width: 250px;
    height: 250px;
}

.inner-donut .donut-ring {
    background: conic-gradient(
        #4ECDC4 0deg 35.3deg,
        rgba(255,255,255,0.25) 35.3deg 360deg
    );
    border: 22px solid rgba(255,255,255,0.15);
    background-clip: padding-box;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.inner-donut .donut-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 44px);
    height: calc(100% - 44px);
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.innermost-donut {
    width: 200px;
    height: 200px;
}

.innermost-donut .donut-ring {
    background: conic-gradient(
        var(--color-success) 0deg 316.8deg,
        var(--color-neutral-200) 316.8deg 360deg
    );
    border: 22px solid transparent;
    background-clip: padding-box;
}

.innermost-donut .donut-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 44px);
    height: calc(100% - 44px);
    background: rgba(255,255,255,0.75);
    border-radius: 50%;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 1s ease-out;
    color: white;
}

.center-text.animate {
    opacity: 1;
}

.stat-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 0;
    min-width: 130px;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    margin-right: 12px;
}

.stat-value.denied {
    color: #FF6B6B;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.stat-value.appealable {
    color: #FFE066;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.stat-value.appealed {
    color: #FF8C42;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.stat-value.overturned {
    color: #4ECDC4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Chart Statistics Right Container */
.chart-stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Denial Rates Chart Section */
.denial-rates {
    padding: 60px 0;
    background: var(--color-gray-light);
}

.chart-container {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--color-light);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.chart-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.bar-chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 300px;
    margin: 1.5rem 0;
    padding: 0 1.5rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

.bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 150px;
}

.bar {
    width: 100px;
    margin-bottom: 1rem;
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.8s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.bar.medicare {
    height: 68px;
    background: linear-gradient(135deg, var(--color-azure), var(--color-azure-dark));
    animation: growBar 1.2s ease-out;
}

.bar.medicaid {
    height: 146px;
    background: linear-gradient(135deg, var(--color-danger), var(--color-danger-dark));
    animation: growBar 1.4s ease-out;
}

.bar.commercial {
    height: 124px;
    background: linear-gradient(135deg, var(--color-success), var(--color-success-dark));
    animation: growBar 1.6s ease-out;
}

.bar::after {
    content: attr(data-value);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--color-dark);
    background: var(--color-light);
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.bar-label {
    text-align: center;
    font-size: 1.4rem;
    color: var(--color-gray-dark);
    font-weight: 600;
}

/* Animations */
@keyframes growBar {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Interactive elements */
.roi-calculation {
    transition: all 0.3s ease;
}

.roi-calculation:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.step-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.cta-button {
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Revenue Opportunity Section */
.revenue-opportunity {
    padding: 60px 0;
    background: var(--color-light);
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 3rem 0;
}

.problem-stat {
    background: linear-gradient(135deg, #fee2e2, var(--color-danger));
    color: #7f1d1d;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    margin: 1rem 0;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.4);
}

.success-stat {
    background: linear-gradient(135deg, #d1fae5, var(--color-success));
    color: #065f46;
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.4);
}

.vs-divider {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-azure);
    background: linear-gradient(135deg, var(--color-azure), var(--color-azure-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
    text-align: center;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
}

.highlight-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: 2px solid var(--color-gray-border);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin: 1.5rem 0;
    box-shadow: 0 8px 25px var(--color-gray-light);
}

.highlight-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-warning-dark-2);
}

.opportunity-text {
    text-align: center;
    margin-top: 2rem;
}

.opportunity-text p {
    font-size: 1.2rem;
    color: var(--color-gray);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ROI Calculator Section */
.roi-calculator {
    padding: 80px 0;
    background: var(--color-gray-light);
}

/* ROI Calculator Section */
.roi-example {
    padding: 80px 0;
    background: var(--color-gray-light);
}

.roi-example {
    background: var(--color-light);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin: 2rem 0;
    text-align: center;
}

.roi-example h3 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.roi-example h3 i {
    color: var(--color-azure);
}

.roi-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.roi-item {
    background: linear-gradient(135deg, var(--color-primary-light), rgba(255,255,255,0.8));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--color-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roi-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(103, 61, 230, 0.2);
}

.roi-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.roi-label {
    font-size: 1rem;
    color: var(--color-gray-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roi-calculation {
    background: linear-gradient(135deg, var(--color-success-light), rgba(255,255,255,0.9));
    border: 3px solid var(--color-success);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    transition: all 0.3s ease;
}

.roi-calculation:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
}

.roi-calculation p {
    font-size: 1.2rem;
    color: var(--color-success-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.final-result {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-success-dark);
    background: linear-gradient(135deg, var(--color-success), var(--color-success-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.roi-calculation p:last-child {
    font-size: 1rem; 
    color: var(--color-gray);
    font-weight: 400;
    opacity: 0.9;
    margin-top: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--color-light);
}

.pricing-highlight {
    background: linear-gradient(135deg, var(--color-primary-light), rgba(255,255,255,0.9));
    border: 3px solid var(--color-primary);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 15px 40px rgba(103, 61, 230, 0.1);
}

.pricing-highlight h3 {
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-highlight h3 i {
    color: var(--color-success);
}

.pricing-highlight p {
    font-size: 1.2rem;
    color: var(--color-gray-dark);
    margin-bottom: 30px;
}

.price-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.price-item {
    background: var(--color-light);
    border: 2px solid var(--color-gray-border);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.price-item:nth-child(1) {
    border-color: var(--color-success);
    background: linear-gradient(135deg, var(--color-success-light), rgba(255,255,255,0.9));
}

.price-item:nth-child(2) {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary-light), rgba(255,255,255,0.9));
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(103, 61, 230, 0.2);
}

.price-item:nth-child(3) {
    border-color: var(--color-gray);
    background: linear-gradient(135deg, var(--color-gray-light), rgba(255,255,255,0.9));
}

.price-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.price {
    font-size: 3rem;
    font-weight: 900;
    margin: 1rem 0;
    display: block;
}

.price-item:nth-child(1) .price {
    color: var(--color-success-dark);
}

.price-item:nth-child(2) .price {
    color: var(--color-primary-dark);
}

.price-item:nth-child(3) .price {
    color: var(--color-gray-dark);
}

.price-item p {
    font-size: 1rem;
    color: var(--color-gray-dark);
    font-weight: 600;
    line-height: 1.4;
}

.pricing-highlight > p:last-of-type {
    color: var(--color-success-dark);
    font-weight: 600;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.other-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--color-light);
    border: 2px solid var(--color-gray-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--color-azure);
}

.service-card h4 {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-azure);
    margin: 1rem 0;
    display: block;
}

.service-card p {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.5;
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
    .bar-chart {
        height: 280px;
        padding: 0 1.5rem;
    }
    
    .bar {
        width: 90px;
    }
    
    .simple-bar-chart {
        max-width: 700px;
    }
    
    .chart-bars {
        height: 350px;
        gap: 30px;
    }
    
    .simple-bar {
        width: 90px;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .appeals-hero {
        padding: 6vh 0;
        min-height: auto;
    }
    
    .appeals-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-chart-container {
        flex-direction: column;
        gap: 2rem;
        margin: 2vh 0;
    }
    
    .hero-title-left {
        text-align: center;
    }
    
    .hero-title-left h2 {
        font-size: 2rem;
    }
    
    .multi-donut-chart {
        width: 280px;
        height: 280px;
    }
    
    .outer-donut {
        width: 280px;
        height: 280px;
    }
    
    .omiddle-donut {
        width: 240px;
        height: 240px;
    }
    
    .middle-donut {
        width: 200px;
        height: 200px;
    }
    
    .inner-donut {
        width: 160px;
        height: 160px;
    }
    
    .innermost-donut {
        width: 120px;
        height: 120px;
    }
    
    .bar-chart {
        flex-direction: row;
        height: 250px;
        gap: 15px;
        padding: 0 1rem;
        justify-content: space-evenly;
    }
    
    .bar-group {
        flex-direction: column;
        align-items: center;
        max-width: 80px;
        width: auto;
        justify-content: flex-end;
    }
    
    .bar {
        width: 60px;
        margin-right: 0;
        margin-bottom: 1rem;
        flex-shrink: 0;
    }
    
    .bar.medicare {
        height: 45px;
    }
    
    .bar.medicaid {
        height: 97px;
    }
    
    .bar.commercial {
        height: 82px;
    }
    
    .bar::after {
        font-size: 1rem;
        top: -30px;
        padding: 4px 6px;
    }
    
    .bar-label {
        font-size: 0.9rem;
        flex: 0;
        text-align: center;
        margin-left: 0;
        max-width: 80px;
        word-wrap: break-word;
    }
    
    .simple-bar-chart {
        max-width: 100%;
        margin: 2rem auto;
        padding: 1rem;
    }
    
    .chart-bars {
        flex-direction: row;
        height: 200px;
        gap: 15px;
        justify-content: space-evenly;
    }
    
    .bar-item {
        width: auto;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        max-width: 120px;
    }
    
    .simple-bar {
        width: 60px;
        margin-bottom: 12px;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .bar-label {
        flex: 0;
        text-align: center;
        margin-left: 0;
        font-size: 0.85rem;
        max-width: 120px;
    }
    
    .bar-label strong {
        font-size: 1rem;
        margin-bottom: 3px;
    }
    
    /* ROI Section Mobile Fixes */
    .roi-breakdown {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .roi-item {
        padding: 1.5rem 1rem;
    }
    
    .roi-value {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
    
    .roi-label {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .roi-calculation {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }
    
    .roi-calculation p {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .final-result {
        font-size: 1.8rem;
        line-height: 1.2;
        margin: 0.5rem 0;
        word-wrap: break-word;
    }
    
    .roi-example {
        padding: 2rem 1rem;
    }
    
    .roi-example h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .roi-example p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Additional mobile fixes for pricing and other sections */
    .price-breakdown {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .price-item {
        padding: 1.5rem 1rem;
    }
    
    .price {
        font-size: 2.5rem;
        margin: 0.5rem 0;
    }
    
    .price-item p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .pricing-highlight {
        padding: 2rem 1rem;
        margin: 1.5rem 0;
    }
    
    .pricing-highlight h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .pricing-highlight p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

/* Simple Bar Chart for Revenue Opportunity */
.simple-bar-chart {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 250px;
    gap: 20px;
}

.bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.simple-bar {
    width: 80px;
    background: #dc2626;
    border-radius: 8px 8px 0 0;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    margin-bottom: 12px;
}

.success-bar {
    background: #059669 !important;
}

.bar-value {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.bar-label {
    text-align: center;
    font-size: 1rem;
    color: #374151;
    font-weight: 600;
}

.bar-label strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.2rem;
}