/* For Corporates Section */
.corporate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.corp-feature {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.corp-feature-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.corp-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.corp-feature p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.savings-card {
    background: var(--card-bg-dark);
    border-radius: 24px;
    padding: 2.5rem;
    color: white;
}

.savings-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.savings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.saving-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

.saving-item h4 {
    font-size: 1.8rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.saving-item p {
    font-size: 0.8rem;
    color: #94a3b8;
}

.vs-table {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
}

.vs-row {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.vs-row.header {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: #94a3b8;
}

.vs-row.header div:last-child {
    color: var(--accent-cyan);
}
