/* _shared.css — shared styles for all Mind Appraisers pages */
:root {
    --navy: #003A70;
    --brand-blue: #0245A2;
    --ice: #F8FAFC;
    --gold: #B8952A;
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: white;
    color: var(--navy);
    scroll-behavior: smooth;
}
h1, h2, h3, .serif { font-family: 'Playfair Display', serif; }

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}
.glass-nav {
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(0,58,112,0.05);
}
.nav-item {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    padding: 10px 15px; transition: all 0.3s ease;
    background: none; border: none; cursor: pointer;
    color: var(--navy); text-decoration: none;
    display: inline-block;
}
.nav-item:hover { color: var(--brand-blue); }
.btn-navy {
    background-color: var(--navy); color: white;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.btn-navy:hover { background-color: var(--brand-blue); transform: translateY(-2px); }

.photo-placeholder {
    background-color: var(--ice);
    border: 2px dashed rgba(0,58,112,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(0,58,112,0.3); font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    border-radius: 2rem; position: relative; overflow: hidden;
}
.card-modern {
    background: white; border: 1px solid rgba(0,58,112,0.08);
    border-radius: 2.5rem; transition: all 0.4s ease;
}
.card-modern:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 30px 60px rgba(0,58,112,0.06);
}
.card-modern-clickable { cursor: pointer; }
.card-modern-clickable:hover { transform: translateY(-3px); }

.impact-number {
    font-size: clamp(2.5rem,4vw,3.5rem);
    color: var(--brand-blue); font-weight: 700; line-height: 1;
}
.gold-bar { width: 48px; height: 3px; background: #B8952A; border-radius: 2px; }
.tag-pill {
    display: inline-block; padding: 6px 16px;
    background: var(--navy); color: white;
    font-size: 8px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.2em; border-radius: 999px;
}
.problem-card {
    border-left: 3px solid #B8952A; padding: 28px 32px;
    background: #F8FAFC; border-radius: 0 1.5rem 1.5rem 0;
}
.stat-grid-card {
    background: var(--navy); color: white;
    border-radius: 2rem; padding: 40px; text-align: center;
}
.stat-grid-card .stat-num {
    font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 700;
    font-family: 'Playfair Display',serif; color: #B8952A; line-height: 1;
}

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: white; border: 1px solid rgba(0,58,112,0.08);
    border-radius: 20px; padding: 8px; min-width: 260px;
    box-shadow: 0 20px 48px rgba(0,58,112,0.1);
    opacity: 0; visibility: hidden;
    transform: translateY(-6px); transition: all 0.2s ease; z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity:1; visibility:visible; transform:translateY(0); }
.dropdown-item {
    display: block; width: 100%; text-align: left;
    padding: 10px 14px; border-radius: 12px; border: none;
    background: none; cursor: pointer; font-size: 13px;
    font-weight: 500; color: var(--navy); transition: background 0.15s;
    text-decoration: none;
}
.dropdown-item:hover { background: #F8FAFC; color: var(--brand-blue); }
.dropdown-item small { display: block; font-size: 11px; color: #94A3B8; font-weight: 400; margin-top: 2px; }
.dropdown-divider { height:1px; background:#F1F5F9; margin: 6px 0; }

/* PRISM NAV BADGE */
.prism-dot {
    display: inline-block; width: 7px; height: 7px;
    border-radius: 50%; margin-right: 5px;
    background: linear-gradient(135deg,#6366F1,#EC4899);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* BREADCRUMB */
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.12em; color: #94A3B8; padding: 16px 0 24px;
}
.bc-link { cursor: pointer; text-decoration: none; color: #94A3B8; }
.bc-link:hover { color: var(--brand-blue); }

/* SERVICE SUB-PAGE STYLES */
.sub-hero { padding: 80px 0 60px; background: #F8FAFC; border-bottom: 1px solid rgba(0,58,112,0.06); }
.outcome-card {
    background: white; border: 1px solid rgba(0,58,112,0.07);
    border-radius: 1.5rem; padding: 24px 28px;
}
.quote-block {
    border-left: 3px solid #B8952A; padding: 20px 28px;
    background: #F8FAFC; border-radius: 0 1rem 1rem 0;
    font-style: italic; font-size: 15px; line-height: 1.75;
}

/* PRISM */
.prism-spectrum { display: flex; gap: 3px; }
.prism-band { flex: 1; border-radius: 2px; }
.prism-dark-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.5rem; padding: 32px;
}
.timeline-row {
    display: grid; grid-template-columns: 80px 1fr;
    gap: 20px; padding: 24px 0;
    border-bottom: 1px solid rgba(0,58,112,0.06);
}
.timeline-row:last-child { border-bottom: none; }
.t-time {
    background: var(--navy); color: white;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; border-radius: 8px;
    padding: 6px 8px; text-align: center; height: fit-content;
}
.t-why { font-size: 12px; color: var(--brand-blue); font-style: italic; margin-top: 8px; line-height: 1.6; }

/* MOBILE NAV */
.mobile-overlay {
    display: none; position: fixed; inset: 0; z-index: 60;
    background: white; flex-direction: column; padding: 40px;
}
.mobile-overlay.open { display: flex; }
.mobile-link {
    font-size: 24px; font-weight: 700; color: var(--navy);
    padding: 16px 0; border-bottom: 1px solid #F1F5F9;
    text-align: left; text-decoration: none; width: 100%;
    display: block;
}

/* Sticky footer layout */

html, body {
  height: 100%;
  margin: 0;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
}