/**
 * OniGrow Theme — Guadagna Page
 *
 * Styles for the guadagna page and its WPML translations.
 * Extracted from inline post content (WPBakery legacy).
 *
 * @package OniGrow
 * @since 1.1.6
 */

/* Layout overrides — caricato solo sulla pagina guadagna */
.entry-header { display: none; }

.content-area {
    max-width: none;
    padding: 0;
}

.container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero {
            background: #e12f6c;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero h1 {
            font-size: 3.5rem !important;
            margin-bottom: 25px;
            font-weight: 900;
            letter-spacing: -1px;
        }
        
        .hero .subtitle {
            font-size: 1.3rem !important;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .programs-intro {
            padding: 80px 0;
            background: white;
            text-align: center;
        }
        
        .intro-title {
            font-size: 2.4rem !important;
            margin-bottom: 20px;
            color: #e12f6c;
            font-weight: 800;
        }
        
        .intro-subtitle {
            font-size: 1.3rem !important;
            margin-bottom: 60px;
            color: #666;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .programs-comparison {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .program-card {
            background: white;
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            border: 3px solid transparent;
        }
        
        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(225, 47, 108, 0.15);
            border-color: #e12f6c;
        }
        
        .program-card {
            background: linear-gradient(135deg, rgba(225, 47, 108, 0.05) 0%, rgba(255, 95, 143, 0.05) 100%);
        }
        
        .program-icon {
            width: 80px;
            height: 80px;
            background: #e12f6c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem !important;
            color: white;
            box-shadow: 0 10px 25px rgba(225, 47, 108, 0.2);
        }
        
        .program-name {
            font-size: 2rem !important;
            margin-bottom: 15px;
            font-weight: 800;
            color: #333;
        }
        
        .program-tagline {
            font-size: 1.1rem !important;
            color: #666;
            margin-bottom: 30px;
            font-style: italic;
        }
        
        .program-features {
            list-style: none !important;
            padding: 0;
            margin: 30px 0;
        }
        
        .program-features li {
            margin: 15px 0;
            color: #555;
            font-size: 1.05rem !important;
            display: flex;
            align-items: center;
        }
        
        .program-features li::before {
            content: '✓';
            color: #e12f6c;
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2rem !important;
        }
        
        .earnings-highlight {
            background: rgba(225, 47, 108, 0.1);
            border-radius: 15px;
            padding: 20px;
            margin: 25px 0;
            text-align: center;
        }
        
        .earnings-amount {
            font-size: 2rem !important;
            font-weight: 900;
            color: #e12f6c;
            display: block;
            margin-bottom: 5px;
        }
        .earnings-label {
            font-size: 1rem !important;
            color: #666;
        }
        
        .program-cta {
           	display: inline-block;
        	padding: 20px 50px;
        	background: #e12f6c;
        	color: white;
        	text-decoration: none;
        	border-radius: 50px;
        	font-weight: 700;
        	font-size: 1.1rem !important;
        	transition: all 0.3s;
        	box-shadow: 0 8px 20px rgba(225, 47, 108, 0.3);
        	width: fit-content;
        	text-align: center;
        	margin-top: 30px;
        }
        
        .program-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(225, 47, 108, 0.4);
            color: white !important;
        }
        
        .how-it-works {
            padding: 80px 0;
            background: #f8f9fa;
            text-align: center;
        }
        
        .how-title {
            font-size: 2.5rem !important;
            margin-bottom: 50px !important;
            color: #e12f6c;
            font-weight: 800 !important;
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin: 0 auto;
        }
        
        .step-item {
            text-align: center;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: #e12f6c;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem !important;
            font-weight: 800;
            margin: 0 auto 20px;
        }
        
        .step-title {
            font-size: 1.3rem !important;
            margin-bottom: 10px;
            color: #333;
            font-weight: 700;
        }
        
        .step-description {
            color: #666;
            line-height: 1.6;
        }
        
        .choose-cta {
            background: #e12f6c;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .choose-title {
            font-size: 3rem !important;
            margin-bottom: 25px;
            font-weight: 900;
        }
        
        .choose-subtitle {
            font-size: 1.3rem !important;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-button {
            display: inline-block;
            padding: 20px 50px;
            border-radius: 50px;
       	 	text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem !important;
            transition: all 0.3s;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            background: transparent;
            color: white;
            border: 3px solid white;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            color: white !important;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem !important;
            }
            
            .hero .subtitle {
                font-size: 1.1rem !important;
            }
            
            .programs-comparison {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .program-card {
                padding: 30px;
            }
        }
        
        /* CSS per l'example box */
        .example-box {
            background: rgba(225, 47, 108, 0.05);
            border-left: 4px solid #e12f6c;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        
        .example-box h4 {
            margin-top: 0;
            margin-bottom: 10px;
            color: #e12f6c;
            font-weight: 700;
            font-size: 1.1rem !important;
        }
        
        .example-box p {
            margin: 0;
            color: #555;
            font-size: 0.95rem !important;
            line-height: 1.5;
        }
        
        /* CSS per la tabella differenze */
        .differences-highlight {
            padding: 80px 0;
            background: #f9f7fa;
        }
        
        .differences-title {
            text-align: center;
            font-size: 2.4rem !important;
            margin-bottom: 40px;
            color: #e12f6c;
            font-weight: 800;
        }
        
        .differences-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
        }
        
        .table-header {
            display: flex;
            background: #e12f6c;
            color: white;
        }
        
        .header-cell {
            padding: 20px 15px;
            flex: 1;
            text-align: center;
            font-weight: bold;
            font-size: 1.1rem !important;
        }
        
        .table-row {
            display: flex;
            border-bottom: 1px solid #eee;
        }
        
        .table-row:last-child {
            border-bottom: none;
        }
        
        .row-cell {
            padding: 15px;
            flex: 1;
            text-align: center;
            font-size: 1rem !important;
        }
        
        .feature {
            font-weight: 700;
            background: rgba(225, 47, 108, 0.05);
            color: #333;
        }
        
        @media (max-width: 768px) {
    /* Modifica l'approccio per la visualizzazione mobile della tabella */
    .differences-table {
        display: block;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: none;
        background: none;
    }
    
    .table-header {
        display: none; /* Nascondi l'header originale */
    }
    
    .table-row {
        display: block;
        padding: 15px;
        margin-bottom: 15px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .row-cell {
        display: flex;
        padding: 10px 15px;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .row-cell:last-child {
        border-bottom: none;
    }
    
    .row-cell:before {
        content: attr(data-label);
        font-weight: 700;
        width: 40%;
        color: #e12f6c;
    }
    
    .row-cell.feature {
        display: block;
        background: #e12f6c;
        color: white;
        font-weight: 700;
        padding: 10px 15px;
        border-radius: 8px 8px 0 0;
        margin: -15px -15px 15px -15px;
        text-align: center;
    }
    
    .row-cell.feature:before {
        display: none;
    }
}
