/* ======================================================================= */
/*                            TRANSFORM CARD                               */
/* ======================================================================= */

#transform-business {
    background-color: var(--surface-color);
    padding: 2.5rem 0; /* Reduced padding */
}
.transform-card {
    background: linear-gradient(135deg, #0077b6, #00aaff);
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.2);
}
.transform-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.1), rgba(0, 170, 255, 0.1));
    opacity: 0.3;
    mix-blend-mode: overlay;
}
.transform-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.transform-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}
.transform-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.transform-buttons .cta-button {
    background-color: #ffffff;
    color: #00aaff;
    border: 1px solid #00aaff;
}
.transform-buttons .cta-button:hover {
    background-color: rgba(0, 170, 255, 0.1);
}
.outline-button {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.outline-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (max-width: 768px) {
    .transform-card { 
        padding: 2rem 2rem;
    }
    .transform-title {
          font-size: 2rem;
    }
}
@media (max-width: 567px) {
    .transform-buttons {
        flex-wrap: wrap;
    }
    .transform-buttons .cta-button {
        width: 100%;
        margin: 0;
    }
}
