/* Assicurati che l'icona Elementor rispetti le dimensioni del container */
.am-icon-wrap-e90155b0 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.am-icon-wrap-e90155b0 svg {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor;
}

.am-icon-wrap-e90155b0 i {
    font-size: 20px !important;
    line-height: 1 !important;
}

.am-section-e90155b0 {
    --bg-start: #1e1b4b;
    --bg-end: #312e81;
    background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
    padding: 120px 20px;
    font-family: sans-serif;
    overflow: hidden;
}

@media (max-width: 767px) {
    .am-section-e90155b0 {
        padding: 60px 20px;
    }
}

.am-container-e90155b0 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
}

@media (max-width: 991px) {
    .am-container-e90155b0 {
        flex-direction: column;
        gap: 60px; /* Ridotto il gap su mobile e tablet */
    }
}

.am-left-col-e90155b0 {
    flex: 0 0 55%;
    order: 2; /* Su schermi < 991px va sotto */
}

.am-right-col-e90155b0 {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    width: 100%;
    order: 1; /* Su schermi < 991px va sopra */
}

/* Su desktop ripristiniamo l'ordine corretto (Testo a SX, Telefono a DX) */
@media (min-width: 992px) {
    .am-left-col-e90155b0 { order: 1; }
    .am-right-col-e90155b0 { order: 2; }
}

.am-badge-e90155b0 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.2);
    border: 1px solid rgba(79, 70, 229, 0.4);
    border-radius: 999px;
    padding: 6px 16px;
    color: #38bdf8;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.am-title-e90155b0 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px 0;
}

@media (max-width: 767px) {
    .am-title-e90155b0 {
        font-size: 40px; /* Titolo leggermente ridotto su mobile */
    }
}

.am-title-main-e90155b0 {
    color: #ffffff;
}

.am-title-sub-e90155b0 {
    background: linear-gradient(90deg, #38bdf8, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.am-desc-e90155b0 {
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.am-features-e90155b0 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 767px) {
    .am-features-e90155b0 {
        gap: 12px; /* Gap ridotto per far stare le due colonne */
    }
}

.am-feature-box-e90155b0 {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
}

@media (max-width: 767px) {
    .am-feature-box-e90155b0 {
        padding: 12px;
        gap: 10px;
        font-size: 13px; /* Testo più piccolo per non sforare */
    }
}

.am-feature-box-e90155b0.wide {
    grid-column: 1 / -1;
}

.am-icon-wrap-e90155b0 {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0; /* Previene lo schiacciamento dell'icona su mobile */
}

@media (max-width: 767px) {
    .am-icon-wrap-e90155b0 {
        width: 32px;
        height: 32px;
    }
}

.am-icon-wrap-e90155b0.c-teal { background: #134e4a; color: #2dd4bf; }
.am-icon-wrap-e90155b0.c-indigo { background: #312e81; color: #818cf8; }
.am-icon-wrap-e90155b0.c-blue { background: #1e3a8a; color: #60a5fa; }
.am-icon-wrap-e90155b0.c-purple { background: #4c1d95; color: #c084fc; }
.am-icon-wrap-e90155b0.c-red { background: #7f1d1d; color: #f87171; }

/* Custom Animations */
@keyframes float-up-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes float-left-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}
.animate-float-vertical {
    animation: float-up-down 5s ease-in-out infinite;
}
.animate-float-horizontal {
    animation: float-left-right 6s ease-in-out infinite;
}
@keyframes pulse_3s_ease-in-out_infinite {
    0% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(20, 184, 166, 0); }
    100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); }
}
.animate-\\[pulse_3s_ease-in-out_infinite\\] {
    animation: pulse_3s_ease-in-out_infinite 3s ease-in-out infinite;
}