/* Icon Styles */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 100%;
    height: 100%;
}

/* Icon sizes */
.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-md {
    width: 24px;
    height: 24px;
}

.icon-lg {
    width: 32px;
    height: 32px;
}

.icon-xl {
    width: 48px;
    height: 48px;
}

/* Icon colors */
.icon-primary svg {
    color: #667eea;
}

.icon-success svg {
    color: #4ade80;
}

.icon-warning svg {
    color: #ffc107;
}

.icon-danger svg {
    color: #ff6b6b;
}

.icon-white svg {
    color: white;
}

/* Feature Icons with Background */
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: white;
}

/* Specific icon fixes for features section */
.feature-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.cs-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.step-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Placeholder icon styles */
.icon-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}