/* ── Lenti Graduate Page Style ───────────────────── */
.lg-page {
    padding-top: 72px;
}

/* ── HERO ── */
.lg-hero {
    position: relative;
    padding: 100px 0 120px;
    background: var(--ivory-light);
    overflow: hidden;
}

.lg-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lg-hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(184, 146, 62, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 146, 62, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
}

.lg-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.lg-hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 146, 62, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.lg-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 65, 100, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
}

.lg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lg-breadcrumb a {
    color: var(--text-light);
    transition: var(--transition);
}

.lg-breadcrumb a:hover {
    color: var(--gold);
}

.lg-breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.5;
}

.lg-hero-content {
    max-width: 800px;
}

.lg-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.lg-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--dark);
    margin: 15px 0 30px;
}

.lg-hero-title em {
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

.lg-hero-sub {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 600px;
    font-weight: 300;
}

.lg-hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ── INTRO ── */
.lg-intro {
    padding: 120px 0;
}

.lg-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lg-intro-text h2 {
    margin: 20px 0 30px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.lg-intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.lg-lens-diagram {
    position: relative;
    width: 320px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: var(--white);
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.lg-lens-frame {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(184, 146, 62, 0.2);
    border-radius: 50% 50% 45% 45% / 40% 40% 60% 60%;
    pointer-events: none;
    z-index: 10;
}

.lg-lens-zone {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: relative;
    transition: var(--transition);
    cursor: default;
}

.lg-lens-zone:hover {
    background: rgba(184, 146, 62, 0.05);
}

.lg-zone-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lg-zone-icon {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.6;
}

.lg-zone-lontano {
    background: rgba(45, 65, 100, 0.04);
    border-radius: 35px 35px 0 0;
    border-bottom: 2px dashed rgba(184, 146, 62, 0.1);
}

.lg-zone-intermedio {
    background: rgba(60, 160, 140, 0.03);
    border-bottom: 2px dashed rgba(184, 146, 62, 0.1);
}

.lg-zone-vicino {
    background: rgba(184, 146, 62, 0.05);
    border-radius: 0 0 35px 35px;
}

/* ── BENEFITS ── */
.lg-benefits {
    padding: 120px 0;
}

.lg-section-head {
    margin-bottom: 80px;
}

.lg-section-head h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-top: 20px;
}

.lg-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lg-benefit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 40px;
    transition: var(--transition);
}

.lg-benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-bg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.lg-benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--ivory);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 30px;
    transition: var(--transition);
}

.lg-benefit-card:hover .lg-benefit-icon {
    background: var(--gold);
    color: var(--white);
}

.lg-benefit-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.lg-benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ── TYPES ── */
.lg-types {
    padding: 120px 0;
}

.lg-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.lg-type-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.lg-type-card:hover {
    border-color: var(--gold-bg);
}

.lg-type-featured {
    border-color: var(--gold-bg);
    background: linear-gradient(160deg, var(--white) 0%, rgba(184, 146, 62, 0.05) 100%);
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 20px 60px rgba(184, 146, 62, 0.1);
}

.lg-type-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lg-type-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 24px;
}

.lg-type-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.lg-type-desc {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.lg-type-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.lg-type-features li {
    font-size: 0.9rem;
    color: var(--dark);
    display: flex;
    gap: 12px;
    align-items: center;
}

.lg-type-features li i {
    color: var(--gold);
    font-size: 0.8rem;
}



/* ── CTA FINALE ── */
.lg-cta-final {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.lg-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.lg-cta-text {
    flex: 1;
}

.lg-cta-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 20px 0 30px;
}

.lg-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .lg-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lg-type-featured {
        transform: none;
    }
}

@media (max-width: 991px) {
    .lg-intro-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .lg-process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .lg-step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }
    
    .lg-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .lg-cta-actions {
        width: 100%;
    }
    
    .lg-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .lg-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .lg-hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .lg-hero-cta {
        flex-direction: column;
    }
    
    .lg-hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .lg-types-grid {
        grid-template-columns: 1fr;
    }
    
    .lg-lens-diagram {
        width: 100%;
        height: auto;
        aspect-ratio: 4/5;
    }
    
    .lg-lens-zone {
        padding: 0 20px;
    }
}