/* KPI Section Styles */
.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(1, 223, 74, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(1, 223, 74, 0.05), rgba(1, 223, 74, 0.02));
    z-index: 0;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(1, 223, 74, 0.1);
    border-color: rgba(1, 223, 74, 0.2);
}

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

.stat-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
}

.circle-progress {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.circle-animation {
    stroke-dashoffset: 0;
    animation: progress 1.5s ease-out forwards;
}

.stat-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 700;
    color: #01df4a;
    text-shadow: 0 2px 4px rgba(1, 223, 74, 0.2);
}

.stat-icon-wrapper {
    background: rgba(1, 223, 74, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.stat-icon-wrapper i {
    font-size: 2.5rem;
    color: #01df4a;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #01df4a;
    line-height: 1;
}

.stat-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0;
    color: #2c2c2c;
    text-align: center;
}

.stat-desc {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    margin: 0;
}

.cost-comparison {
    position: relative;
    height: 140px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar-container {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.5rem;
}

.bar {
    width: 40px;
    border-radius: 8px 8px 0 0;
    transition: height 1s ease-out;
}

.bar.traditional {
    height: 100%;
    background: linear-gradient(to bottom, #ff4d4d, #ff6b6b);
    animation: barRise 1s ease-out;
}

.bar.vocalia {
    height: 25%;
    background: linear-gradient(to bottom, #01df4a, #00b341);
    animation: barRise 1s ease-out 0.3s;
}

.saving-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #01df4a, #00b341);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(1, 223, 74, 0.2);
}

@keyframes progress {
    0% {
        stroke-dashoffset: 630; /* 2 * PI * radius */
    }
    100% {
        stroke-dashoffset: var(--final-offset, 0);
    }
}

@keyframes barRise {
    0% {
        height: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .stat-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

/* CTA Hero Section Styles */
.cta-hero {
    background: linear-gradient(180deg, rgba(1, 223, 74, 0.05) 0%, rgba(1, 223, 74, 0) 100%);
}

.cta-card {
    border: 1px solid rgba(1, 223, 74, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(1, 223, 74, 0.05), rgba(1, 223, 74, 0.02));
    z-index: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 0.75rem;
}

.btn-cta.primary {
    background: linear-gradient(45deg, #01df4a, #00b341);
    color: white;
    box-shadow: 0 4px 12px rgba(1, 223, 74, 0.2);
}

.btn-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(1, 223, 74, 0.3);
}

.btn-cta.secondary {
    background: rgba(1, 223, 74, 0.1);
    color: #01df4a;
    border: 1px solid rgba(1, 223, 74, 0.2);
}

.btn-cta.secondary:hover {
    background: rgba(1, 223, 74, 0.15);
    transform: translateY(-2px);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.cta-illustration {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(1, 223, 74, 0.2), rgba(1, 223, 74, 0.1));
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(1, 223, 74, 0.15), rgba(1, 223, 74, 0.05));
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(1, 223, 74, 0.1), rgba(1, 223, 74, 0.02));
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

.stat-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(1, 223, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    animation: pulse 2s infinite;
}

.stat-icon-circle i {
    font-size: 2.5rem;
    color: #01df4a;
}

.stat-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(45deg, #01df4a, #00b341);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(1, 223, 74, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.stat-badge .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    position: static;
    transform: none;
}

.stat-badge .stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.stat-progress-ring {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
}

.circular-chart {
    width: 100%;
    height: 100%;
}

.circular-chart .progress {
    stroke-linecap: round;
    animation: progress 1.5s ease-out forwards;
}

.circular-chart .percentage {
    fill: #01df4a;
    font-size: 0.6em;
    text-anchor: middle;
    font-weight: 700;
    animation: fadeIn 1s ease-out forwards;
}

.stat-progress-ring .stat-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    font-size: 2rem;
    color: #01df4a;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(1, 223, 74, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(1, 223, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(1, 223, 74, 0);
    }
}

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

.stat-capacity {
    position: relative;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.capacity-value {
    font-size: 3rem;
    font-weight: 700;
    color: #01df4a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.capacity-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.capacity-sublabel {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .stat-capacity {
        height: auto;
        margin-bottom: 1rem;
    }
    .capacity-value {
        font-size: 2.5rem;
    }
    .capacity-label {
        font-size: 1rem;
    }
    .capacity-sublabel {
        font-size: 0.75rem;
    }
}

/* Updated Comparison Section Styles */
.gradient-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(1, 223, 74, 0.1);
    position: relative;
    overflow: hidden;
}

.gradient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(1, 223, 74, 0.05), rgba(1, 223, 74, 0.02));
    z-index: 0;
}

.comparison-grid {
    position: relative;
    z-index: 1;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(1, 223, 74, 0.1);
}

.comparison-col {
    text-align: center;
}

.comparison-col.traditional {
    grid-column: 2;
}

.comparison-col.vocalia {
    grid-column: 3;
}

.comparison-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-block;
}

.bg-danger-soft {
    background: rgba(255, 99, 99, 0.1);
}

.bg-primary-soft {
    background: rgba(1, 223, 74, 0.1);
}

.text-danger {
    color: #ff6363;
}

.text-primary-key {
    color: #01df4a;
}

.price-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin: 1rem 0 0.5rem;
}

.price-period {
    font-size: 1rem;
    color: #718096;
    margin-left: 0.25rem;
}

.price-desc {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

.comparison-features {
    margin: 2rem 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(1, 223, 74, 0.1);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-label {
    font-size: 1rem;
    color: #4a5568;
    padding-right: 1rem;
}

.feature-value {
    text-align: center;
}

.feature-value i {
    font-size: 1.25rem;
}

.feature-value.traditional i {
    color: #ff6363;
}

.feature-value.vocalia i {
    color: #01df4a;
}

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

.btn-cta.primary {
    background: linear-gradient(45deg, #01df4a, #00b341);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(1, 223, 74, 0.2);
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(1, 223, 74, 0.1), rgba(1, 223, 74, 0.05));
    top: 10%;
    right: -20px;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(1, 223, 74, 0.08), rgba(1, 223, 74, 0.03));
    bottom: 20%;
    left: -10px;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(1, 223, 74, 0.06), rgba(1, 223, 74, 0.02));
    top: 50%;
    right: 10%;
}

@media (max-width: 768px) {
    .comparison-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .comparison-col.traditional,
    .comparison-col.vocalia {
        grid-column: auto;
    }

    .feature-value {
        padding: 0.5rem 0;
    }

    .price-title {
        font-size: 2rem;
    }

    .feature-label {
        text-align: center;
    }
} 