/* Corporates Page Styles */

.corporates-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section - stessa struttura della home */
/* ===== CORPORATES PAGE STYLES ===== */
/* Stili specifici per la pagina corporates */

/* Journey Section - stile card grigie */
.journey-section {
    background: white;
    padding: 0;
}

/* Make the journey section a positioned container for absolute vertical lines */
.journey-section {
    position: relative;
}

/* Decorative vertical lines positioning for Corporates journey */
.journey-section .vertical-line--one { right: 398px; transform: translateX(-0.5px); }
.journey-section .vertical-line--two { left: 398px; transform: translateX(-0.5px); }
.journey-section .vertical-line--three {
    width: 2px !important;
    /* Gradient top-to-bottom using provided colors:
       Black, Lime 5, Black 80, Lime 4, Grey 5, Lime 3 */
    background: linear-gradient(90deg, var(--CG-colors-Lime-Lime-5, #C4F222) 50%, var(--CG-colors-Blue-Blue-5, #003EFF) 60%) !important;
    left: 50%;
    transform: translateX(-0.5px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.journey-title {
    text-align: center;
    margin-bottom: 73.5px;
    margin-top: 13.5px;
    color: #1f2937;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
    text-align: center;
    font-family: var(--Typography-font-family-title, "Space Grotesk");
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
}

.journey-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 8px;
    background: var(--CG-colors-Grey-Grey-5, #F2F2F2);
    z-index: 1;
}

.step-item:last-child::after {
    display: none;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 0;
    flex-direction: column;
}

.step-icon {
    width: 54px; /* space for 44px icon + breathing */
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 4px;
}
.step-icon svg { width: 44px; height: 44px; display: block; }

.step-title {
    color: var(--CG-colors-Grey-Black, #000);

    /* Body 4 - medium */
    font-family: var(--Typography-font-family-body, Montserrat);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 130% */
    margin: 0;
}

.step-description {
    color: var(--CG-colors-Shadows-Black-80, rgba(0, 0, 0, 0.80));

    /* Body 2 */
    font-family: var(--Typography-font-family-body, Montserrat);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin: 0;
}

/* Testimonials section - stessa grafica di scaleups */
.testimonial-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #1a365d 0%, #2d5282 100%);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
}

.testimonial-icon {
    position: absolute;
    top: -30px;
    right: 60px;
    z-index: 10;
}

.testimonial-icon .icon-letter {
    width: 60px;
    height: 60px;
    background: #ff6b9d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.5rem;
}

.testimonial-item {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-quote {
    font-size: 1.8rem;
    line-height: 1.4;
    color: white;
    font-weight: 500;
    margin-bottom: 3rem;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #00ff88;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #000;
    font-size: 1.5rem;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.3rem;
    color: white;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.author-info p {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
}

.author-info .author-source {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 3px;
    background: #fbbf24;
    transform: rotate(-45deg);
    z-index: 1;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    background: #fbbf24;
    color: #1e3a8a;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    color: #1e3a8a;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .journey-title {
        font-size: 1.8rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }
    
    .step-item::after {
        display: none;
    }

    /* hide decorative vertical lines on small screens but keep the central one (--three) visible */
    .journey-section .vertical-line:not(.vertical-line--three) { display: none; }

    /* center icon and title inside the step header on narrow screens */
    .step-header { align-items: center; }
    .step-icon { margin: 0 auto; }
    .step-title { text-align: center; }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .testimonial-quote {
        font-size: 1.3rem;
    }

  .corporates-hero { padding: 16px; }
  .corporates-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .journey-section {
        padding: 60px 0;
    }
    
    .contact-cta {
        padding: 60px 0;
    }
}
.line-scl{
    top: 165px !important;
}
.vertical-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--CG-colors-Shadows-Black-15, rgba(0, 0, 0, 0.15));
    pointer-events: none;
}

/* Hide line one and two on viewports narrower than 1440px; keep the central line (--three) always visible */
@media (max-width: 1439px) {
    .journey-section .vertical-line--one,
    .journey-section .vertical-line--two {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none;
    }
}