.ami-insights-action {
    position: relative;
    padding: 80px 0;
    background: #FAFAFA;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    border-top: 2px solid #D0F45B;
}

/* Feathered green background circles */
.insights-blur-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(208, 245, 75, 0.25) 0%, rgba(208, 245, 75, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.insights-blur-left {
    left: -200px;
    bottom: -100px;
}

.insights-blur-right {
    right: -200px;
    top: -100px;
}

.insights-action-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column */
.insights-left {
    padding-right: 20px;
}

.insights-heading {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    line-height: 52px !important;
    margin: 0 0 20px 0 !important;
}

.insights-heading .heading-black {
    color: #000;
}

.insights-heading .heading-green {
    color: #508A92;
}

.insights-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
    margin: 0 0 30px 0;
}

.insights-icons-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 280px;
}

.insights-icons-row {
    display: flex;
    gap: 16px;
}

.insights-icons-row:nth-child(2) {
    margin-left: 38px;
}

.insights-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.insights-icon-box:hover {
    transform: translateY(-3px);
}

.insights-icon-box img {
    width: 32px;
    height: 32px;
}

/* Icon 1 in each row - Green style */
.insights-icons-row .insights-icon-box:nth-child(1) {
    background: rgba(209, 244, 67, 0.1);
    border: 2px solid rgba(209, 244, 67, 0.3);
}

.insights-icons-row .insights-icon-box:nth-child(1) img {
    filter: brightness(0) saturate(100%) invert(87%) sepia(45%) saturate(552%) hue-rotate(25deg) brightness(102%) contrast(92%);
}

.insights-icons-row .insights-icon-box:nth-child(1):hover {
    box-shadow: 0 4px 12px rgba(209, 244, 67, 0.3);
}

/* Icon 2 in each row - White with green icon */
.insights-icons-row .insights-icon-box:nth-child(2) {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
}

.insights-icons-row .insights-icon-box:nth-child(2) img {
    filter: brightness(0) saturate(100%) invert(87%) sepia(45%) saturate(552%) hue-rotate(25deg) brightness(102%) contrast(92%);
}

.insights-icons-row .insights-icon-box:nth-child(2):hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Icon 3 in each row - White with teal icon */
.insights-icons-row .insights-icon-box:nth-child(3) {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
}

.insights-icons-row .insights-icon-box:nth-child(3) img {
    filter: brightness(0) saturate(100%) invert(50%) sepia(20%) saturate(700%) hue-rotate(145deg) brightness(90%) contrast(90%);
}

.insights-icons-row .insights-icon-box:nth-child(3):hover {
    box-shadow: 0 4px 12px rgba(75, 135, 155, 0.2);
}

/* Right Column */
.insights-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insights-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.insights-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: #D0F45B;
}

.insights-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #D0F45B;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insights-card-icon img {
    width: 24px;
    height: 24px;
}

.insights-card-content {
    flex: 1;
}

.insights-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: #000;
    margin: 0 0 8px 0;
}

.insights-card-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .insights-left {
        padding-right: 0;
    }
    
    .insights-heading {
        font-size: 36px !important;
        line-height: 44px !important;
    }
}

@media (max-width: 768px) {
    .ami-insights-action {
        padding: 60px 0;
    }
    
    .insights-left {
        text-align: center;
    }
    
    .insights-heading {
        font-size: 32px !important;
        line-height: 40px !important;
    }
    
    .insights-icons-grid {
        max-width: 100%;
        align-items: center;
        margin: 0 auto;
    }
    
    .insights-icons-row {
        justify-content: center;
    }
    
    .insights-icons-row:nth-child(2) {
        margin-left: 30px;
    }
}

@media (max-width: 480px) {
    .ami-insights-action {
        padding: 40px 0;
    }
    
    .insights-action-container {
        padding: 0 15px;
    }
    
    .insights-heading {
        font-size: 28px !important;
        line-height: 36px !important;
    }
    
    .insights-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .insights-icons-grid {
        align-items: center;
    }
    
    .insights-icons-row {
        justify-content: center;
    }
    
    .insights-icons-row:nth-child(2) {
        margin-left: 0;
    }
}

