/* Figma Why Choose Us Section - Exact Design Replication */

.figma-design {
    background: transparent;
    padding: 60px 0;
    position: relative;
    min-height: 894px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.figma-container {
    max-width: 1440px;
    width: 100%;
    padding: 0 162px;
    position: relative;
}

/* Main Title Styles */
.figma-main-title {
    font-family: 'Aileron', sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: left;
    margin: 0 0 71px 9px;
    letter-spacing: 0.02em;
}

.figma-main-title .green-text {
    color: #5EE19F;
}

/* Content Layout */
.figma-content-layout {
    display: flex;
    gap: 11px;
    align-items: stretch;
    height: 393px;
}

/* Left Green Section */
.figma-green-section {
    width: 582px;
    height: 393px;
    background: rgba(94, 225, 159, 0.92);
    border-radius: 12px;
    border: 2px solid #5EE19F;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 51px;
    box-sizing: border-box;
    position: relative;
}

.figma-subtitle {
    font-family: 'Aileron', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.25em;
    color: #171717;
    text-align: left;
    margin: 0;
    max-width: 479px;
}

/* Right Cards Section */
.figma-cards-section {
    width: 524px;
    height: 393px;
    background: rgba(47, 50, 65, 0.5);
    border-radius: 12px;
    padding: 30px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Individual Cards */
.figma-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    height: auto;
    padding: 14px 0 0px;
}

.figma-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    padding-bottom: 27px;
    border-bottom: 1px solid;
}

.figma-card-content.no-border {
    border-bottom: none;
}

.figma-card-icon {
    width: 75px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    order: 2;
    margin-top: -40px;
    margin-left: 25px;
}

/* Icon Effects */
.figma-card-icon.orange-glow {
    filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.4));
}

.figma-card-icon.green-glow {
    filter: drop-shadow(0 0 20px rgba(94, 225, 159, 0.4));
}

.figma-card-icon.purple-glow {
    filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.4));
}

.figma-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Card Titles */
.figma-card-title {
    font-family: 'Aileron', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2em;
    color: #FFFFFF;
    text-align: left;
    margin: 0;
    flex: 1;
}

.figma-card-title.gray-text {
    color: #A5ADCF;
}

/* Separators */
.figma-separator {
    position: absolute;
    bottom: 0;
    left: 96px;
    right: 32px;
    height: 1px;
    background: #FFFFFF;
    margin-left: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .figma-container {
        padding: 0 80px;
    }
    
    .figma-main-title {
        font-size: 48px;
        text-align: center;
        margin-top: 55px;
        margin-left: 0px;
    }
    
    .figma-content-layout {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 20px;
    }
    
    .figma-green-section,
    .figma-cards-section {
        width: 100%;
        height: auto;
        min-height: 300px;
    }

    .figma-green-section {
        max-width: 582px;
    }

    .figma-cards-section {
        max-width: 582px;
    }
}

@media (max-width: 768px) {
    .figma-container {
        padding: 170px 20px 0px;
    }
    
    .figma-main-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .figma-subtitle {
        font-size: 24px;
        text-align: center;
    }
    
    .figma-green-section {
        padding: 30px;
    }
    
    .figma-cards-section {
        padding: 20px;
    }
    
    .figma-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 0;
    }
    
    .figma-card-title {
        text-align: center;
    }
    
    .figma-separator {
        left: 0;
        right: 0;
        margin-left: 0;
    }

    .figma-card-content {
        border-bottom: none;
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .figma-container {
        padding: 200px 20px 0px;
    }
}