.sec-91547e83-wrapper {
    width: 100%;
    font-family: inherit;
    padding: 30px 15px;
    box-sizing: border-box;
}

.sec-91547e83-header {
    margin-bottom: 50px;
}

.sec-91547e83-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.sec-91547e83-subtitle {
    font-size: 1.1rem;
    margin: 0;
}

.sec-91547e83-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    perspective: 1200px;
}

/* 3D Cards container and dynamic transformation */
.c-91547e83-card-container {
    height: 380px;
    perspective: 1000px;
}

.c-91547e83-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-radius: 16px;
}

.c-91547e83-card-container:hover .c-91547e83-card {
    transform: rotateY(180s); /* JS will control smooth hover triggers, standard hover acts as flawless fallback */
}

.c-91547e83-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
}

.c-91547e83-front {
    background-color: var(--accent-91547e83);
    color: #ffffff;
}

.c-91547e83-back {
    background-color: #2c3e2b;
    color: #f5fbf7;
    transform: rotateY(180deg);
}

/* Front card components */
.c-91547e83-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}
.c-91547e83-icon svg {
    width: 3.5rem;
    height: 3.5rem;
    fill: #ffffff;
}

.c-91547e83-face-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-align: center;
}

.c-91547e83-face-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    text-align: center;
    margin-bottom: 25px;
    font-style: italic;
}

.c-91547e83-action-hint {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Back card components */
.c-91547e83-back-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.c-91547e83-back-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.c-91547e83-back-btn {
    display: inline-block;
    background-color: var(--accent-91547e83);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s;
}

.c-91547e83-back-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}
