/* ================================================================
   page.css — Premium shared styles for HRBusiness.lt sub-pages
   Design: Navy + Electric Blue + Soft White / Light Blue-Grey
   ================================================================ */

/* ====== 1. PAGE-LEVEL DESIGN TOKENS ====== */
:root {
    --navy: #0f172a;
    --navy-700: #1e293b;
    --navy-600: #334155;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --surface-alt: #f7f9fc;
    --border-subtle: #e2e8f0;
    --text-lead: #475569;
    --card-radius: 12px;
    --shadow-card: 0 2px 16px rgba(15, 23, 42, .07), 0 1px 4px rgba(15, 23, 42, .04);
    --shadow-hover: 0 8px 32px rgba(15, 23, 42, .12), 0 2px 8px rgba(15, 23, 42, .06);
    --max-prose: 660px;
}

/* ====== 2. BREADCRUMB ====== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    color: #94a3b8;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #64748b;
    font-size: .75rem;
}

/* ====== 3. SPLIT HERO (service pages) ====== */
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #162a4a 100%);
    padding-top: var(--nav-height, 72px);
    min-height: 520px;
    display: grid;
    grid-template-columns: 55fr 45fr;
    align-items: stretch;
    overflow: hidden;
}

.page-hero-text {
    padding: 3.5rem 2.5rem 3.5rem max(2rem, calc(50vw - 620px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.page-hero h1 {
    font-size: clamp(1.75rem, 3.2vw, 2.55rem);
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.1rem;
    letter-spacing: -.02em;
}

.page-hero .hero-lead {
    font-size: 1.075rem;
    color: #cbd5e1;
    line-height: 1.75;
    margin-bottom: 1.75rem;
    max-width: 480px;
}

.page-hero-image {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0f172a 0%, transparent 40%);
    pointer-events: none;
}

/* Text-only hero variant (/apie-mus/, hub page) */
.page-hero--text {
    grid-template-columns: 1fr;
    min-height: auto;
}

.page-hero--text .page-hero-text {
    padding: 4rem max(2rem, calc(50vw - 620px));
    max-width: 900px;
}

.page-hero--text h1 {
    font-size: clamp(2rem, 3.8vw, 2.9rem);
}

.page-hero--text .hero-lead {
    max-width: 620px;
}

/* ====== 4. VALUE STRIP — dark glass chips (inside navy hero) ====== */
.value-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.4rem 0 1.75rem;
}

.value-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 0.45rem 1rem 0.45rem 0.65rem;
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    white-space: nowrap;
}

.value-item i {
    color: #60a5fa;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.value-item span {
    color: #e2e8f0;
}

/* Legacy value-card (hub page / older pages) — unchanged */
.value-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 max(1.5rem, calc(50vw - 620px));
}

.value-card {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1.4rem 1.5rem;
    border-right: 1px solid var(--border-subtle);
}

.value-card:last-child {
    border-right: none;
}

.value-card-icon {
    width: 42px;
    height: 42px;
    background: var(--blue-50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.value-card-text strong {
    display: block;
    font-size: .97rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .1rem;
}

.value-card-text span {
    font-size: .8rem;
    color: var(--text-lead);
}

/* ====== 5. PAGE SECTIONS ====== */
.page-content {
    padding: 0 0 4rem;
}

.page-section {
    padding: 4rem max(1.5rem, calc(50vw - 620px));
}

.page-section--alt {
    background: var(--surface-alt);
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.page-section h2 {
    font-size: clamp(1.5rem, 2.6vw, 1.95rem);
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 1.4rem;
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: .7rem;
}

.page-section h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    min-width: 4px;
    height: 1.1em;
    background: var(--blue-600);
    border-radius: 2px;
}

/* Final CTA h2 must not show the accent bar */
.page-cta h2::before,
.cta-bar h3::before {
    display: none;
}

.section-lead {
    font-size: 1.02rem;
    color: var(--text-lead);
    line-height: 1.75;
    max-width: var(--max-prose);
    margin-bottom: 2rem;
}

/* ====== 6. CALLOUT CARD ====== */
.callout-card {
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-left: 5px solid var(--blue-600);
    border-radius: 0 var(--card-radius) var(--card-radius) 0;
    padding: 1.4rem 1.75rem;
    margin-bottom: 1.75rem;
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--navy-600);
    max-width: var(--max-prose);
}

.callout-card strong {
    color: var(--navy);
}

/* ====== 7. ICON GRID ====== */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.1rem;
    margin: 1.5rem 0;
}

.icon-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 1.4rem 1.5rem;
    box-shadow: var(--shadow-card);
    transition: transform .2s, box-shadow .2s;
}

.icon-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.icon-card-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-50);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    font-size: 1.05rem;
    margin-bottom: .85rem;
}

.icon-card h4 {
    font-size: .93rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .35rem;
}

.icon-card p {
    font-size: .85rem;
    color: var(--text-lead);
    line-height: 1.6;
    margin: 0;
}

/* ====== 8. CALM ALERT LIST (situation cards) ====== */
.alert-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin: 1.5rem 0;
}

.alert-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-left: 4px solid #e2a83e;
    border-radius: 0 var(--card-radius) var(--card-radius) 0;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-card);
}

.alert-card-icon {
    color: #e2a83e;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: .15rem;
}

.alert-card p {
    margin: 0;
    font-size: .93rem;
    color: var(--navy-600);
    font-weight: 500;
    line-height: 1.5;
}

/* ====== 9. SITUATION CARDS GRID ====== */
.situation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.situation-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 1.1rem 1.25rem;
    box-shadow: var(--shadow-card);
    font-size: .92rem;
    color: var(--navy-600);
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: .7rem;
}

.situation-card::before {
    content: "→";
    color: var(--blue-600);
    font-weight: 800;
    flex-shrink: 0;
}

/* ====== 10. PROCESS TIMELINE ====== */
.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue-600), var(--blue-100));
}

.timeline-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1rem 0;
}

.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--blue-600);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--blue-100);
}

.timeline-content {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 1rem 1.25rem;
    flex: 1;
    box-shadow: var(--shadow-card);
    margin-top: 5px;
}

.timeline-content h4 {
    font-size: .97rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .35rem;
}

.timeline-content p {
    font-size: .88rem;
    color: var(--text-lead);
    line-height: 1.62;
    margin: 0;
}

/* ====== 11. SPLIT SECTION ====== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

.split-section--reverse {
    grid-template-columns: 1fr 1fr;
}

.split-section--reverse> :first-child {
    order: 2;
}

.split-section--reverse> :last-child {
    order: 1;
}

.split-image {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.split-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* ====== 12. EDITORIAL IMAGE BLOCK ====== */
.editorial-image-block {
    margin: 2rem 0;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.editorial-image-block img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.editorial-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, .68) 0%, transparent 100%);
    padding: 2rem 1.25rem .9rem;
    color: rgba(255, 255, 255, .85);
    font-size: .8rem;
    font-style: italic;
}

/* ====== 13. DELIVERABLES GRID ====== */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.1rem;
    margin: 1.5rem 0;
}

.deliverable-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 1.35rem 1.5rem;
    box-shadow: var(--shadow-card);
    display: flex;
    gap: .9rem;
    align-items: flex-start;
}

.deliverable-icon {
    color: var(--blue-600);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.deliverable-card h4 {
    font-size: .93rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .3rem;
}

.deliverable-card p {
    font-size: .85rem;
    color: var(--text-lead);
    line-height: 1.55;
    margin: 0;
}

/* ====== 14. MID-PAGE CTA BAR ====== */
.cta-bar {
    background: var(--navy);
    padding: 3.5rem max(1.5rem, calc(50vw - 620px));
    text-align: center;
}

.cta-bar h3 {
    font-size: clamp(1.25rem, 2.4vw, 1.65rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: .6rem;
}

.cta-bar p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-size: .97rem;
}

.cta-bar .btn-cta {
    background: var(--blue-600);
    color: #fff;
    padding: .875rem 2.25rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: .97rem;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, transform .2s;
}

.cta-bar .btn-cta:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
}

/* ====== 15. FAQ ACCORDION ====== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin: 1.5rem 0;
    max-width: 820px;
}

details.faq-item {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow .2s, border-color .2s;
}

details.faq-item[open] {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-hover);
}

details.faq-item summary {
    padding: 1.15rem 1.5rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .96rem;
    line-height: 1.4;
    transition: background .15s;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary:hover {
    background: var(--blue-50);
}

details.faq-item[open] summary {
    background: var(--blue-50);
    color: var(--blue-600);
    border-bottom: 1px solid var(--border-subtle);
}

details.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--blue-600);
    flex-shrink: 0;
    margin-left: 1rem;
    line-height: 1;
}

details.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 1.1rem 1.5rem 1.4rem;
    color: var(--text-lead);
    line-height: 1.75;
    font-size: .93rem;
}

.faq-answer p {
    margin: 0;
}

/* ====== 16. TRUST BLOCK ====== */
.trust-block {
    background: var(--surface-alt);
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 2.25rem 2.5rem;
}

.trust-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .85rem;
}

.trust-block p {
    color: var(--text-lead);
    line-height: 1.75;
    max-width: 640px;
}

.consultant-credit {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
    font-size: .88rem;
    color: var(--text-lead);
}

.consultant-credit a {
    color: var(--blue-600);
    font-weight: 600;
}

/* ====== 17. FINAL CTA SECTION ====== */
.page-cta {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
    padding: 4.5rem max(1.5rem, calc(50vw - 620px));
    text-align: center;
}

.page-cta h2 {
    color: #fff;
    font-size: clamp(1.55rem, 2.8vw, 2.1rem);
    margin-bottom: .75rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.page-cta p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.btn-white {
    background: #fff;
    color: var(--blue-600);
    font-weight: 700;
    padding: .875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: background .2s, transform .2s, box-shadow .2s;
    font-size: .95rem;
}

.btn-white:hover {
    background: var(--blue-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.cta-note {
    color: rgba(255, 255, 255, .55);
    font-size: .82rem;
    margin-top: 1.25rem;
    display: block;
}

/* ====== 18. COMPARISON TABLE (mobile-safe) ====== */
.comparison-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    margin: 1.5rem 0 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .92rem;
    min-width: 480px;
}

.comparison-table thead {
    background: var(--navy);
}

.comparison-table th {
    color: #fff;
    padding: .9rem 1.2rem;
    text-align: left;
    font-weight: 700;
    font-size: .87rem;
    letter-spacing: .02em;
}

.comparison-table td {
    padding: .8rem 1.2rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-lead);
    vertical-align: top;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
    background: var(--surface-alt);
}

.comparison-table td:first-child {
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}

.comparison-table .check {
    color: #16a34a;
    font-weight: 700;
}

.comparison-table .cross {
    color: #dc2626;
    font-weight: 700;
}

/* ====== 19. RELATED SERVICE LINKS ====== */
.related-services {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.related-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1.1rem;
    background: var(--blue-50);
    color: var(--blue-600);
    border-radius: 6px;
    font-size: .87rem;
    font-weight: 600;
    border: 1px solid var(--blue-100);
    transition: background .15s, box-shadow .15s;
    text-decoration: none;
}

.related-link:hover {
    background: var(--blue-100);
    box-shadow: 0 2px 8px rgba(37, 99, 235, .12);
}

/* ====== 20. SERVICE TILES (hub page) ====== */
.services-hub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.4rem;
    margin: 2rem 0;
}

.service-tile {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 1.85rem 1.75rem;
    box-shadow: var(--shadow-card);
    transition: transform .22s, box-shadow .22s;
    position: relative;
    overflow: hidden;
}

.service-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background .22s;
}

.service-tile:hover::before {
    background: var(--blue-600);
}

.service-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-tile .tile-icon {
    font-size: 1.9rem;
    color: var(--blue-600);
    margin-bottom: .9rem;
}

.service-tile h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .55rem;
}

.service-tile h3 a {
    color: var(--blue-600);
    text-decoration: none;
}

.service-tile h3 a:hover {
    text-decoration: underline;
}

.service-tile p {
    font-size: .88rem;
    color: var(--text-lead);
    margin: 0;
    line-height: 1.6;
}

.service-tile.coming-soon {
    background: var(--surface-alt);
}

.service-tile.coming-soon:hover {
    transform: none;
    box-shadow: var(--shadow-card);
}

.service-tile.coming-soon::before {
    display: none;
}

.coming-label {
    display: inline-block;
    font-size: .7rem;
    background: var(--blue-100);
    color: var(--blue-700);
    padding: .1rem .55rem;
    border-radius: 20px;
    margin-left: .5rem;
    font-weight: 700;
    vertical-align: middle;
    letter-spacing: .02em;
}

/* ====== 21. VALUES / APPROACH GRID (apie-mus) ====== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.1rem;
    margin: 1.5rem 0;
}

.value-tile {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}

.value-tile-icon {
    width: 42px;
    height: 42px;
    background: var(--blue-50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    font-size: 1.1rem;
    margin-bottom: .9rem;
}

.value-tile h4 {
    font-size: .93rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .3rem;
}

.value-tile p {
    font-size: .85rem;
    color: var(--text-lead);
    line-height: 1.6;
    margin: 0;
}

/* ====== 22. TEAM EDITORIAL (apie-mus) ====== */
.team-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin: 1.5rem 0;
}

.team-editorial-image {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.team-editorial-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.team-editorial-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
}

.team-editorial-content .team-role {
    font-size: .88rem;
    font-weight: 600;
    color: var(--blue-600);
    margin-bottom: .9rem;
}

.team-editorial-content p {
    font-size: .91rem;
    color: var(--text-lead);
    line-height: 1.72;
}

.team-editorial-note {
    font-size: .78rem;
    color: #94a3b8;
    font-style: italic;
    margin-top: .65rem;
}

/* ====== 23. COMPANY DETAILS (apie-mus) ====== */
.company-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    margin: 1.25rem 0;
}

.detail-item {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    font-size: .92rem;
}

.detail-item i {
    color: var(--blue-600);
    width: 18px;
    flex-shrink: 0;
    margin-top: .2rem;
}

.detail-item strong {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #94a3b8;
    margin-bottom: .15rem;
}

.detail-item span {
    color: var(--navy-600);
    font-weight: 500;
}

.detail-item a {
    color: var(--navy-600);
    text-decoration: none;
    font-weight: 500;
}

.detail-item a:hover {
    color: var(--blue-600);
}

/* ====== 24. PROCESS ROW (hub page) ====== */
.process-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 2.5rem 0;
    position: relative;
}

.process-row::before {
    content: '';
    position: absolute;
    top: 31px;
    left: 18%;
    right: 18%;
    height: 2px;
    background: var(--blue-100);
    z-index: 0;
}

.process-row-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

.process-row-num {
    width: 62px;
    height: 62px;
    background: var(--blue-600);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 0 5px #fff, 0 0 0 7px var(--blue-100);
}

.process-row-step h4 {
    font-size: .93rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: .3rem;
}

.process-row-step p {
    font-size: .83rem;
    color: var(--text-lead);
    line-height: 1.55;
    margin: 0;
}

/* ====== 25. LEGACY COMPAT (kept for any remaining refs) ====== */
.definition-box {
    background: var(--blue-50);
    border-left: 5px solid var(--blue-600);
    border-radius: 0 var(--card-radius) var(--card-radius) 0;
    padding: 1.4rem 2rem;
    margin-bottom: 2rem;
    font-size: 1.02rem;
    color: var(--navy-600);
    line-height: 1.75;
    max-width: var(--max-prose);
}

.situation-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin: 1rem 0 1.5rem;
}

.situation-list li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    padding: .75rem 1rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    font-size: .92rem;
    color: var(--navy-600);
    font-weight: 500;
}

.situation-list li::before {
    content: "→";
    color: var(--blue-600);
    font-weight: 700;
    flex-shrink: 0;
}

.service-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin: 1rem 0 1.5rem;
}

.service-includes li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    color: var(--text-lead);
    font-size: .93rem;
    line-height: 1.55;
}

.service-includes li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--blue-600);
    color: #fff;
    border-radius: 50%;
    font-size: .65rem;
    flex-shrink: 0;
}

.placeholder-notice {
    display: inline-block;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    color: #92400e;
    font-size: .78rem;
    font-weight: 600;
    padding: .2rem .55rem;
    border-radius: 4px;
}

/* ====== 26. RESPONSIVE ====== */
@media (max-width: 900px) {
    .page-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .page-hero-image {
        min-height: 220px;
        max-height: 280px;
        order: -1;
    }

    .page-hero-image::after {
        background: linear-gradient(to bottom, rgba(15, 23, 42, .35) 0%, transparent 100%);
    }

    .page-hero-text {
        padding: 2.25rem 1.5rem 2.5rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .page-hero .hero-lead {
        font-size: .97rem;
    }

    .value-strip-inner {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .value-card {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
    }

    .value-card:last-child {
        border-bottom: none;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .split-section--reverse> :first-child {
        order: 0;
    }

    .split-section--reverse> :last-child {
        order: 0;
    }

    .team-editorial {
        grid-template-columns: 1fr;
    }

    .process-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-row::before {
        display: none;
    }

    .page-section {
        padding: 3rem 1.5rem;
    }

    .cta-bar {
        padding: 2.75rem 1.5rem;
    }

    .page-cta {
        padding: 3.5rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .page-hero-text {
        padding: 2rem 1.25rem 2.25rem;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    .icon-grid,
    .deliverables-grid,
    .situation-cards,
    .services-hub,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .company-details-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .comparison-table {
        font-size: .83rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: .65rem .85rem;
    }

    .page-section {
        padding: 2.5rem 1.25rem;
    }

    .trust-block {
        padding: 1.75rem 1.5rem;
    }
}