/* ============================================
   PIVOT CAREERS — Inner Page Styles v1
   ============================================ */

/* Page Hero (compact, not full-bleed) */
.page-hero {
    background: var(--navy-dark);
    padding: 8rem 0 5rem;
}

.page-hero-inner {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 4rem;
    align-items: start;
}

.page-heading {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.page-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 1.5rem;
}

.page-price-tag {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--blue-light);
    margin-bottom: 1.75rem;
}

/* Includes box (service page sidebar) */
.includes-box {
    background: white;
    border-radius: 16px;
    padding: 2rem;
}

.includes-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey);
    margin-bottom: 1.25rem;
}

.includes-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--navy);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--grey-light);
}

.includes-list li:last-child { border-bottom: none; }

.includes-list li i {
    color: var(--blue);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Narrow content container */
.page-narrow {
    max-width: 760px;
}

/* Prose paragraphs */
.page-narrow p {
    color: var(--grey);
    font-size: 1rem;
    margin-bottom: 1.1rem;
    line-height: 1.75;
}

/* Prose list */
.prose-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.prose-list li {
    font-size: 1rem;
    color: var(--grey);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.65;
}

.prose-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 600;
}

/* Problems grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.problem-card {
    border-radius: 14px;
    padding: 2rem;
    border: 1px solid var(--navy);
    background: var(--navy);
}

.problem-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--blue-light);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.problem-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.75rem;
}

.problem-card p {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.problem-solution {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    line-height: 1.6;
}

.problem-solution strong {
    display: block;
    color: var(--blue-light);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

/* Steps list */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    max-width: 820px;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--grey-light);
}

.step-item:last-child { border-bottom: none; }

.step-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--blue-light);
    opacity: 0.5;
    line-height: 1;
    flex-shrink: 0;
    width: 3rem;
    text-align: center;
}

.step-body h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.step-body p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.7;
}

/* Outcomes grid */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}

.outcome-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.outcome-icon {
    width: 40px;
    height: 40px;
    background: rgba(59,130,246,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-light);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.outcome-item p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* Single testimonial */
.single-testimonial {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--grey-light);
    max-width: 720px;
}

.single-testimonial blockquote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    line-height: 1.7;
    margin: 0.75rem 0 1.5rem;
}

/* Page hero no split (simple) */
.page-hero-simple {
    background: var(--navy-dark);
    padding: 8rem 0 5rem;
    text-align: center;
}

.page-hero-simple .page-heading,
.page-hero-simple .page-sub { margin-left: auto; margin-right: auto; }
.page-hero-simple .page-sub { max-width: 600px; }

/* Two-col content layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col img {
    border-radius: 16px;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
}

/* Testimonials full grid */
.testimonials-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Contact page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.contact-info p { color: var(--grey); margin-bottom: 1rem; }

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.contact-detail i { color: var(--blue); width: 18px; }

.contact-form-box {
    background: var(--cream);
    border-radius: 16px;
    padding: 2.5rem;
}

.contact-form-box h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1.75rem;
}

/* About page */
.about-page-hero {
    background: var(--navy-dark);
    padding: 8rem 0 5rem;
}

.cred-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.cred-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid var(--grey-light);
    text-align: center;
}

.cred-card img {
    height: 56px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 1rem;
    opacity: 0.85;
}

.cred-card h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.cred-card p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-hero-inner { grid-template-columns: 1fr; }
    .page-heading { font-size: 3rem; }
    .problems-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .cred-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-full-grid { grid-template-columns: repeat(2, 1fr); }
    .outcomes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-hero { padding: 6rem 0 3rem; }
    .page-heading { font-size: 2.5rem; }
    .testimonials-full-grid { grid-template-columns: 1fr; }
    .cred-grid { grid-template-columns: 1fr; }
}
