.sc-grid-wrapper-e35b5a04 {
    width: 100%;
}

.sc-grid-e35b5a04 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    box-sizing: border-box;
}

/* Card Foundations */
.sc-card-e35b5a04,
.sc-card-e35b5a04 * {
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
}

.sc-card-e35b5a04 {
    position: relative;
    display: block;
    text-decoration: none !important;
    background-color: #1f2937;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    z-index: 1;
}

.sc-card-e35b5a04:hover,
.sc-card-e35b5a04:focus,
.sc-card-e35b5a04:active {
    text-decoration: none !important;
    border-bottom: none !important;
}

.sc-card-e35b5a04-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sc-icon-e35b5a04 {
    font-size: 40px;
    color: var(--accent-color, #3b82f6);
    margin-bottom: 24px;
    transition: transform 0.4s ease, color 0.4s ease;
    display: flex;
    align-items: center;
}

.sc-icon-e35b5a04 svg {
    width: 40px;
    height: 40px;
    fill: var(--accent-color, #3b82f6);
    transition: fill 0.4s ease;
}

.sc-title-e35b5a04 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    transition: color 0.4s ease;
    text-decoration: none !important;
}

.sc-desc-e35b5a04 {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0 0 24px 0;
    transition: color 0.4s ease;
    text-decoration: none !important;
}

.sc-arrow-e35b5a04 {
    margin-top: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.4s ease;
}

.sc-arrow-e35b5a04 svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s ease;
}

/* =========================================
   ANIMATION 1: Glow & Reveal
   ========================================= */
.anim-glow-slide .sc-card-e35b5a04:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 0 0 2px var(--accent-color, #3b82f6);
}

.anim-glow-slide .sc-card-e35b5a04 .sc-card-deco-e35b5a04 {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.anim-glow-slide .sc-card-e35b5a04:hover .sc-card-deco-e35b5a04 {
    opacity: 1;
}

.anim-glow-slide .sc-card-e35b5a04:hover .sc-arrow-e35b5a04 {
    background-color: var(--accent-color, #3b82f6);
    transform: rotate(-45deg);
}

/* =========================================
   ANIMATION 2: Creative Clip-Path
   ========================================= */
.anim-clip-reveal .sc-card-e35b5a04::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color, #3b82f6);
    clip-path: circle(30px at calc(100% - 40px) 40px);
    transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 1;
}

.anim-clip-reveal .sc-card-e35b5a04:hover::before {
    clip-path: circle(120% at 50% 50%);
}

.anim-clip-reveal .sc-card-e35b5a04-inner {
    z-index: 2;
}

.anim-clip-reveal .sc-card-e35b5a04:hover .sc-title-e35b5a04,
.anim-clip-reveal .sc-card-e35b5a04:hover .sc-desc-e35b5a04 {
    color: #ffffff;
}

.anim-clip-reveal .sc-card-e35b5a04:hover .sc-icon-e35b5a04 {
    color: #ffffff;
    transform: scale(1.1);
}

.anim-clip-reveal .sc-card-e35b5a04:hover .sc-icon-e35b5a04 svg {
    fill: #ffffff;
}

.anim-clip-reveal .sc-card-e35b5a04:hover .sc-arrow-e35b5a04 {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(6px);
}

/* =========================================
   ANIMATION 3: Modern 3D Rotate
   ========================================= */
.anim-flip-3d {
    perspective: 1000px;
}

.anim-flip-3d .sc-card-e35b5a04 {
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.5s ease;
    transform-style: preserve-3d;
}

.anim-flip-3d .sc-card-e35b5a04:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.anim-flip-3d .sc-card-e35b5a04-inner {
    transform: translateZ(0px);
    transition: transform 0.5s ease;
}

.anim-flip-3d .sc-card-e35b5a04:hover .sc-card-e35b5a04-inner {
    transform: translateZ(30px);
}

.anim-flip-3d .sc-card-e35b5a04:hover .sc-icon-e35b5a04 {
    transform: translateZ(10px) scale(1.1);
}
