/* =================================================================== */
/* 1. HERO SECTION - front-page.css
/* =================================================================== */
.hero-section {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: var(--section-padding);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
.hero-intro {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.hero-text h1 {
    color: var(--color-light);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-gray);
    max-width: 500px;
}
.hero-cta-buttons { /* ADDED FOR BUTTON SPACING */
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
}
.hero-image-wrapper {
    text-align: center;
}
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-text h1 {
        font-size: 3rem;
    }
}

/* 1.5. Hero Certifications (Social Proof)
/* ------------------------------------------------------------------ */
.hero-certifications {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Space between each icon */
    opacity: 0.8;
}
.hero-cert-item img {
    height: 32px; /* Controls the size of the icons */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}
.hero-cert-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .hero-certifications {
        justify-content: center; /* Center the icons on mobile */
    }
}

/* =================================================================== */
/* 3. TEXT-FOCUSED SECTION (UPDATED FOR NEW LAYOUT)
/* =================================================================== */
.text-focused-section {
    padding: var(--section-padding);
    background-color: var(--color-light);
}
.text-blocks-wrapper {
    margin: 0 auto;
}
.content-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center; 
}
@media (min-width: 992px) {
    .content-row {
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
    }
}
.text-block h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem; 
}
.text-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray);
}
.text-block p strong {
    font-weight: 600;
    color: var(--color-dark);
}
hr.text-divider {
    border: 0;
    height: 1px;
    background-color: var(--color-border);
    margin: 4rem auto; 
}

/* Integrated Testimonial Styling */
.testimonial-block .testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray);
    font-style: italic;
    margin: 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-accent);
}
.testimonial-block .testimonial-attribution {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    text-align: right;
    margin-top: 1.5rem;
}
.testimonial-block .testimonial-attribution span {
    font-weight: 400;
    color: var(--color-gray);
}

/* =================================================================== */
/* 4. PARTNER SECTION
/* =================================================================== */
.partner-section {
    padding: var(--section-padding);
    background-color: var(--color-light-gray);
}
.partner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
.partner-text h2 {
    max-width: 550px;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}
.partner-text p {
    max-width: 500px;
}
.cta-box {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 2.5rem;
    border-radius: 20px;
}
.cta-box h3 {
    color: var(--color-light);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.cta-box p {
    color: var(--color-gray);
    margin-bottom: 2rem;
}
@media (min-width: 992px) {
    .partner-grid {
        grid-template-columns: 1.2fr 1fr; 
        gap: 5rem;
    }
}

/* =================================================================== */
/* 5. PROOF POINT SECTION (UPDATED FOR NEW LAYOUT)
/* =================================================================== */
.proof-point {
    margin: 0;
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background-color: #fdfdfd; 
    transition: all 0.3s ease;
}
.proof-point:hover {
    border-color: var(--color-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.proof-point .proof-intro {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.proof-point .proof-intro i {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-top: 2px;
    font-style: normal;
}
.proof-point .proof-intro strong {
    color: var(--color-accent);
    font-style: normal;
}
.proof-point .proof-link {
    display: block;
    text-decoration: none;
}
.proof-point .proof-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-dark);
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}
.proof-point .proof-link:hover .proof-title {
    color: var(--color-accent);
}
.proof-point .proof-url {
    font-size: 0.9rem;
    color: var(--color-gray);
    word-break: break-all;
}
.proof-point .proof-url i {
    margin-right: 0.5rem;
}

/* =================================================================== 
/ 6. MOBILE OPTIMIZATIONS
/* =================================================================== */
@media (max-width: 767px) {
    .certifications-heading,
    .certifications-subtitle {
        text-align: center;
    }
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 350px;
        margin: 0 auto;
    }
    .expertise-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .expertise-header h2 {
        margin-bottom: 1.5rem;
        margin-left: 0;
        padding-left: 0;
    }
    .expertise-list {
        width: 100%;
        justify-content: flex-start;
        gap: 1.5rem;
        padding-left: 0;
        margin-left: 0;
    }
    .expertise-list li {
        margin-left: 0;
        padding-left: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}