/* Growth Features Styles */

/* IRR Calculator Section */
.irr-section {
    padding: 100px 0;
    background: rgba(241, 245, 249, 0.4);
    border-top: 1px solid var(--glass-border);
}

.irr-container {
    max-width: 900px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--glass-bg);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.irr-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.input-group input {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: white;
    font-size: 1.1rem;
    color: var(--text-primary);
    transition: all 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.irr-result-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 40px;
    border-radius: 24px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.result-label {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 15px;
}

.result-value {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #f8fafc, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.result-multiple {
    font-size: 1.1rem;
    color: #34d399;
    font-weight: 600;
    margin-bottom: 25px;
}

.irr-chart-mini {
    margin-top: 20px;
}

.chart-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.chart-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Share Page Styles */
.share-page {
    background-color: #f8fafc;
    min-height: 100vh;
    padding-top: 40px;
}

.share-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.share-header {
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    color: white;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-content {
    padding: 40px;
}

.share-footer {
    padding: 30px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
    background: #f8fafc;
}

@media (max-width: 768px) {
    .irr-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
}