/* ==================== ImpactAdvisory Page Styles ==================== */

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

/* Hero with background image - similar to ImpactPlus */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    background: url('../images/hero-dashboard-illustration.png') right center / contain no-repeat;
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-think), var(--color-ai));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-microcopy {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-cta {
    background: linear-gradient(135deg, var(--color-think), var(--color-ai));
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(1, 91, 217, 0.25);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(1, 91, 217, 0.35);
}

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-alt {
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--color-dark);
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.framework-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.framework-card:hover {
    transform: translateY(-5px);
}

.framework-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-think);
}

.framework-card .metric {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-ai);
    margin-bottom: 0.5rem;
}

.framework-card p {
    color: var(--color-gray);
    line-height: 1.6;
}

.phases-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.phase-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-think);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.phase-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-ai);
    opacity: 0.2;
    margin-bottom: 0.5rem;
}

.phase-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.phase-timeline {
    font-size: 0.875rem;
    color: var(--color-ai);
    font-weight: 600;
    margin-bottom: 1rem;
}

.phase-card p {
    color: var(--color-gray);
    line-height: 1.6;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.impact-card i {
    font-size: 3rem;
    color: var(--color-think);
    margin-bottom: 1rem;
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.impact-card .stat {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-ai);
    margin-bottom: 0.5rem;
}

.impact-card p {
    color: var(--color-gray);
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.why-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.why-card i {
    font-size: 3rem;
    color: var(--color-ai);
    margin-bottom: 1rem;
}

.why-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.why-card p {
    color: var(--color-gray);
    line-height: 1.6;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.engagement-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.engagement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.engagement-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-think);
}

.engagement-card p {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* FAQ section now uses shared.css two-column layout */

.cta-section {
    background: linear-gradient(135deg, var(--color-think) 0%, var(--color-ai) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: white;
    color: var(--color-think);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button-secondary:hover {
    background: white;
    color: var(--color-think);
}

/* ==================== Optional Image Sections ==================== */
/* Visual Showcase Container */
.visual-showcase-container {
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-image-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(1, 91, 217, 0.05) 0%, rgba(106, 13, 173, 0.05) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-image-wrapper:hover .showcase-image {
    transform: scale(1.02);
}

.showcase-placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(3px);
    border: 3px dashed rgba(1, 91, 217, 0.3);
    margin: 1.5rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.showcase-placeholder-overlay i {
    font-size: 4rem;
    color: rgba(1, 91, 217, 0.4);
    margin-bottom: 1.5rem;
}

.showcase-placeholder-overlay span {
    font-size: 1.125rem;
    color: rgba(1, 91, 217, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-image-wrapper:hover .showcase-placeholder-overlay {
    background: rgba(255, 255, 255, 0.95);
    border-width: 4px;
}

/* Case Studies Grid */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.case-study-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.case-study-image-wrapper {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(1, 91, 217, 0.05) 0%, rgba(106, 13, 173, 0.05) 100%);
}

.case-study-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image {
    transform: scale(1.05);
}

.case-study-placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    border: 2px dashed rgba(1, 91, 217, 0.3);
    margin: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    transition: all 0.3s ease;
}

.case-study-placeholder-overlay i {
    font-size: 3rem;
    color: rgba(1, 91, 217, 0.4);
    margin-bottom: 1rem;
}

.case-study-placeholder-overlay span {
    font-size: 0.95rem;
    color: rgba(1, 91, 217, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-card:hover .case-study-placeholder-overlay {
    background: rgba(255, 255, 255, 0.95);
    border-width: 3px;
}

.case-study-content {
    padding: 2rem;
}

.case-study-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.case-study-result {
    color: var(--color-think);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.case-study-content p {
    color: #666;
    line-height: 1.6;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .framework-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
}
