/* =========================================================
   Department detail pages — shared styles
   Loaded ALONGSIDE doctor.css so it inherits all design tokens
   (--doc-primary, --doc-primary-soft, --doc-border, etc.).
   Namespace: .dp-dept-* — shared across all department pages
   (Psychiatry, Sports Medicine, etc.).
   ========================================================= */

/* ============================ HERO (full-bleed image) ============================ */
.dp-dept-hero {
    position: relative;
    min-height: 520px;
    padding: 110px 0 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
}
.dp-dept-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(30, 42, 120, .92) 0%, rgba(24, 33, 100, .85) 60%, rgba(15, 21, 70, .92) 100%);
    z-index: 1;
}
.dp-dept-hero::after {
    content: '';
    position: absolute;
    top: 90px; right: 60px;
    width: 140px; height: 100px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .22) 1.5px, transparent 2px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 2;
}
.dp-dept-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}
.dp-dept-hero-crumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 22px;
}
.dp-dept-hero-crumbs a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    transition: color .15s;
}
.dp-dept-hero-crumbs a:hover { color: white; }
.dp-dept-hero-crumbs i { font-size: 9px; opacity: .7; }
.dp-dept-hero-crumbs [aria-current="page"] {
    color: white;
    font-weight: 600;
}
.dp-dept-hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 30px;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, .08);
}
/* Hero text colors — extra-specific selectors so they beat doctor.css's
   `.doc-wrap h1/h2/h3/h4 { color: var(--doc-primary) }` rule. Without
   these, the hero title rendered navy-on-navy (invisible). */
.doc-wrap .dp-dept-hero-title,
.dp-dept-hero .dp-dept-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.06;
    color: #ffffff;
    margin: 0 0 18px;
    max-width: 820px;
}
.doc-wrap .dp-dept-hero-eyebrow { color: #ffffff; }
.dp-dept-hero-divider {
    display: block;
    width: 70px;
    height: 3px;
    background: white;
    border-radius: 3px;
    margin: 0 0 22px;
    opacity: .9;
}
.dp-dept-hero-lead {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
    margin: 0 0 32px;
    max-width: 760px;
}
.dp-dept-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.dp-dept-btn-white {
    background: white;
    color: var(--doc-primary);
    border: 1px solid white;
}
.dp-dept-btn-white:hover {
    background: var(--doc-primary-soft);
    color: var(--doc-primary);
    border-color: white;
}
.dp-dept-btn-ghost {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, .65);
}
.dp-dept-btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    color: white;
    border-color: white;
}

/* ============================ QUICK PROFILE override (same as doctor) ============================ */
.dp-dept-quick-profile-section {
    position: relative;
    z-index: 4;
    margin-top: -120px;
    margin-bottom: 64px;
}

/* ============================ ABOUT — condition chips row ============================ */
.dp-dept-condition-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 12px;
}
.dp-dept-condition-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border: 1px solid var(--doc-border);
    border-radius: 12px;
    transition: border-color .15s, box-shadow .15s, transform .12s;
}
.dp-dept-condition-pill:hover {
    border-color: var(--doc-primary);
    box-shadow: var(--doc-shadow-sm);
    transform: translateY(-2px);
}
.dp-dept-condition-pill-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--doc-primary-soft);
    color: var(--doc-primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 15px;
}
.dp-dept-condition-pill-name {
    font-size: 13px;
    color: var(--doc-text);
    font-weight: 600;
    line-height: 1.3;
}

/* ============================ INFO CARDS — 2-column for departments ============================ */
.dp-dept-info-section { padding: 0 0 80px; }
.dp-dept-info-head {
    text-align: center;
    margin-bottom: 40px;
}
.dp-dept-section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--doc-primary);
    margin-bottom: 12px;
}
.dp-dept-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 700;
    color: var(--doc-primary);
    margin: 0 0 10px;
    line-height: 1.15;
}
.dp-dept-section-sub {
    font-size: 15px;
    color: var(--doc-text-muted);
    margin: 0 auto;
    max-width: 680px;
    line-height: 1.65;
}
.dp-dept-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
/* Cards reuse .doc-info-card from doctor.css; nothing extra needed here for the box */
.dp-dept-info-grid .doc-info-list li {
    font-size: 14px;
    line-height: 1.65;
}
.dp-dept-info-grid .doc-info-list li strong {
    color: var(--doc-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

/* ============================ FAQ — single column accordion ============================ */
.dp-dept-faq-section {
    background: var(--doc-bg-hero);
    padding: 70px 0;
}
.dp-dept-faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 880px;
    margin: 0 auto;
}
.dp-dept-faq-item {
    background: white;
    border: 1px solid var(--doc-border);
    border-radius: var(--doc-radius);
    padding: 20px 24px;
    box-shadow: var(--doc-shadow-sm);
    transition: box-shadow .2s, border-color .2s;
}
.dp-dept-faq-item[open] {
    box-shadow: var(--doc-shadow);
    border-color: var(--doc-primary-soft);
}
.dp-dept-faq-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    outline: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--doc-primary);
    line-height: 1.35;
}
.dp-dept-faq-summary::-webkit-details-marker { display: none; }
.dp-dept-faq-summary::marker { content: ''; display: none; }
.dp-dept-faq-summary:focus-visible {
    outline: 2px solid var(--doc-primary);
    outline-offset: 4px;
    border-radius: 6px;
}
.dp-dept-faq-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--doc-primary-soft);
    color: var(--doc-primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
}
.dp-dept-faq-q {
    flex: 1;
}
.dp-dept-faq-chevron {
    margin-left: auto;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--doc-primary);
    background: var(--doc-primary-soft);
    font-size: 12px;
    transition: transform .25s ease, background .15s;
    flex-shrink: 0;
}
.dp-dept-faq-item[open] .dp-dept-faq-chevron { transform: rotate(180deg); }
.dp-dept-faq-summary:hover .dp-dept-faq-chevron { background: #dbe0ff; }
.dp-dept-faq-body {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--doc-border);
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--doc-text);
}
.dp-dept-faq-item[open] > .dp-dept-faq-body {
    animation: doc-info-reveal .25s ease-out;
}

/* ============================ Service Areas (two stacked collapsibles) ============================ */
.dp-dept-areas-section { padding: 70px 0 30px; }
.dp-dept-areas-wrap {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}
.dp-dept-areas-block {
    background: white;
    border: 1px solid var(--doc-border);
    border-radius: var(--doc-radius);
    padding: 22px 28px;
    box-shadow: var(--doc-shadow-sm);
    transition: box-shadow .2s, border-color .2s;
}
.dp-dept-areas-block[open] {
    box-shadow: var(--doc-shadow);
    border-color: var(--doc-primary-soft);
}
.dp-dept-areas-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    outline: none;
}
.dp-dept-areas-summary::-webkit-details-marker { display: none; }
.dp-dept-areas-summary::marker { content: ''; display: none; }
.dp-dept-areas-summary:focus-visible {
    outline: 2px solid var(--doc-primary);
    outline-offset: 4px;
    border-radius: 6px;
}
.dp-dept-areas-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--doc-primary-soft);
    color: var(--doc-primary);
    display: grid; place-items: center;
    flex-shrink: 0;
    font-size: 16px;
}
.dp-dept-areas-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--doc-primary);
    margin: 0;
}
.dp-dept-areas-chevron {
    margin-left: auto;
    width: 30px; height: 30px;
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--doc-primary);
    background: var(--doc-primary-soft);
    font-size: 12px;
    transition: transform .25s ease;
    flex-shrink: 0;
}
.dp-dept-areas-block[open] .dp-dept-areas-chevron { transform: rotate(180deg); }
.dp-dept-areas-grid {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--doc-border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.dp-dept-areas-block[open] > .dp-dept-areas-grid {
    animation: doc-info-reveal .25s ease-out;
}
.dp-dept-area-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: white;
    border: 1px solid var(--doc-border);
    border-radius: 30px;
    font-size: 13px;
    color: var(--doc-text);
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
    transition: background .15s, border-color .15s, color .15s;
}
.dp-dept-area-chip:hover {
    background: var(--doc-primary);
    border-color: var(--doc-primary);
    color: white;
}
.dp-dept-area-chip i {
    font-size: 10px;
    color: var(--doc-primary);
    transition: color .15s;
}
.dp-dept-area-chip:hover i { color: white; }

/* RTL block for Arabic */
.dp-dept-areas-rtl { direction: rtl; text-align: right; }
.dp-dept-areas-rtl .dp-dept-areas-summary { flex-direction: row; }
.dp-dept-areas-rtl .dp-dept-areas-chevron { margin-left: 0; margin-right: auto; }
.dp-dept-areas-rtl .dp-dept-area-chip {
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
}

/* ============================ Patient Success Stories ============================ */
.dp-dept-stories-section {
    background: var(--doc-bg-hero);
    padding: 70px 0;
}
.dp-dept-stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 1080px;
    margin: 0 auto;
}
.dp-dept-story-card {
    background: white;
    border: 1px solid var(--doc-border);
    border-radius: var(--doc-radius);
    padding: 28px 30px 24px;
    box-shadow: var(--doc-shadow-sm);
    position: relative;
    transition: box-shadow .2s, border-color .2s, transform .15s;
}
.dp-dept-story-card:hover {
    box-shadow: var(--doc-shadow);
    border-color: var(--doc-primary-soft);
    transform: translateY(-3px);
}
.dp-dept-story-quote {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 64px;
    color: var(--doc-primary-soft);
    line-height: .8;
    margin: -8px 0 -4px;
    user-select: none;
}
.dp-dept-story-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--doc-primary);
    margin: 4px 0 14px;
    line-height: 1.3;
}
.dp-dept-story-body {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--doc-text);
    margin: 0 0 16px;
}
.dp-dept-story-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--doc-text-muted);
    font-weight: 600;
    padding-top: 14px;
    border-top: 1px solid var(--doc-border);
}
.dp-dept-story-meta i {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--doc-primary-soft);
    color: var(--doc-primary);
    display: grid; place-items: center;
    flex-shrink: 0;
    font-size: 12px;
}

/* ============================ Care Philosophy 3-column row ============================ */
.dp-dept-philosophy-section {
    background: white;
    padding: 70px 0 30px;
}
.dp-dept-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}
.dp-dept-philosophy-card {
    background: var(--doc-bg-hero);
    border: 1px solid var(--doc-border);
    border-radius: var(--doc-radius);
    padding: 34px 28px 30px;
    text-align: center;
    transition: box-shadow .2s, transform .15s, border-color .2s;
}
.dp-dept-philosophy-card:hover {
    box-shadow: var(--doc-shadow);
    transform: translateY(-3px);
    border-color: var(--doc-primary-soft);
}
.dp-dept-philosophy-icon {
    width: 62px; height: 62px;
    border-radius: 50%;
    background: white;
    color: var(--doc-primary);
    display: grid; place-items: center;
    margin: 0 auto 18px;
    font-size: 22px;
    box-shadow: var(--doc-shadow-sm);
}
.dp-dept-philosophy-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 19px;
    color: var(--doc-primary);
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}
.dp-dept-philosophy-body {
    font-size: 14.5px;
    color: var(--doc-text);
    line-height: 1.7;
    margin: 0;
}

/* ============================ Care by Life Stage journey ============================ */
.dp-dept-stage-section {
    background: var(--doc-bg-hero);
    padding: 70px 0;
}
.dp-dept-stage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}
.dp-dept-stage-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--doc-primary-soft) 12%, var(--doc-primary-soft) 88%, transparent 100%);
    z-index: 0;
}
.dp-dept-stage-card {
    background: white;
    border: 1px solid var(--doc-border);
    border-radius: var(--doc-radius);
    padding: 24px 22px 22px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: box-shadow .2s, transform .15s;
}
.dp-dept-stage-card:hover {
    box-shadow: var(--doc-shadow);
    transform: translateY(-3px);
}
.dp-dept-stage-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--doc-primary);
    color: white;
    display: grid; place-items: center;
    margin: 0 auto 16px;
    font-size: 22px;
    box-shadow: 0 0 0 6px var(--doc-bg-hero), 0 0 0 7px var(--doc-primary-soft);
}
.dp-dept-stage-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    color: var(--doc-primary);
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.25;
}
.dp-dept-stage-age {
    font-size: 11px;
    color: var(--doc-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 600;
    margin-bottom: 14px;
}
.dp-dept-stage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.dp-dept-stage-list li {
    position: relative;
    padding-left: 16px;
    font-size: 13px;
    color: var(--doc-text);
    line-height: 1.55;
    margin-bottom: 8px;
}
.dp-dept-stage-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--doc-primary);
}
.dp-dept-stage-list li:last-child { margin-bottom: 0; }

/* 3-col modifier (used for 6-step journeys, e.g. Neurology) */
.dp-dept-stage-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}
.dp-dept-stage-grid-3col::before { display: none; }

/* ============================ Specialty Highlights grid (3×2) ============================ */
.dp-dept-specialty-section {
    background: white;
    padding: 30px 0 70px;
}
.dp-dept-specialty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1140px;
    margin: 0 auto;
}
.dp-dept-specialty-card {
    background: var(--doc-bg-hero);
    border: 1px solid var(--doc-border);
    border-radius: var(--doc-radius);
    padding: 28px 26px 24px;
    transition: box-shadow .2s, transform .15s, border-color .2s;
}
.dp-dept-specialty-card:hover {
    box-shadow: var(--doc-shadow);
    transform: translateY(-3px);
    border-color: var(--doc-primary-soft);
}
.dp-dept-specialty-icon {
    width: 54px; height: 54px;
    border-radius: 12px;
    background: var(--doc-primary);
    color: white;
    display: grid; place-items: center;
    margin-bottom: 18px;
    font-size: 22px;
}
.dp-dept-specialty-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 19px;
    color: var(--doc-primary);
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}
.dp-dept-specialty-desc {
    font-size: 14.5px;
    color: var(--doc-text);
    line-height: 1.65;
    margin: 0;
}

/* ============================ Featured Long-Term Care Package Card ============================ */
.dp-dept-package-section {
    background: var(--doc-bg-hero);
    padding: 70px 0;
}
.dp-dept-package-card {
    background: white;
    border: 1px solid var(--doc-border);
    border-radius: var(--doc-radius-lg);
    overflow: hidden;
    max-width: 1080px;
    margin: 0 auto;
    box-shadow: var(--doc-shadow-lg);
}
.dp-dept-package-header {
    background: linear-gradient(135deg, var(--doc-primary) 0%, var(--doc-primary-dark) 100%);
    color: white;
    padding: 36px 40px;
    text-align: center;
    position: relative;
}
.dp-dept-package-badge {
    display: inline-block;
    background: white;
    color: var(--doc-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.doc-wrap .dp-dept-package-title,
.dp-dept-package-card .dp-dept-package-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 18px;
    line-height: 1.2;
}
.dp-dept-package-price {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}
.dp-dept-package-amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}
.dp-dept-package-label {
    font-size: 16px;
    opacity: .9;
    font-weight: 500;
}
.dp-dept-package-savings {
    font-size: 14.5px;
    opacity: .92;
    margin: 4px 0 0;
}
.dp-dept-package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 36px 40px;
    border-bottom: 1px solid var(--doc-border);
}
.dp-dept-package-group { padding: 0 24px; }
.dp-dept-package-group:first-child { border-right: 1px solid var(--doc-border); padding-left: 0; }
.dp-dept-package-group:last-child { padding-right: 0; }
.dp-dept-package-group h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    color: var(--doc-primary);
    font-weight: 700;
    margin: 0 0 14px;
}
.dp-dept-package-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dp-dept-package-group ul li {
    position: relative;
    padding-left: 22px;
    font-size: 14.5px;
    color: var(--doc-text);
    line-height: 1.65;
    margin-bottom: 9px;
}
.dp-dept-package-group ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--doc-primary);
    font-size: 11px;
}
.dp-dept-package-note {
    font-size: 13px;
    color: var(--doc-text-muted);
    margin: 14px 0 0;
    line-height: 1.5;
    font-style: italic;
}
.dp-dept-package-steps {
    padding: 32px 40px 36px;
}
.dp-dept-package-steps h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    color: var(--doc-primary);
    font-weight: 700;
    margin: 0 0 22px;
    text-align: center;
}
.dp-dept-package-steps ol {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: pkg-step;
}
.dp-dept-package-steps ol li {
    counter-increment: pkg-step;
    position: relative;
    padding-left: 44px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--doc-text);
    min-height: 32px;
    display: flex;
    align-items: center;
}
.dp-dept-package-steps ol li::before {
    content: counter(pkg-step);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--doc-primary-soft);
    color: var(--doc-primary);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 15px;
    display: grid;
    place-items: center;
}

/* 4-col modifier for techniques grid (8 cards in 4×2 layout) */
.dp-dept-specialty-grid-4col {
    grid-template-columns: repeat(4, 1fr);
}

/* ============================ CTA section — WHITE background (overrides doctor cream) ============================ */
.dp-dept-cta-section {
    background: white !important;
    padding: 70px 0 80px;
    border-top: 1px solid var(--doc-border);
}

/* ============================ Responsive ============================ */
@media (max-width: 960px) {
    .dp-dept-hero { padding: 90px 0 180px; min-height: 460px; }
    .dp-dept-condition-pills { grid-template-columns: repeat(2, 1fr); }
    .dp-dept-info-grid { grid-template-columns: 1fr; }
    .dp-dept-areas-grid { grid-template-columns: repeat(2, 1fr); }
    .dp-dept-stories-grid { grid-template-columns: 1fr; }
    .dp-dept-philosophy-grid { grid-template-columns: 1fr; }
    .dp-dept-stage-grid { grid-template-columns: repeat(2, 1fr); }
    .dp-dept-stage-grid::before { display: none; }
    .dp-dept-stage-grid-3col { grid-template-columns: repeat(2, 1fr); }
    .dp-dept-specialty-grid { grid-template-columns: repeat(2, 1fr); }
    .dp-dept-specialty-grid-4col { grid-template-columns: repeat(2, 1fr); }
    .dp-dept-package-grid { grid-template-columns: 1fr; }
    .dp-dept-package-group { padding: 16px 0; }
    .dp-dept-package-group:first-child { border-right: 0; border-bottom: 1px solid var(--doc-border); padding-top: 0; }
    .dp-dept-package-group:last-child { padding-bottom: 0; }
    .dp-dept-package-steps ol { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .dp-dept-hero { padding: 70px 0 160px; }
    .dp-dept-hero-actions { flex-direction: column; align-items: stretch; }
    .dp-dept-hero-actions .doc-btn { justify-content: center; }
    .dp-dept-condition-pills { grid-template-columns: 1fr; }
    .dp-dept-areas-grid { grid-template-columns: 1fr; }
    .dp-dept-areas-block { padding: 18px 18px; }
    .dp-dept-area-chip { font-size: 12.5px; }
    .dp-dept-faq-item { padding: 16px 18px; }
    .dp-dept-faq-summary { font-size: 15px; }
    .dp-dept-faq-num { width: 28px; height: 28px; font-size: 12px; }
    .dp-dept-stage-grid { grid-template-columns: 1fr; }
    .dp-dept-stage-grid-3col { grid-template-columns: 1fr; }
    .dp-dept-specialty-grid { grid-template-columns: 1fr; }
    .dp-dept-specialty-grid-4col { grid-template-columns: 1fr; }
    .dp-dept-package-header { padding: 28px 24px; }
    .dp-dept-package-grid { padding: 24px; }
    .dp-dept-package-steps { padding: 24px; }
    .dp-dept-package-steps ol { grid-template-columns: 1fr; }
    .dp-dept-package-amount { font-size: 44px; }
}
