/* --- CONSULTING PAGE SPECIFIC STYLES --- */

.consulting-hero {
    padding: 160px 0 100px;
    background: #f8fafc;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 25px;
}

.hero-text h1 span { color: #38bdf8; }

.main-consult-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.btn-primary-glow {
    background: #0f172a;
    color: #fff;
    padding: 18px 40px;
    border-radius: 14px;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
    transition: 0.3s;
}

.btn-primary-glow:hover {
    background: #38bdf8;
    transform: translateY(-3px);
}

/* Pillars Section */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    padding: 50px 40px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: #38bdf8;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.pillar-icon {
    font-size: 2.5rem;
    color: #38bdf8;
    margin-bottom: 25px;
}

/* Engagement Section */
.engagement-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.engage-visual img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.model-item {
    margin-top: 35px;
    padding-left: 20px;
    border-left: 3px solid #38bdf8;
}

.model-item h4 { margin-bottom: 8px; color: #0f172a; font-size: 1.2rem; }

/* Roadmap Steps */
.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-box {
    text-align: center;
    padding: 30px;
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: #f1f5f9;
    display: block;
    margin-bottom: -15px;
}

.step-box h4 { position: relative; z-index: 2; color: #0f172a; margin-bottom: 15px; }

/* Final CTA */
.cta-inner-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px;
    border-radius: 40px;
    text-align: center;
    color: #fff;
}

.cta-inner-card h2 { font-size: 2.5rem; margin-bottom: 20px; }
.cta-inner-card p { opacity: 0.8; max-width: 600px; margin: 0 auto 40px; font-size: 1.1rem; }

@media (max-width: 992px) {
    .hero-split, .pillars-grid, .engagement-wrapper, .steps-row { grid-template-columns: 1fr; }
    .hero-text { text-align: center; }
}