/* Hero compatto */
.gf-hero-compact {
    min-height: 50vh;
    padding: 120px 20px 60px;
}

.gf-hero-compact h1 {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    margin-bottom: 16px !important;
}

.gf-hero-compact .gf-hero-subtitle {
    margin-bottom: 0 !important;
    max-width: 700px;
}

/* ============================================
   OPZIONE 3: ACCENT BORDER + NUMBERS
   ============================================ */
.gf-noleggio-section {
    background: #f8f9fa;
    padding: 80px 20px 100px;
}

.gf-noleggio-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.gf-noleggio-header .gf-section-label {
    display: inline-block;
    color: var(--gf-primary, #007384);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.gf-noleggio-header .gf-section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #333;
    margin: 0 0 25px;
    line-height: 1.2;
}

.gf-noleggio-header .gf-section-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Cards Grid */
.gf-noleggio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 400px) {
    .gf-noleggio-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Style */
.gf-noleggio-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 30px 30px 35px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-left: 4px solid var(--gf-primary, #007384);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.gf-noleggio-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0,115,132,0.15);
    border-left-color: #00a3b8;
}

.gf-noleggio-card .card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0,115,132,0.15);
    line-height: 1;
    min-width: 60px;
    flex-shrink: 0;
}

.gf-noleggio-card .card-content {
    flex: 1;
}

.gf-noleggio-card h3 {
    font-size: 1.2rem;
    margin: 0 0 10px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.gf-noleggio-card h3 svg {
    width: 24px;
    height: 24px;
    fill: var(--gf-primary, #007384);
    flex-shrink: 0;
}

.gf-noleggio-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Staggered animation */
.gf-noleggio-card {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInCard 0.5s ease forwards;
}

.gf-noleggio-card:nth-child(1) { animation-delay: 0.1s; }
.gf-noleggio-card:nth-child(2) { animation-delay: 0.2s; }
.gf-noleggio-card:nth-child(3) { animation-delay: 0.3s; }
.gf-noleggio-card:nth-child(4) { animation-delay: 0.4s; }
.gf-noleggio-card:nth-child(5) { animation-delay: 0.5s; }
.gf-noleggio-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInCard {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .gf-hero-compact {
        min-height: 40vh;
        padding: 100px 20px 50px;
    }

    .gf-noleggio-section {
        padding: 60px 20px 80px;
    }

    .gf-noleggio-card {
        padding: 25px 20px 25px 25px;
        gap: 15px;
    }

    .gf-noleggio-card .card-number {
        font-size: 2rem;
        min-width: 45px;
    }

    .gf-noleggio-card h3 {
        font-size: 1.1rem;
    }
}

/* ============================================
   SEZIONE COME FUNZIONA
   ============================================ */
.gf-process-section {
    background: #fff;
    padding: 80px 20px 100px;
}

.gf-process-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.gf-process-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.gf-process-step {
    flex: 1;
    text-align: center;
    padding: 0 25px;
    position: relative;
    max-width: 220px;
}

.gf-process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -10px;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--gf-primary, #007384), rgba(0,115,132,0.3));
}

.gf-process-step:last-child::after {
    display: none;
}

.gf-process-step .step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gf-primary, #007384), #00a3b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,115,132,0.3);
}

.gf-process-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
}

.gf-process-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .gf-process-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .gf-process-step {
        max-width: 350px;
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
        padding: 0;
    }

    .gf-process-step::after {
        display: none;
    }

    .gf-process-step .step-number {
        margin: 0;
        flex-shrink: 0;
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
}

/* ============================================
   SEZIONE CONFRONTO
   ============================================ */
.gf-compare-section {
    background: #f8f9fa;
    padding: 80px 20px 100px;
}

.gf-compare-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.gf-compare-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 25px;
}

.gf-compare-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.gf-compare-table thead {
    background: linear-gradient(135deg, var(--gf-primary, #007384), #005a66);
}

.gf-compare-table th {
    padding: 20px 15px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

.gf-compare-table th:first-child {
    text-align: left;
    padding-left: 25px;
}

.gf-compare-table th.highlight {
    background: rgba(255,255,255,0.15);
    position: relative;
}

.gf-compare-table th.highlight::before {
    content: 'CONSIGLIATO';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #333;
    font-size: 0.65rem;
    padding: 4px 12px;
    border-radius: 10px;
    font-weight: 700;
    white-space: nowrap;
    z-index: 10;
}

.gf-compare-table td {
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #555;
}

.gf-compare-table td:first-child {
    text-align: left;
    padding-left: 25px;
    font-weight: 500;
    color: #333;
}

.gf-compare-table td.highlight {
    background: rgba(0,115,132,0.03);
}

.gf-compare-table tbody tr:hover {
    background: rgba(0,115,132,0.02);
}

.gf-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.gf-compare-table .check {
    color: #28a745;
    font-size: 1.3rem;
}

.gf-compare-table .cross {
    color: #dc3545;
    font-size: 1.3rem;
}

.gf-compare-table .partial {
    color: #ffc107;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .gf-compare-table th,
    .gf-compare-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .gf-compare-table th:first-child,
    .gf-compare-table td:first-child {
        padding-left: 15px;
    }
}

/* ============================================
   SEZIONE PER CHI È ADATTO
   ============================================ */
.gf-target-section {
    background: #fff;
    padding: 80px 20px 100px;
}

.gf-target-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.gf-target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.gf-target-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.gf-target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,115,132,0.12);
    border-color: var(--gf-primary, #007384);
}

.gf-target-card .target-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gf-primary, #007384), #00a3b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(0,115,132,0.25);
}

.gf-target-card .target-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.gf-target-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px;
}

.gf-target-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .gf-target-card {
        padding: 30px 25px;
    }

    .gf-target-card .target-icon {
        width: 65px;
        height: 65px;
    }

    .gf-target-card .target-icon svg {
        width: 32px;
        height: 32px;
    }
}
