/* ===========================
   STRATEGIC CONSULTATION PAGE
   =========================== */

/* Hero Section */
.consultation-section {
    background: var(--white);
}

.consultation-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 4rem;
}

.consultation-hero-left {
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 900px;
}

.consultation-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.consultation-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.consultation-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 2.5rem;
}

.consultation-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-primary {
    padding: 1rem 2rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--black);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 2px solid var(--black);
    transition: all 0.3s ease;
    display: inline-block;
}

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

.consultation-hero-right {
    display: none;
}

/* Session Coverage */
.session-coverage {
    padding: 5rem 4rem;
    background: #E8E8E8;
}

.coverage-heading {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
    text-align: left;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.coverage-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.coverage-card:nth-child(1) { animation-delay: 0.1s; }
.coverage-card:nth-child(2) { animation-delay: 0.2s; }
.coverage-card:nth-child(3) { animation-delay: 0.3s; }
.coverage-card:nth-child(4) { animation-delay: 0.4s; }

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left-color: var(--black);
}

.card-number {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--slate);
    margin-bottom: 1rem;
}

.coverage-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.coverage-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate);
}

/* Engagement Profile */
.engagement-profile {
    padding: 5rem 4rem;
    background: var(--white);
}

.profile-heading {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}

.profile-intro {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.profile-list {
    list-style: none;
    max-width: 800px;
}

.profile-list li {
    font-size: 1rem;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--slate);
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.profile-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--black);
}

.profile-list li:hover {
    padding-left: 2.5rem;
    color: var(--black);
}

/* Process Flow */
.process-flow {
    padding: 5rem 4rem;
    background: #E8E8E8;
}

.process-heading {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 4rem;
    text-align: left;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(3) { animation-delay: 0.2s; }
.process-step:nth-child(5) { animation-delay: 0.3s; }
.process-step:nth-child(7) { animation-delay: 0.4s; }

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--slate);
}

.process-connector {
    flex: 0.3;
    height: 2px;
    background: linear-gradient(90deg, var(--black) 0%, rgba(0,0,0,0.2) 100%);
}

/* Authority Band */
.authority-band {
    padding: 4rem;
    background: #1a1a1a;
    color: var(--white);
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.authority-item h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.authority-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Consultation Pricing */
.consultation-pricing {
    padding: 5rem 4rem;
    background: var(--white);
}

.pricing-heading {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
    text-align: left;
}

.pricing-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.pricing-detail {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.pricing-detail:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.pricing-detail h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--slate);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pricing-detail p {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.detail-note {
    font-size: 0.85rem;
    color: var(--slate);
    display: block;
    line-height: 1.5;
}

.pricing-cta {
    text-align: center;
}

.cta-primary-large {
    padding: 1.25rem 3rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 1024px) {
    .consultation-hero {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
    }

    .consultation-hero-right {
        height: 300px;
    }

    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .consultation-hero,
    .session-coverage,
    .engagement-profile,
    .process-flow,
    .authority-band,
    .consultation-pricing {
        padding: 3rem 1.5rem;
    }

    .consultation-title {
        font-size: 2.5rem;
    }

    .coverage-grid,
    .authority-grid,
    .pricing-details-grid {
        grid-template-columns: 1fr;
    }

    .consultation-ctas {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
