/* ════════════════════════════════════════════════════════════════════
   DR. RON ELLIOTT DMD — pages.css
   Interior pages, modal, components
   ════════════════════════════════════════════════════════════════════ */

/* ── PAGE HERO ──────────────────────────────────────────────────── */
.page-hero {
    margin-top: var(--header-h);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    padding: 88px 0;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(79,111,232,0.12); pointer-events: none;
}
.page-hero-inner { width: 100%; max-width: none; margin: 0 auto; padding: 0 8%; position: relative; z-index: 1; }
.page-hero .section-label { color: rgba(255,255,255,0.5); }
.page-hero .section-label::before { background: rgba(255,255,255,0.25); }
.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: white;
    line-height: 1.15; margin-bottom: 16px;
}
.page-hero-desc {
    font-size: 1.05rem; color: rgba(255,255,255,0.72);
    line-height: 1.75; max-width: 580px;
}
.page-hero .hero-badge {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    border-radius: 100px; padding: 7px 16px;
    font-size: 0.8rem; font-weight: 600;
    width: fit-content; margin-bottom: 20px;
}

/* ── PAGE HERO: TWO-COLUMN (with image) ─────────────────────────── */
.page-hero--two-col {
    padding: 0;
    overflow: visible;
}
.page-hero--two-col::before { display: none; }

.page-hero-inner--two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    padding: 0;
    max-width: none;
}

.page-hero-content {
    padding: 88px 8% 88px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.page-hero-img-wrap {
    position: relative;
    overflow: hidden;
    min-height: 440px;
}

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

.page-hero-review-card {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: white;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 8px 32px rgba(10,18,40,0.18);
    max-width: 280px;
    z-index: 2;
}
.phrc-stars { margin-bottom: 8px; }
.phrc-text {
    font-size: 0.84rem;
    color: var(--navy);
    line-height: 1.55;
    margin-bottom: 10px;
    font-style: italic;
}
.phrc-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.phrc-meta strong {
    font-size: 0.88rem;
    color: var(--navy);
    font-weight: 700;
}
.phrc-meta span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Actions + trust (already in page-hero-actions/trust) */
.page-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: 28px;
}
.page-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.page-hero-phone .drre-icon { width: 15px; height: 15px; }
.page-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.page-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    padding: 6px 12px;
}
.page-hero-trust-item .drre-icon { color: #7eb8f7; width: 14px; height: 14px; }

@media (max-width: 900px) {
    .page-hero-inner--two-col { grid-template-columns: 1fr; min-height: auto; }
    .page-hero-img-wrap { display: none; }
    .page-hero-content { padding: 64px 6%; }
}

@media (max-width: 600px) {
    .page-hero-actions { flex-direction: column; align-items: flex-start; }
    .page-hero-content { padding: 52px 5%; }
}

/* ── ABOUT BIO LINKS ─────────────────────────────────────────────── */
.about-bio-links { font-size: 0.95rem; line-height: 1.75; color: var(--text-muted); }
.about-bio-links a { color: var(--accent); text-underline-offset: 3px; }
.about-bio-links a:hover { color: var(--navy); }
.about-credentials-note { font-size: 0.94rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 32px; }
.about-credentials-note a { color: var(--accent); text-underline-offset: 3px; }

/* ── CONTACT PAGE ─────────────────────────────────────────────────── */
.contact-reach-section { padding: 80px 0; background: var(--off-white); }
.contact-reach-inner { display: flex; flex-direction: column; gap: 0; }
.contact-reach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.contact-reach-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: box-shadow var(--transition), transform var(--transition);
}
.contact-reach-card:hover {
    box-shadow: 0 8px 28px rgba(10,18,40,0.10);
    transform: translateY(-2px);
}
.contact-reach-card--featured {
    background: var(--navy);
    border-color: var(--navy);
    color: white;
}
.contact-reach-card--featured h3 { color: white; }
.contact-reach-card--featured p { color: rgba(255,255,255,0.78); }
.contact-reach-card--featured .contact-reach-note { color: rgba(255,255,255,0.6); }
.contact-reach-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-reach-card--featured .contact-reach-icon {
    background: rgba(255,255,255,0.12);
}
.contact-reach-icon .drre-icon { color: var(--accent); }
.contact-reach-card--featured .contact-reach-icon .drre-icon { color: white; }
.contact-reach-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 0; }
.contact-reach-card p { font-size: 0.92rem; line-height: 1.65; margin: 0; color: var(--text-muted); flex: 1; }
.contact-reach-btn { width: 100%; justify-content: center; }
.contact-reach-note { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }

.contact-location-section { padding: 80px 0; }
.contact-location-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.contact-location-text p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; color: var(--text-muted); }
.contact-location-text a { color: var(--accent); text-underline-offset: 3px; }
.contact-location-img img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(10,18,40,0.12);
}
.contact-location-img--placeholder {
    min-height: 360px;
    background: var(--off-white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
}
.contact-location-trust { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.contact-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 600;
}
.contact-trust-item .drre-icon { color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; }
.contact-location-ext { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.contact-location-ext a { color: var(--accent); }

.contact-service-area { padding: 64px 0; background: var(--off-white); }
.contact-service-area .section-title { text-align: center; margin-bottom: 16px; }
.contact-service-area .section-desc { text-align: center; max-width: 680px; margin: 0 auto 36px; }
.contact-service-area .section-desc a { color: var(--accent); text-underline-offset: 3px; }
.contact-area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 32px;
}
.contact-area-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}
.contact-area-chip .drre-icon { color: var(--accent); width: 13px; height: 13px; }
.contact-service-note { text-align: center; font-size: 0.9rem; color: var(--text-muted); }
.contact-service-note a { color: var(--accent); text-underline-offset: 3px; }

.contact-faq-section { padding: 80px 0; }

/* ── PATIENT RESOURCES EXTRAS ────────────────────────────────────── */
.resources-office-img {
    margin-top: 48px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10,18,40,0.10);
}
.resources-office-img img { width: 100%; display: block; }
.resources-explore-links {
    margin-top: 28px;
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.resources-explore-links a { color: var(--accent); text-underline-offset: 3px; }

/* ── CONTACT RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .contact-reach-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-location-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
    .contact-reach-section { padding: 56px 0; }
    .contact-location-section { padding: 56px 0; }
    .contact-service-area { padding: 48px 0; }
    .contact-faq-section { padding: 56px 0; }
}
@media (max-width: 600px) {
    .contact-reach-grid { grid-template-columns: 1fr; }
    .contact-reach-section { padding: 48px 0; }
}

/* ── BOOK NOW MODAL ─────────────────────────────────────────────── */
.book-modal {
    position: fixed; inset: 0; z-index: 500;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}
.book-modal.is-open { opacity: 1; visibility: visible; }

.book-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(10, 18, 34, 0.72);
    backdrop-filter: blur(4px);
}

.book-modal-panel {
    position: relative; z-index: 1;
    background: white; border-radius: 20px;
    width: 100%; max-width: 580px;
    max-height: 90vh; overflow-y: auto;
    padding: 44px 40px;
    box-shadow: 0 24px 80px rgba(10,18,34,0.3);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.28s ease;
}
.book-modal.is-open .book-modal-panel {
    transform: translateY(0) scale(1);
}

.book-modal-close {
    position: absolute; top: 18px; right: 18px;
    background: var(--off-white); border: none; cursor: pointer;
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); transition: background var(--transition);
}
.book-modal-close:hover { background: var(--input-muted); }

.book-modal-header { text-align: center; margin-bottom: 28px; }
.book-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 10px;
}
.book-modal-icon .drre-icon {
    width: 32px;
    height: 32px;
}
.book-modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; color: var(--navy); margin-bottom: 6px;
}
.book-modal-header p { font-size: 0.88rem; color: var(--gray); }

.book-now-form { display: flex; flex-direction: column; gap: 18px; }
.book-now-form .wpcf7,
.book-now-form .wpcf7 form {
    width: 100%;
}
.book-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.book-form-group { display: flex; flex-direction: column; gap: 5px; }
.book-form-group label {
    font-size: 0.83rem; font-weight: 600; color: var(--navy);
}
.book-form-group label span { color: var(--accent); }

.book-form-group input,
.book-form-group select,
.book-form-group textarea {
    padding: 11px 13px;
    border: 1.5px solid rgba(26,43,74,0.14);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
    color: var(--text); background: white; outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.book-form-group input:focus,
.book-form-group select:focus,
.book-form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(79,111,232,0.1);
}
.book-form-group input.is-invalid,
.book-form-group textarea.is-invalid { border-color: var(--danger); }

.book-form-checkbox .checkbox-label {
    display: flex; align-items: center; gap: 9px;
    cursor: pointer; font-size: 0.88rem; color: var(--navy);
}
.book-form-checkbox input[type="checkbox"] {
    width: 17px; height: 17px; accent-color: var(--accent); cursor: pointer;
}

.btn-book-submit { width: 100%; padding: 15px; font-size: 0.98rem; }

.book-modal-or {
    text-align: center; font-size: 0.82rem; color: var(--gray); margin-top: 4px;
}
.book-modal-or a { color: var(--accent); font-weight: 600; text-decoration: none; }
.book-modal-or a:hover { text-decoration: underline; }

/* ── SERVICES PAGE ──────────────────────────────────────────────── */
.services-page-section { padding: 88px 0; background: white; }
.services-page-section--alt { background: var(--off-white); }
.services-page-inner { max-width: none; margin: 0 auto; }
.services-page-header { max-width: 600px; margin-bottom: 48px; }

.services-detail-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-detail-card {
    background: white; border-radius: var(--radius);
    padding: 32px 26px;
    border: 1.5px solid rgba(26,43,74,0.07);
    display: flex; flex-direction: column;
    transition: all var(--transition);
}
.services-page-section--alt .service-detail-card { background: white; }
.service-detail-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(79,111,232,0.1);
}
.service-detail-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; color: var(--navy); margin-bottom: 10px;
}
.service-detail-card p { font-size: 0.86rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }

.specialty-cards { display: flex; flex-direction: column; gap: 20px; }
.specialty-card {
    display: flex; gap: 24px; align-items: flex-start;
    background: var(--off-white); border-radius: var(--radius); padding: 32px;
    transition: all var(--transition);
}
.specialty-card:hover { box-shadow: var(--shadow); }
.specialty-card-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(79,111,232,0.1);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.specialty-card-icon .drre-icon { width: 28px; height: 28px; color: var(--accent); }
.specialty-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; color: var(--navy); margin-bottom: 8px;
}
.specialty-card-content p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 12px; }

/* ══════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════════ */

/* Section padding */
.about-page-bio,
.about-awards,
.about-approach,
.about-credentials,
.about-team,
.about-reviews,
.about-office,
.about-press {
    padding: 88px 0;
}

/* Page-specific width modifiers; horizontal padding comes from .hp-inner. */
.about-page-bio .about-bio-wrap,
.about-awards .about-awards-inner,
.about-approach .about-approach-inner,
.about-credentials .about-credentials-inner,
.about-team .about-team-inner,
.about-reviews .about-reviews-inner,
.about-office .about-office-inner,
.about-press .about-press-inner {
    max-width: none;
}

/* ── PHOTO ROW — inline photo + badges, stretch to match height ──── */
.about-photo-row {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 32px;
    margin-bottom: 48px;
    align-items: stretch;   /* both columns grow to the tallest */
}

/* Photo column fills its cell height */
.about-bio-photo {
    display: flex;
    flex-direction: column;
}

.about-bio-photo img,
.about-photo-placeholder--lg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    min-height: 320px;
}

.about-photo-placeholder--lg {
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 320px;
    color: var(--gray);
    font-size: 0.85rem;
    text-align: center;
    padding: 24px;
}

/* Badges column — stack vertically and fill height */
.about-photo-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

/* Make each badge/card grow to fill equally */
.about-photo-badges > * {
    flex: 1;
    min-height: 0;
}

/* ── BIO BODY ─────────────────────────────────────────────────────── */
.about-bio-body p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ── BIO STAT CARDS ───────────────────────────────────────────────── */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-box {
    background: var(--off-white);
    border: 1.5px solid rgba(26,43,74,0.09);
    border-radius: 14px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-box--light {
    background: white;
    border-color: rgba(26,43,74,0.09);
}

.stat-box .num {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-box .label {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.4;
    font-weight: 500;
}

/* ── BADGE / AWARD CARDS (in photo column) ───────────────────────── */
.license-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--success-bg);
    border: 1.5px solid var(--success-soft-border);
    border-radius: 12px;
    padding: 14px 16px;
    text-decoration: none;
    transition: all var(--transition);
    flex: 1;
}
.license-badge:hover { background: var(--success-soft); border-color: var(--success-muted); transform: translateY(-1px); }
.license-badge-icon {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--success); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700; flex-shrink: 0;
}
.license-badge-icon .drre-icon { color: white; stroke: currentColor; }
.license-badge-text { flex: 1; }
.license-badge-text strong { display: block; font-size: 0.85rem; color: var(--success-dark); font-weight: 700; }
.license-badge-text span   { display: block; font-size: 0.78rem; color: var(--success); }
.license-exp { font-size: 0.72rem !important; color: var(--success-muted) !important; }
.license-badge-arrow { font-size: 0.9rem; color: var(--success); flex-shrink: 0; }
.license-badge--inline { display: inline-flex; margin-top: 20px; }

.healthgrades-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gold-bg);
    border: 1.5px solid var(--gold-border);
    border-radius: 12px;
    padding: 14px 16px;
    text-decoration: none;
    transition: all var(--transition);
    flex: 1;
}
.healthgrades-badge:hover { background: var(--gold-bg-hover); border-color: var(--gold-border-hover); transform: translateY(-1px); }
.hg-stars { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; letter-spacing: 1px; }
.hg-text { flex: 1; }
.hg-text strong { display: block; font-size: 0.85rem; color: var(--gold-text); font-weight: 700; }
.hg-text span   { display: block; font-size: 0.78rem; color: var(--gold-muted); }
.hg-logo {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--green-brand); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 800; flex-shrink: 0;
}

.about-award-card {
    display: flex;
    gap: 12px;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: var(--shadow);
    border: 1.5px solid rgba(26,43,74,0.07);
    flex: 1;
}
.about-award-card .drre-icon { flex-shrink: 0; }
.about-award-card strong { display: block; color: var(--navy); font-size: 0.85rem; font-weight: 700; }
.about-award-card span   { font-size: 0.76rem; color: var(--gray); }
.about-award-card--blue  { border-color: rgba(79,111,232,0.2); }
.about-award-card--blue .drre-icon { stroke: var(--blue); }

/* ── DR QUOTE ─────────────────────────────────────────────────────── */
.dr-quote {
    background: var(--off-white);
    border-left: 4px solid var(--accent);
    border-radius: 0 10px 10px 0;
    padding: 18px 22px;
    margin-bottom: 22px;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.7;
}
.dr-quote cite {
    display: block; margin-top: 10px;
    font-size: 0.8rem; font-weight: 700; font-style: normal; color: var(--accent);
}

/* ── AWARDS SECTION ───────────────────────────────────────────────── */
.about-awards { background: var(--navy); }
.about-awards-inner { max-width: 900px; }
.about-awards .section-label { color: rgba(255,255,255,0.5); }
.about-awards .section-label::before { background: rgba(255,255,255,0.25); }
.about-awards .section-title { color: white; }
.about-awards .section-desc { color: rgba(255,255,255,0.65); margin-bottom: 40px; }

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.award-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color var(--card-transition), transform var(--card-transition), box-shadow var(--card-transition);
}
.award-card:hover { border-color: rgba(255,255,255,0.25); transform: translateY(-3px); box-shadow: var(--card-hover-shadow); }
.award-card--featured {
    background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(245,166,35,0.04));
    border-color: rgba(245,166,35,0.4);
}
.award-card-icon .drre-icon { stroke: var(--accent); }
.award-card--featured .award-card-icon .drre-icon { stroke: var(--gold); }
.award-card-year {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--accent);
}
.award-card--featured .award-card-year { color: var(--gold); }
.award-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; color: white; line-height: 1.35; margin: 0;
}
.award-card-body { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 0; flex-grow: 1; }
.award-card-badge {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 700; color: var(--gold); margin-top: 8px;
}
.award-card-badge .drre-icon { stroke: var(--gold); }

/* ── APPROACH SECTION ─────────────────────────────────────────────── */
.approach-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.approach-feature {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    background: var(--off-white);
    border-radius: 12px;
    padding: 24px;
}
.approach-feature-icon {
    width: 40px; height: 40px; min-width: 40px;
    border-radius: 10px;
    background: rgba(79,111,232,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.approach-feature-icon .drre-icon { width: 20px; height: 20px; color: var(--accent); }
.approach-feature > div { display: flex; flex-direction: column; gap: 6px; }
.approach-feature h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin: 0; }
.approach-feature p  { font-size: 0.84rem; color: var(--gray); line-height: 1.65; margin: 0; }

/* ── CREDENTIALS ──────────────────────────────────────────────────── */
.credentials-memberships-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; color: var(--navy);
    margin: 40px 0 20px;
    padding-top: 32px;
    border-top: 1px solid rgba(26,43,74,0.1);
}

.credentials-edu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.edu-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1.5px solid rgba(26,43,74,0.08);
}
.edu-logo-wrap {
    width: 52px; height: 52px; min-width: 52px;
    border-radius: 10px;
    background: var(--off-white);
    border: 1px solid rgba(26,43,74,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; overflow: hidden;
}
.edu-logo-wrap .edu-logo { width: 100%; height: 100%; object-fit: contain; }
.edu-logo-wrap .edu-icon-fallback { color: var(--accent); width: 22px; height: 22px; }
.edu-card-text h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin: 0 0 4px; }
.edu-card-text p  { font-size: 0.82rem; color: var(--gray); margin: 0; line-height: 1.5; }

/* ── MEMBERSHIP GRID ──────────────────────────────────────────────── */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.membership-badge {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    background: white; border-radius: 14px; padding: 20px 16px;
    border: 1.5px solid rgba(26,43,74,0.08); text-align: center;
    transition: all var(--transition);
}
.membership-badge:hover {
    border-color: var(--accent); transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79,111,232,0.1);
}
.membership-logo-wrap {
    width: 86px; height: 86px; border-radius: 12px;
    background: var(--off-white); border: 1px solid rgba(26,43,74,0.07);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
}
.membership-logo-wrap .membership-logo { width: 100%; height: 100%; object-fit: contain; }
.membership-abbr-fallback {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem; font-weight: 700; color: var(--accent);
}
.membership-name { font-size: 0.84rem; color: black; line-height: 1.4; }

/* ── TEAM SECTION ─────────────────────────────────────────────────── */
.about-team { background: var(--off-white); }
.about-team-inner { }

.team-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; margin-top: 48px;
}
.team-card {
    background: white; border-radius: 16px; padding: 28px 20px;
    text-align: center; border: 1.5px solid rgba(26,43,74,0.07);
    transition: all var(--transition);
}
.team-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }

.team-grid--rich { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-card--rich {
    background: white; border: 1px solid rgba(26,43,74,0.08);
    border-radius: 14px; padding: 22px 18px;
    display: flex; flex-direction: column; gap: 8px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.team-card--rich:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-3px); }
.team-card--clinical { border-top: 3px solid var(--accent); }
.team-card--admin    { border-top: 3px solid var(--blue); }
.team-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.team-avatar-rich {
    width: 48px; height: 48px;
    background: var(--off-white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    overflow: hidden;
}
.team-avatar-rich img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar-rich .drre-icon { stroke: var(--accent); }
.team-card--admin .team-avatar-rich .drre-icon { stroke: var(--blue); }
.team-card-role-badge {
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--accent);
    background: rgba(79,111,232,0.08); padding: 3px 8px; border-radius: 20px;
}
.team-card--admin .team-card-role-badge { color: var(--blue); background: rgba(30,58,138,0.07); }
.team-card--rich h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin: 0; }
.team-card-bio { font-size: 0.8rem; color: var(--gray); line-height: 1.65; margin: 0; }

/* Team CTA block */
.team-cta-block {
    margin-top: 48px; background: var(--navy); border-radius: 20px;
    padding: 40px; display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: start;
}
.team-cta-block .section-label { color: rgba(255,255,255,0.5); }
.team-cta-block .section-label::before { background: rgba(255,255,255,0.25); }
.team-cta-text p { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 24px; }
.team-cta-contact { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.team-cta-phone {
    display: flex; align-items: center; gap: 8px;
    font-size: 1rem; font-weight: 700; color: white;
    text-decoration: none; transition: color 0.2s;
}
.team-cta-phone:hover { color: var(--accent); }
.team-cta-phone .drre-icon { stroke: var(--accent); }
.team-cta-info { display: flex; flex-direction: column; gap: 16px; }
.team-cta-info-item { display: flex; align-items: flex-start; gap: 12px; }
.team-cta-info-item .drre-icon { stroke: var(--accent); flex-shrink: 0; margin-top: 2px; }
.team-cta-info-item strong { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
.team-cta-info-item span   { font-size: 0.9rem; color: white; }

/* ── REVIEWS SECTION ──────────────────────────────────────────────── */
.about-reviews { background: white; }
.about-reviews-inner { }

.healthgrades-widget {
    display: inline-flex; align-items: center; gap: 16px;
    background: var(--gold-bg); border: 1.5px solid var(--gold-border);
    border-radius: 14px; padding: 18px 24px;
    text-decoration: none; margin: 28px 0 36px;
    transition: all var(--transition);
}
.healthgrades-widget:hover { background: var(--gold-bg-hover); transform: translateY(-1px); }
.hg-widget-stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 2px; }
.hg-widget-info strong { display: block; color: var(--navy); font-size: 1rem; font-weight: 700; }
.hg-widget-info span   { font-size: 0.82rem; color: var(--gray); }
.hg-widget-link { font-size: 0.82rem; color: var(--accent); font-weight: 600; white-space: nowrap; }

.reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.review-card {
    background: var(--off-white); border-radius: var(--card-radius); padding: var(--card-padding);
    border: 1.5px solid rgba(26,43,74,0.07);
    transition: border-color var(--card-transition), transform var(--card-transition), box-shadow var(--card-transition);
}
.review-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--card-hover-shadow); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 1px; }
.review-card p { font-size: 0.9rem; color: var(--navy); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.review-meta { display: flex; justify-content: space-between; align-items: center; }
.review-name   { font-size: 0.8rem; font-weight: 700; color: var(--navy); }
.review-source { font-size: 0.75rem; color: var(--accent); font-weight: 600; }

/* ── OFFICE SECTION ───────────────────────────────────────────────── */
.about-office { background: var(--off-white); }
.about-office-inner {
    display: flex; flex-direction: column; gap: 32px;
}

.office-detail-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin: 0;
}
.office-detail-card {
    background: white; border: 1px solid rgba(26,43,74,0.08);
    border-radius: 12px; padding: 18px 16px;
    display: flex; align-items: flex-start; gap: 12px;
}
.office-detail-card .drre-icon { stroke: var(--accent); flex-shrink: 0; margin-top: 2px; }
.office-detail-card strong { display: block; font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.office-detail-card a,
.office-detail-card address,
.office-detail-card span { font-size: 0.88rem; color: var(--navy); font-style: normal; line-height: 1.5; }
.office-detail-card a { color: var(--accent); text-decoration: none; font-weight: 600; }
.office-detail-card a:hover { text-decoration: underline; }
.office-detail-link { display: block; margin-top: 4px; font-size: 0.78rem; font-weight: 600; color: var(--accent); }

.about-office-image img {
    width: 100%; height: 420px; object-fit: cover;
    border-radius: 20px; box-shadow: var(--shadow-lg);
}

.office-highlights-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.office-highlight-item {
    display: flex; align-items: flex-start; gap: 12px;
    background: white; border: 1px solid rgba(26,43,74,0.08);
    border-radius: 12px; padding: 16px;
}
.office-highlight-icon {
    width: 36px; height: 36px;
    background: rgba(79,111,232,0.08); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.office-highlight-icon .drre-icon { stroke: var(--accent); }
.office-highlight-item strong { display: block; font-size: 0.85rem; color: var(--navy); margin-bottom: 4px; }
.office-highlight-item p { font-size: 0.78rem; color: var(--gray); line-height: 1.55; margin: 0; }

.map-embed-wrap {
    width: 100%; height: 420px; border-radius: 20px;
    overflow: hidden; box-shadow: var(--shadow-lg);
    background: rgba(26,43,74,0.06);
}
.map-embed-wrap iframe { width: 100%; height: 100%; display: block; }

.map-directions-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.map-directions-cta .btn-primary,
.map-directions-cta .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px; flex: 1; justify-content: center;
}

/* ══════════════════════════════════════════════════════════════════
   PRESS SECTION — full rewrite
   ══════════════════════════════════════════════════════════════════ */
.about-press { background: var(--navy); }

.about-press-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin: 0 auto;
}

.about-press .section-label { color: rgba(255,255,255,0.5); }
.about-press .section-label::before { background: rgba(255,255,255,0.25); }
.about-press .section-title { color: white; }

.press-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 14px;
}

.press-topics {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}
.press-topics li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}
.press-topics li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

/* Contact info cards — right column */
.office-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 0;
}

.office-info-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background 0.2s;
}
.office-info-card:hover { background: rgba(255,255,255,0.11); }

.office-info-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.10);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-bottom: 2px;
}
.office-info-icon .drre-icon {
    width: 20px; height: 20px;
    stroke: rgba(255,255,255,0.75);
}

.office-info-card h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,0.45);
    margin: 0;
}
.office-info-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.5;
}
.office-info-card a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}
.office-info-card a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════
   SLEEP THERAPY PAGE
   All sections use .hp-inner for consistent max-width + padding.
   No section-level horizontal padding overrides.
   ═══════════════════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────────────────────── */
.sleep-hero {
    margin-top: var(--header-h);
    background: linear-gradient(145deg, #0d1d35 0%, var(--navy) 50%, #1a305a 100%);
    padding: 88px 0;
    position: relative; overflow: hidden;
}
.sleep-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 75% 50%, rgba(79,111,232,0.22) 0%, transparent 55%);
    pointer-events: none;
}
.sleep-hero-inner    { display: flex; flex-direction: column; gap: 48px; }
.sleep-hero-content  { max-width: 720px; }
.sleep-hero-label    { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.75); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.sleep-hero-label .drre-icon { width: 14px; height: 14px; color: rgba(255,255,255,0.65); }
.sleep-hero-title    { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; color: white; line-height: 1.15; margin-bottom: 20px; }
.sleep-hero-accent   { color: #7eb8f7; }
.sleep-hero-trust    { font-size: 0.92rem; font-weight: 700; color: rgba(255,255,255,0.9); line-height: 1.6; max-width: 620px; margin: -4px 0 12px; }
.sleep-hero-desc     { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.75; max-width: 580px; margin-bottom: 32px; }
.sleep-hero-actions  { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.sleep-hero-secondary { background: transparent; color: white; border-color: rgba(255,255,255,0.55); }
.sleep-hero-secondary:hover { background: white; color: var(--navy); border-color: white; }
.sleep-hero-phone    { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: color var(--transition); }
.sleep-hero-phone:hover { color: white; }
.sleep-hero-phone .drre-icon { width: 16px; height: 16px; color: rgba(255,255,255,0.65); }
.sleep-hero-reassurance { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.sleep-hero-reassurance span { display: inline-flex; align-items: center; gap: 7px; color: white; font-size: 0.84rem; font-weight: 800; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.24); border-radius: 999px; padding: 8px 12px; }
.sleep-hero-reassurance .drre-icon { color: #7eb8f7; width: 15px; height: 15px; }
.sleep-hero-stats    { display: flex; gap: 12px; background: transparent; border-radius: 0; border: 0; overflow: visible; width: 100%; }
.sleep-hero-stat     { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px 20px; border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; gap: 8px; background: rgba(255,255,255,0.13); box-shadow: 0 12px 34px rgba(0,0,0,0.16); }
.sleep-hero-stat strong { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: white; line-height: 1; }
.sleep-hero-stat span   { font-size: 0.78rem; color: rgba(255,255,255,0.88); line-height: 1.45; max-width: 160px; font-weight: 700; }


/* ── SYMPTOMS ─────────────────────────────────────────────────────── */
.sleep-signs-section { padding: 88px 0; background: white; }
.sleep-signs-inner   { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.sleep-signs-text p  { font-size: 0.93rem; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.sleep-signs-cta     { margin-top: 8px; }
.sleep-signs-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sleep-sign-card     { display: flex; align-items: flex-start; gap: 12px; background: var(--off-white); border-radius: 12px; padding: 16px; border: 1.5px solid transparent; transition: border-color var(--transition), box-shadow var(--transition); }
.sleep-sign-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.sleep-sign-icon     { width: 36px; height: 36px; background: rgba(79,111,232,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sleep-sign-icon .drre-icon { width: 18px; height: 18px; color: var(--accent); }
.sleep-sign-card h4  { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.sleep-sign-card p   { font-size: 0.8rem; color: var(--gray); line-height: 1.6; margin: 0; }


/* ── CONSEQUENCES ─────────────────────────────────────────────────── */
.sleep-cons-section  { padding: 88px 0; background: var(--off-white); }
.sleep-cons-header   { max-width: 640px; margin-bottom: 52px; }
.sleep-cons-grid     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sleep-cons-card     { background: white; border-radius: var(--card-radius); padding: var(--card-padding); border: 1.5px solid rgba(26,43,74,0.07); transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.sleep-cons-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.sleep-cons-icon     { width: 44px; height: 44px; border-radius: 10px; background: rgba(79,111,232,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.sleep-cons-icon .drre-icon { width: 22px; height: 22px; color: var(--accent); }
.sleep-cons-card h3  { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
.sleep-cons-card p   { font-size: 0.85rem; color: var(--gray); line-height: 1.65; margin: 0; }


/* ── CPAP FRUSTRATION ─────────────────────────────────────────────── */
.sleep-cpap-section  { padding: 88px 0; background: white; }
.sleep-cpap-inner    { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: stretch; }
.sleep-cpap-text     { display: flex; flex-direction: column; }
.sleep-cpap-text p   { font-size: 0.93rem; color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.sleep-cpap-list     { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.sleep-cpap-list li  { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--navy); line-height: 1.6; }
.sleep-cpap-list svg.drre-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--danger); }
.sleep-cpap-transition { margin-top: 18px !important; color: var(--navy) !important; font-weight: 800; }

.sleep-cpap-callout  {
    background: var(--navy); border-radius: 20px; padding: 40px 36px;
    display: flex; flex-direction: column; gap: 0;
    position: relative; overflow: hidden;
}
.sleep-cpap-callout::before {
    content: ''; position: absolute; bottom: -40px; right: -40px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(79,111,232,0.18); pointer-events: none;
}
.sleep-cpap-callout::after {
    content: ''; position: absolute; top: -30px; left: -30px;
    width: 150px; height: 150px; border-radius: 50%;
    background: rgba(126,184,247,0.08); pointer-events: none;
}
.sleep-cpap-callout-body  { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; }
.sleep-cpap-callout-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #7eb8f7; margin-bottom: 20px; }
.sleep-cpap-callout-eyebrow .drre-icon { width: 16px; height: 16px; }
.sleep-cpap-callout strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; font-weight: 700; margin-bottom: 16px; line-height: 1.25; }
.sleep-cpap-callout p { font-size: 0.93rem; color: rgba(255,255,255,0.78); line-height: 1.8; margin: 0 0 28px; flex: 1; }
.sleep-cpap-callout .btn-primary { background: white; color: var(--accent); box-shadow: none; width: 100%; justify-content: center; display: flex; margin-top: auto; }
.sleep-cpap-callout .btn-primary:hover { background: var(--off-white); }


/* ── SOLUTION / COMPARISON ────────────────────────────────────────── */
.sleep-solution       { padding: 88px 0; background: var(--off-white); }
.sleep-solution-intro { font-size: 1rem; color: var(--gray); line-height: 1.8; max-width: 680px; margin-bottom: 48px; }
.sleep-compare-table  { border-radius: 16px; overflow: hidden; border: 1.5px solid rgba(26,43,74,0.09); background: white; box-shadow: var(--shadow); }
.sleep-compare-header { display: grid; grid-template-columns: 200px 1fr 1fr; background: var(--navy); }
.compare-col-label-col { border-left: none; }
.compare-col-header   { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 22px 20px; text-align: center; font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.65); border-left: 1px solid rgba(255,255,255,0.08); }
.compare-col-header .drre-icon { width: 20px; height: 20px; color: rgba(255,255,255,0.4); }
.compare-col-header span { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.4); }
.compare-col-header--accent { background: rgba(79,111,232,0.35); color: white; border-left: none; }
.compare-col-header--accent .drre-icon { color: #7eb8f7; }
.compare-col-header--accent span { color: rgba(255,255,255,0.6); }
.sleep-compare-row    { display: grid; grid-template-columns: 200px 1fr 1fr; border-top: 1px solid rgba(26,43,74,0.07); }
.sleep-compare-row:nth-child(even) { background: rgba(244,246,251,0.5); }
.compare-row-label    { padding: 16px 20px; font-size: 0.84rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; border-right: 1px solid rgba(26,43,74,0.07); }
.compare-row-good,
.compare-row-bad      { padding: 16px 20px; font-size: 0.85rem; display: flex; align-items: center; gap: 10px; line-height: 1.5; }
.compare-row-good     { color: var(--navy); background: rgba(0,168,89,0.04); border-right: 1px solid rgba(26,43,74,0.07); }
.compare-row-bad      { color: var(--gray); }
.icon-green .drre-icon { width: 18px; height: 18px; color: var(--green-brand); flex-shrink: 0; }
.icon-red   .drre-icon { width: 18px; height: 18px; color: #e74c3c; flex-shrink: 0; }


/* ── MID-PAGE CTA STRIP ───────────────────────────────────────────── */
.sleep-mid-cta        { background: var(--navy); padding: 28px 0; }
.sleep-mid-cta-inner  { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.sleep-mid-cta strong { display: block; font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 4px; }
.sleep-mid-cta span   { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.sleep-mid-cta .btn-white { padding: 14px 28px; font-size: 0.95rem; flex-shrink: 0; }


/* ── ESS QUIZ ─────────────────────────────────────────────────────── */
.sleep-quiz-section  { padding: 88px 0; background: var(--off-white); }
.sleep-quiz-inner    { display: flex; flex-direction: column; align-items: flex-start; }
.sleep-quiz-header   { width: 100%; max-width: 680px; text-align: left; margin-bottom: 48px; }
.sleep-quiz-header .section-desc  { max-width: 620px; }
.sleep-quiz-cta { margin-top: 24px; align-self: center; }

/* Card shell */
.ess-card {
    width: 100%; max-width: 100%;
    background: white; border-radius: 20px;
    border: 1.5px solid rgba(26,43,74,0.08);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Card header: dot steps + counter */
.ess-card-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(26,43,74,0.07);
    background: var(--off-white);
}
.ess-dot-row  { display: flex; gap: 7px; align-items: center; }
.ess-dot      { width: 8px; height: 8px; border-radius: 50%; background: rgba(26,43,74,0.12); flex-shrink: 0; transition: all 0.25s ease; }
.ess-dot.is-done    { background: var(--accent); opacity: 0.5; }
.ess-dot.is-current { background: var(--accent); width: 22px; border-radius: 4px; opacity: 1; }
.ess-card-counter   { font-size: 0.78rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }

/* Card body */
.ess-card-body { padding: 32px 28px; }
.ess-preamble  { font-size: 0.8rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 20px; }

/* Questions (one at a time, slide in) */
@keyframes essSlideIn { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: translateX(0); } }
.ess-question          { display: none; }
.ess-question.is-active { display: block; animation: essSlideIn 0.28s ease; }
.ess-q-text { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--navy); font-weight: 700; line-height: 1.35; margin-bottom: 24px; }

/* Horizontal option rows */
.ess-options { display: flex; flex-direction: column; gap: 10px; }
.ess-option  {
    display: flex; align-items: center; gap: 14px; width: 100%;
    padding: 14px 18px; background: var(--off-white);
    border: 2px solid transparent; border-radius: 12px;
    cursor: pointer; text-align: left; font-family: 'DM Sans', sans-serif;
    transition: all var(--transition);
}
.ess-option:hover          { background: white; border-color: var(--accent); box-shadow: 0 2px 12px rgba(79,111,232,0.1); }
.ess-option.is-selected    { background: rgba(79,111,232,0.05); border-color: var(--accent); box-shadow: 0 2px 16px rgba(79,111,232,0.12); }

.ess-opt-dot {
    width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
    border: 2px solid rgba(26,43,74,0.2);
    transition: all var(--transition);
}
.ess-option:hover .ess-opt-dot    { border-color: var(--accent); }
.ess-option.is-selected .ess-opt-dot { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,111,232,0.14); }

.ess-opt-body  { flex: 1; min-width: 0; }
.ess-opt-title { display: block; font-size: 0.92rem; font-weight: 700; color: var(--navy); }
.ess-opt-sub   { display: block; font-size: 0.78rem; color: var(--gray); margin-top: 1px; }

.ess-opt-badge {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    background: rgba(26,43,74,0.06); color: var(--gray);
    font-size: 0.78rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.ess-option.is-selected .ess-opt-badge { background: var(--accent); color: white; }

/* Result screen */
.ess-result {
    padding: 40px 28px; text-align: center;
    border-top: 1px solid rgba(26,43,74,0.07);
    animation: essSlideIn 0.35s ease;
}
.ess-score-circle {
    width: 88px; height: 88px; border-radius: 50%;
    background: var(--navy); color: white;
    font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 8px 28px rgba(26,43,74,0.2);
}
.ess-result--normal   .ess-score-circle { background: var(--green-brand); }
.ess-result--mild     .ess-score-circle { background: #b07800; }
.ess-result--moderate .ess-score-circle { background: var(--orange); }
.ess-result--severe   .ess-score-circle { background: var(--danger); }

.ess-result-label {
    display: inline-block; padding: 4px 14px; border-radius: 100px;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.ess-result--normal   .ess-result-label { background: rgba(0,168,89,0.12);   color: var(--green-brand); }
.ess-result--mild     .ess-result-label { background: rgba(176,120,0,0.12);  color: #b07800; }
.ess-result--moderate .ess-result-label { background: rgba(230,126,34,0.12); color: var(--orange); }
.ess-result--severe   .ess-result-label { background: rgba(231,76,60,0.12);  color: var(--danger); }

.ess-result-heading { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy); font-weight: 700; margin-bottom: 10px; }
.ess-result-desc    { font-size: 0.9rem; color: var(--gray); line-height: 1.75; max-width: 500px; margin: 0 auto 16px; }

.ess-result-rec {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.88rem; font-weight: 600; color: var(--navy);
    background: rgba(79,111,232,0.06); border: 1px solid rgba(79,111,232,0.14);
    border-radius: 10px; padding: 12px 20px; margin-bottom: 24px;
    max-width: 480px;
}
.ess-result-rec .drre-icon { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.ess-result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.ess-retake {
    display: block; background: none; border: none;
    color: var(--gray); font-size: 0.82rem;
    font-family: 'DM Sans', sans-serif; cursor: pointer;
    text-decoration: underline; margin: 0 auto;
}
.ess-retake:hover { color: var(--accent); }


/* ── PROCESS (HOW IT WORKS) ───────────────────────────────────────── */
.sleep-process       { padding: 88px 0; background: white; }
.process-steps       { display: flex; align-items: stretch; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.process-step        { flex: 1; min-width: 160px; text-align: center; background: var(--off-white); border: 1.5px solid rgba(26,43,74,0.07); border-radius: 14px; padding: 30px 22px; }
.step-number         { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: white; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.step-icon           { display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step-icon .drre-icon { width: 22px; height: 22px; color: var(--accent); }
.process-step h3     { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.process-step p      { font-size: 0.83rem; color: var(--gray); line-height: 1.65; }
.process-arrow       { font-size: 1.5rem; color: var(--accent); margin-top: 60px; flex-shrink: 0; }
.process-arrow .drre-icon { width: 22px; height: 22px; color: var(--accent); }
.sleep-process-cta-wrap { margin-top: 24px; }
.sleep-process-cta   { width: 100%; justify-content: center; display: flex; max-width: none; margin: 0; padding: 18px 32px; }


/* ── CLINICAL STATS ───────────────────────────────────────────────── */
.sleep-stats-section { padding: 88px 0; background: var(--off-white); }
.sleep-stats-header  { max-width: 680px; margin-bottom: 52px; }
.sleep-stats-grid    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.sleep-stat-card     { background: white; border-radius: var(--card-radius); padding: var(--card-padding); border: 1.5px solid rgba(26,43,74,0.07); display: flex; flex-direction: column; gap: 10px; transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition); }
.sleep-stat-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-3px); }
.sleep-stat-number   { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--accent); line-height: 1; }
.sleep-stat-desc     { font-size: 0.88rem; color: var(--navy); line-height: 1.65; font-weight: 500; flex: 1; }
.sleep-stat-source   { font-size: 0.72rem; color: var(--gray); font-style: italic; border-top: 1px solid rgba(26,43,74,0.08); padding-top: 10px; display: block; }
.sleep-stats-guideline { display: flex; align-items: flex-start; gap: 14px; background: rgba(79,111,232,0.05); border: 1px solid rgba(79,111,232,0.15); border-radius: 12px; padding: 18px 22px; }
.sleep-stats-guideline .drre-icon { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.sleep-stats-guideline p { font-size: 0.87rem; color: var(--navy); line-height: 1.7; margin: 0; font-style: italic; }


/* ── HOME SLEEP TEST (PROMINENT) ─────────────────────────────────── */
.sleep-hst-section  { padding: 88px 0; background: white; }
.sleep-hst-inner    { display: flex; align-items: flex-start; gap: 28px; flex-wrap: wrap; background: linear-gradient(135deg, var(--accent) 0%, var(--blue-dark) 100%); border-radius: 20px; width: calc(100% - 16%); padding: 52px; box-shadow: var(--shadow-lg); }
.sleep-hst-icon     { width: 64px; height: 64px; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.22); border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sleep-hst-icon .drre-icon { width: 32px; height: 32px; color: white; }
.sleep-hst-content  { flex: 1; min-width: 220px; }
.sleep-hst-content h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: white; font-weight: 700; margin-bottom: 10px; }
.sleep-hst-content p  { font-size: 0.92rem; color: rgba(255,255,255,0.88); line-height: 1.75; margin-bottom: 16px; }
.sleep-hst-points   { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sleep-hst-points li { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: white; font-weight: 700; }
.sleep-hst-points .drre-icon { width: 16px; height: 16px; color: #34d399; flex-shrink: 0; }
.sleep-hst-section .btn-white { align-self: center; flex-shrink: 0; color: var(--accent); border: 2px solid white; box-shadow: 0 12px 32px rgba(0,0,0,0.18); }
.sleep-hst-cta { flex-shrink: 0; }


/* ── INSURANCE / COST ─────────────────────────────────────────────── */
.sleep-insurance      { padding: 88px 0; background: var(--off-white); }
.sleep-insurance-inner {
    display: flex; align-items: flex-start; gap: 32px;
    background: white; border-radius: 20px; padding: 48px 52px;
    border: 1.5px solid rgba(26,43,74,0.07); box-shadow: var(--shadow);
    width: 100%; margin: 0 auto;
}
.sleep-insurance-icon { width: 72px; height: 72px; background: rgba(79,111,232,0.1); border-radius: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sleep-insurance-icon .drre-icon { width: 36px; height: 36px; color: var(--accent); }
.sleep-insurance-inner h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); font-weight: 700; margin-bottom: 12px; }
.sleep-insurance-inner p  { font-size: 0.93rem; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.sleep-ins-points  { display: flex; flex-direction: column; gap: 8px; }
.sleep-ins-points span { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--navy); font-weight: 500; }
.sleep-insurance-cta { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; }


/* ── FAQ ──────────────────────────────────────────────────────────── */
.sleep-faq         { padding: 88px 0; background: white; }
.sleep-faq-inner   { display: grid; grid-template-columns: 280px 1fr; gap: 72px; align-items: start; }
.sleep-faq-header  { position: sticky; top: calc(var(--header-h) + 32px); }
.sleep-faq-header .section-title { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.sleep-faq-list    { }


/* ── FAQ (shared) ─────────────────────────────────────────────────── */
.faq-list  { display: flex; flex-direction: column; gap: 2px; }
.faq-item  { background: var(--off-white); border-radius: 10px; overflow: hidden; }
.faq-question {
    width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center;
    padding: 18px 22px; background: none; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--navy);
    transition: color var(--transition);
}
.faq-question:hover               { color: var(--accent); }
.faq-question[aria-expanded="true"] { color: var(--accent); }
.faq-icon     { font-size: 1.3rem; font-weight: 300; flex-shrink: 0; transition: transform var(--transition); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-icon-svg .drre-icon { width: 18px; height: 18px; transition: transform var(--transition); }
.faq-question[aria-expanded="true"] .faq-icon-svg .drre-icon { transform: rotate(45deg); }
.faq-answer   { padding: 0 22px 18px; }
.faq-answer p { font-size: 0.88rem; color: var(--gray); line-height: 1.75; }


/* ── BOTOX PAGE ─────────────────────────────────────────────────── */
.botox-page-intro { padding: 88px 0; background: white; }
.botox-intro-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 72px; align-items: start; margin: 0 auto; }
.botox-intro-grid > div p { font-size: 0.93rem; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.botox-inline-cta { margin-top: 24px; }
.botox-intro-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.botox-intro-stat { background: var(--off-white); border-radius: 14px; padding: 24px 18px; text-align: center; }
.botox-intro-stat-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(79,111,232,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.botox-intro-stat-icon .drre-icon { width: 24px; height: 24px; color: var(--accent); }
.botox-intro-stat strong { display: block; color: var(--navy); font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.botox-intro-stat span { font-size: 0.78rem; color: var(--gray); }

.botox-benefits { padding: 88px 0; background: var(--off-white); }
.botox-benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 42px; }
.botox-benefit-card {
    background: white; border-radius: var(--card-radius); padding: 30px 24px;
    border: 1.5px solid rgba(26,43,74,0.07);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.botox-benefit-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.botox-benefit-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin: 14px 0 8px; }
.botox-benefit-card p { font-size: 0.84rem; color: var(--gray); line-height: 1.7; }

.botox-treatments { background: var(--off-white); padding: 88px 0; }
.botox-treatments-inner { margin: 0 auto; }
.botox-treatment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.botox-treatment-card { background: white; border-radius: var(--radius); padding: 30px 24px; border: 1.5px solid rgba(26,43,74,0.07); transition: all var(--transition); }
.botox-treatment-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.bt-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(79,111,232,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.bt-icon .drre-icon { width: 22px; height: 22px; color: var(--accent); }
.botox-treatment-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.botox-treatment-card p  { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

.filler-treatments { padding: 88px 0; background: white; }
.filler-inner { margin: 0 auto; }
.filler-inner .section-header { text-align: left; }
.filler-products { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.filler-product-card {
    background: var(--off-white); border-radius: 18px; padding: 40px;
    border: 1.5px solid rgba(26,43,74,0.07);
    transition: transform var(--transition), box-shadow var(--transition);
}
.filler-product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.filler-product-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.filler-product-logo-wrap {
    background: white; border-radius: 12px; padding: 10px 16px;
    border: 1.5px solid rgba(26,43,74,0.08);
    display: flex; align-items: center; justify-content: center;
    min-width: 140px; min-height: 60px;
}
.filler-product-logo {
    max-width: 140px; max-height: 56px; object-fit: contain; display: block;
}
.filler-product-logo-fallback {
    min-width: 140px; min-height: 60px; display: flex; align-items: center; justify-content: center;
    background: white; border: 1.5px solid rgba(26,43,74,0.08); border-radius: 12px; padding: 10px 16px;
    color: var(--accent); font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.88rem;
}
.filler-product-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 12px; }
.filler-product-card p  { font-size: 0.9rem; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
.filler-uses { display: flex; flex-wrap: wrap; gap: 8px; }
.filler-uses span { background: rgba(79,111,232,0.1); color: var(--accent); font-size: 0.78rem; font-weight: 600; border-radius: 100px; padding: 5px 14px; }

/* ── BOTOX LOCAL SEO ─────────────────────────────────────────────── */
.botox-local-seo { padding: 88px 0; background: var(--off-white); }
.botox-local-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.botox-local-text .btn-primary { margin-top: 28px; }
.botox-local-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.botox-local-card {
    background: white; border-radius: 16px; padding: 28px 24px;
    border: 1.5px solid rgba(26,43,74,0.07);
    box-shadow: 0 2px 12px rgba(26,43,74,0.05);
}
.botox-local-card .bt-icon { margin-bottom: 12px; }
.botox-local-card h4 { font-size: 0.92rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.botox-local-card p  { font-size: 0.83rem; color: var(--gray); line-height: 1.65; margin: 0; }

.botox-candidate { padding: 88px 0; background: white; }
.botox-candidate-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.botox-candidate-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
.botox-candidate-item {
    display: flex; align-items: flex-start; gap: 12px;
    background: var(--off-white); border: 1.5px solid rgba(26,43,74,0.07);
    border-radius: 12px; padding: 18px 20px; color: var(--navy);
    font-size: 0.9rem; line-height: 1.65; font-weight: 600;
}
.botox-candidate-item .drre-icon { flex-shrink: 0; margin-top: 2px; }

.botox-expect { background: var(--navy); padding: 88px 0; color: white; }
.botox-expect-inner { margin: 0 auto; }
.botox-expect .section-label { color: rgba(255,255,255,0.5); }
.botox-expect .section-label::before { background: rgba(255,255,255,0.25); }
.botox-expect .section-title { color: white; }
.expect-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.expect-step { background: rgba(255,255,255,0.06); border-radius: 14px; padding: 28px 22px; border: 1px solid rgba(255,255,255,0.08); }
.expect-step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: white; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.expect-step h4 { font-size: 0.95rem; color: white; font-weight: 700; margin-bottom: 8px; }
.expect-step p  { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

.resources-section .expect-step,
.resources-section--alt .expect-step { background: white; border: 1.5px solid rgba(26,43,74,0.08); box-shadow: 0 2px 12px rgba(26,43,74,0.05); }
.resources-section .expect-step h4,
.resources-section--alt .expect-step h4 { color: var(--navy); }
.resources-section .expect-step p,
.resources-section--alt .expect-step p  { color: var(--gray); }

/* ── FAQ ────────────────────────────────────────────────────────── */
.sleep-faq, .botox-faq { padding: 88px 0; background: var(--off-white); }
.sleep-faq-inner { }
.sleep-faq-inner .faq-list { max-width: none; }
.botox-faq-inner { margin: 0 auto; }

.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: white; border-radius: 10px; overflow: hidden; }
.faq-question {
    width: 100%; text-align: left;
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 22px; background: none; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--navy);
    transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question[aria-expanded="true"] { color: var(--accent); }
.faq-icon { font-size: 1.3rem; font-weight: 300; flex-shrink: 0; transition: transform var(--transition); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-icon-svg { display: flex; align-items: center; }
.faq-icon-svg .drre-icon { width: 18px; height: 18px; transition: transform var(--transition); }
.faq-question[aria-expanded="true"] .faq-icon-svg .drre-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 18px; }
.faq-answer p { font-size: 0.88rem; color: var(--gray); line-height: 1.75; }

/* ── PATIENT RESOURCES PAGE ─────────────────────────────────────── */
.resources-section { padding: 88px 0; background: white; }
.resources-section--alt { background: var(--off-white); }
.resources-inner { margin: 0 auto; }

/* ── SINGLE SERVICE TEMPLATE ─────────────────────────────────────── */
.service-single-section { padding: 88px 0; background: white; }
.service-single-section--alt { background: var(--off-white); }
.service-single-grid { display: grid; grid-template-columns: 0.9fr 1.2fr; gap: 64px; align-items: start; }
.service-single-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-single-benefit,
.service-process-card {
    background: var(--off-white); border: 1.5px solid rgba(26,43,74,0.07);
    border-radius: var(--card-radius); padding: 28px 22px;
}
.service-single-section--alt .service-single-benefit,
.service-single-section--alt .service-process-card { background: white; }
.service-single-benefit h3,
.service-process-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin: 12px 0 8px; }
.service-single-benefit p,
.service-process-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }
.service-single-split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: start; }
.service-check-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
.service-check-item {
    display: flex; align-items: flex-start; gap: 12px; background: white;
    border: 1.5px solid rgba(26,43,74,0.07); border-radius: 12px;
    padding: 18px 20px; color: var(--navy); font-weight: 600; line-height: 1.65;
}
.service-check-item .drre-icon { flex-shrink: 0; margin-top: 2px; }
.service-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.service-single-faq { max-width: none; }
.resources-intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.resources-intro-grid p { font-size: 0.93rem; color: var(--gray); line-height: 1.8; margin-bottom: 14px; }
.text-link { color: var(--accent); font-weight: 600; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.payment-card { background: var(--off-white); border-radius: 18px; padding: 32px; border: 1.5px solid rgba(26,43,74,0.08); }
.payment-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.payment-card h3 .drre-icon { stroke: var(--accent); }
.payment-methods { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.payment-method { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: white; border-radius: 8px; font-size: 0.88rem; color: var(--navy); font-weight: 500; border: 1px solid rgba(26,43,74,0.07); }
.payment-method .drre-icon { width: 16px; height: 16px; stroke: var(--accent); flex-shrink: 0; }
.payment-note { display: flex; gap: 8px; align-items: flex-start; font-size: 0.8rem; color: var(--gray); line-height: 1.6; margin: 0; padding-top: 14px; border-top: 1px solid rgba(26,43,74,0.07); }
.payment-note .drre-icon { width: 14px; height: 14px; stroke: var(--gray); flex-shrink: 0; margin-top: 2px; }

.insurance-note { display: flex; gap: 12px; align-items: flex-start; background: rgba(79,111,232,0.06); border-radius: 12px; padding: 18px 20px; margin-bottom: 32px; border: 1px solid rgba(79,111,232,0.12); }
.insurance-note .drre-icon { width: 18px; height: 18px; stroke: var(--accent); flex-shrink: 0; margin-top: 2px; }
.insurance-note p { font-size: 0.87rem; color: var(--navy); line-height: 1.7; margin: 0; }

.resources-subheading { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 20px; }
.insurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.insurance-badge { display: flex; align-items: center; gap: 10px; background: white; border-radius: 10px; padding: 14px 16px; font-size: 0.88rem; font-weight: 600; color: var(--navy); border: 1.5px solid rgba(26,43,74,0.08); transition: all var(--transition); }
.insurance-badge:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.insurance-badge .drre-icon { width: 16px; height: 16px; stroke: var(--accent); flex-shrink: 0; }

.forms-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.form-card { display: flex; align-items: center; gap: 16px; background: var(--off-white); border-radius: 12px; padding: 18px 20px; border: 1.5px solid rgba(26,43,74,0.07); transition: all var(--transition); }
.form-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.form-card-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(79,111,232,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-card-icon .drre-icon { width: 20px; height: 20px; color: var(--accent); }
.form-card-content { flex: 1; }
.form-card-content h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.form-card-content p  { font-size: 0.82rem; color: var(--gray); margin: 0; }
.form-card-btn { display: flex; align-items: center; gap: 6px; background: white; border: 1.5px solid rgba(26,43,74,0.15); border-radius: 8px; padding: 8px 14px; font-size: 0.82rem; font-weight: 600; color: var(--navy); cursor: pointer; flex-shrink: 0; transition: all var(--transition); }
.form-card-btn:hover { border-color: var(--accent); color: var(--accent); }
.form-card-btn .drre-icon { width: 14px; height: 14px; }

.forms-note { display: flex; gap: 10px; align-items: flex-start; margin-top: 24px; padding: 16px 20px; background: rgba(79,111,232,0.05); border-radius: 10px; border: 1px solid rgba(79,111,232,0.1); }
.forms-note .drre-icon { width: 18px; height: 18px; stroke: var(--accent); flex-shrink: 0; margin-top: 2px; }
.forms-note p { font-size: 0.87rem; color: var(--navy); margin: 0; line-height: 1.6; }

.first-visit-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.first-visit-step { background: white; border-radius: 14px; padding: 28px 22px; border: 1.5px solid rgba(26,43,74,0.08); box-shadow: 0 2px 12px rgba(26,43,74,0.05); }
.first-visit-num { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: white; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.first-visit-icon { margin-bottom: 10px; }
.first-visit-icon .drre-icon { width: 20px; height: 20px; color: var(--accent); }
.first-visit-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.first-visit-step p  { font-size: 0.83rem; color: var(--gray); line-height: 1.65; }

/* ── FINANCING CALCULATOR ─────────────────────────────────────────── */
.financing-calc { background: white; border-radius: 16px; padding: 24px; border: 1.5px solid rgba(26,43,74,0.08); box-shadow: 0 4px 24px rgba(26,43,74,0.07); }
.financing-calc-header { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(26,43,74,0.07); }
.financing-calc-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(79,111,232,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.financing-calc-icon .drre-icon { width: 20px; height: 20px; color: var(--accent); }
.financing-calc-header h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 2px; }
.financing-calc-header p { font-size: 0.78rem; color: var(--gray); line-height: 1.4; margin: 0; }
.financing-input-wrap { margin-bottom: 18px; }
.financing-input-label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.financing-input-row { display: flex; align-items: center; border: 2px solid rgba(26,43,74,0.15); border-radius: 8px; overflow: hidden; transition: border-color var(--transition); }
.financing-input-row:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,111,232,0.1); }
.financing-dollar { padding: 0 12px; font-size: 1rem; font-weight: 700; color: var(--navy); background: var(--off-white); border-right: 2px solid rgba(26,43,74,0.1); height: 44px; display: flex; align-items: center; }
.financing-input { flex: 1; border: none; outline: none; padding: 0 12px; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); background: white; height: 44px; }
.financing-input-hint { font-size: 0.74rem; color: var(--gray); margin-top: 4px; }
.financing-plans { min-height: 60px; }
.financing-placeholder, .financing-none { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--gray); font-style: italic; padding: 12px 0; }
.financing-plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.financing-plan { background: var(--off-white); border-radius: 10px; padding: 12px 10px; border: 1.5px solid rgba(26,43,74,0.07); text-align: center; position: relative; transition: all var(--transition); }
.financing-plan:hover { border-color: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow); }
.financing-plan--popular { border-color: var(--accent); background: rgba(79,111,232,0.04); }
.financing-popular-badge { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 2px 8px; border-radius: 100px; white-space: nowrap; }
.financing-plan-amount { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 2px; }
.financing-plan-amount span { font-size: 0.75rem; font-weight: 400; color: var(--gray); }
.financing-plan-term  { font-size: 0.72rem; color: var(--gray); margin-bottom: 4px; }
.financing-plan-type  { font-size: 0.65rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.financing-plan-total { font-size: 0.68rem; color: var(--gray); }
.financing-est-note   { font-size: 0.72rem; color: var(--gray); font-style: italic; }
.financing-disclaimer { display: flex; gap: 8px; align-items: flex-start; background: var(--warning-bg); border: 1px solid var(--warning-border); border-radius: 8px; padding: 10px 12px; margin-top: 14px; margin-bottom: 14px; }
.financing-disclaimer .drre-icon { width: 13px; height: 13px; color: var(--warning-icon); flex-shrink: 0; margin-top: 2px; }
.financing-disclaimer p { font-size: 0.73rem; color: var(--warning-text); line-height: 1.55; margin: 0 0 4px; }
.financing-official-link { font-size: 0.73rem; color: var(--accent); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 3px; }
.financing-official-link:hover { text-decoration: underline; }
.financing-official-link .drre-icon { width: 10px; height: 10px; }
.financing-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.financing-apply-btn, .financing-book-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; padding: 11px 18px; }
.financing-apply-btn .drre-icon, .financing-book-btn .drre-icon { width: 14px; height: 14px; }
.section-financing { padding: 88px 0; background: white; }
.section-financing-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.section-financing-text .section-desc { margin-bottom: 24px; }
.financing-badges { display: flex; flex-direction: column; gap: 10px; }
.financing-badge-item { display: flex; align-items: center; gap: 8px; font-size: 0.87rem; font-weight: 500; color: var(--navy); }
.financing-badge-item .drre-icon { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════════════
   CTA BANNER — replace existing .cta-section rules in pages.css
   ════════════════════════════════════════════════════════════════════ */

.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative ring — pure CSS, no image */
.cta-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: rgba(79,111,232,0.10);
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 10%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(79,111,232,0.06);
    pointer-events: none;
}

/* Constrain to same width as all other sections */
.cta-inner {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 8%;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── LEFT: content ─────────────────────────────────────────────────── */
.cta-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.85);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
}
.cta-label .drre-icon { stroke: rgba(255,255,255,0.7); }

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 18px;
}

.cta-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 32px;
}

.cta-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
}
.cta-trust-item .drre-icon {
    stroke: var(--accent);
    flex-shrink: 0;
}

/* ── RIGHT: action card ────────────────────────────────────────────── */
.cta-card {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 20px 60px rgba(10,18,34,0.25);
}

.cta-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(26,43,74,0.08);
}

.cta-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(79,111,232,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cta-card-icon .drre-icon { stroke: var(--accent); }

.cta-card-header strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}
.cta-card-header span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Primary CTA button — full width inside card */
.btn-cta-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 6px 20px rgba(79,111,232,0.30);
}
.btn-cta-primary:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(79,111,232,0.40);
}
.btn-cta-primary:active { transform: translateY(0); }
.btn-cta-primary .drre-icon { stroke: white; flex-shrink: 0; }

/* Divider */
.cta-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: 0.78rem;
    font-weight: 500;
}
.cta-divider::before,
.cta-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(26,43,74,0.10);
}

/* Phone link */
.cta-phone-link {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--off-white);
    border: 1.5px solid rgba(26,43,74,0.09);
    border-radius: 12px;
    padding: 14px 18px;
    text-decoration: none;
    transition: all var(--transition);
}
.cta-phone-link:hover {
    border-color: var(--accent);
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(79,111,232,0.10);
}
.cta-phone-link .drre-icon { stroke: var(--accent); flex-shrink: 0; }
.cta-phone-link strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}
.cta-phone-link span {
    font-size: 0.76rem;
    color: var(--gray);
}

/* Address + hours row */
.cta-detail-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
    border-top: 1px solid rgba(26,43,74,0.07);
}
.cta-detail {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.5;
}
.cta-detail .drre-icon { stroke: var(--gray); flex-shrink: 0; margin-top: 1px; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .cta-card {
        max-width: 480px;
    }
    .cta-title { font-size: clamp(1.9rem, 5vw, 2.6rem); }
}

@media (max-width: 600px) {
    .cta-section { padding: 64px 0; }
    .cta-trust-row { gap: 14px; }
    .cta-card { padding: 24px 20px; }
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .services-detail-grid   { grid-template-columns: 1fr 1fr; }
    .awards-grid            { grid-template-columns: 1fr 1fr; }
    .team-grid              { grid-template-columns: repeat(3, 1fr); }
    .team-grid--rich        { grid-template-columns: repeat(3, 1fr); }
    .membership-grid        { grid-template-columns: repeat(2, 1fr); }
    .botox-intro-grid       { grid-template-columns: 1fr; }
    .botox-benefit-grid     { grid-template-columns: 1fr 1fr; }
    .botox-candidate-inner  { grid-template-columns: 1fr; gap: 36px; }
    .botox-local-inner      { grid-template-columns: 1fr; gap: 36px; }
    .botox-treatment-grid   { grid-template-columns: 1fr 1fr; }
    .expect-steps           { grid-template-columns: 1fr 1fr; }
    .resources-intro-grid   { grid-template-columns: 1fr; }
    .service-single-grid,
    .service-single-split   { grid-template-columns: 1fr; gap: 36px; }
    .service-single-benefits,
    .service-process-grid   { grid-template-columns: 1fr; }
    .section-financing-inner { grid-template-columns: 1fr; }
    .about-press-inner      { grid-template-columns: 1fr; gap: 36px; }
    .cta-section-inner      { grid-template-columns: 1fr; gap: 28px; }
    .cta-section-action     { flex-direction: row; flex-wrap: wrap; }

    /* Sleep therapy */
    .sleep-signs-inner      { grid-template-columns: 1fr; gap: 48px; }
    .sleep-cons-grid        { grid-template-columns: 1fr 1fr; }
    .sleep-cpap-inner       { grid-template-columns: 1fr; gap: 40px; }
    .sleep-compare-header,
    .sleep-compare-row      { grid-template-columns: 140px 1fr 1fr; }
    .sleep-insurance-inner  { padding: 36px 32px; }
    .sleep-hst-inner        { width: calc(100% - 10%); padding: 40px; }
    .sleep-stats-grid       { grid-template-columns: 1fr 1fr; }
    .sleep-faq-inner        { grid-template-columns: 1fr; }
    .sleep-faq-header       { position: static; }

    /* Photo row: stack at tablet */
    .about-photo-row        { grid-template-columns: 1fr; align-items: unset; }
    .about-bio-photo        { max-width: 360px; min-height: 280px; }
    .about-bio-photo img    { height: 280px; min-height: unset; }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 52px 0 48px;
    }
    .page-hero-inner,
    .hp-inner,
    .section-inner {
        padding-left: 6%;
        padding-right: 6%;
    }
    .page-hero-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
        overflow-wrap: anywhere;
    }
    .page-hero-desc,
    .section-desc,
    .section-intro-body {
        max-width: 100%;
    }
    .sleep-compare-table {
        overflow-x: auto;
    }
    .service-card,
    .why-card,
    .review-card,
    .service-review-card,
    .botox-treatment-card,
    .botox-benefit-card {
        min-width: 0;
    }
    .book-modal-panel       { padding: 32px 24px; }
    .book-form-row          { grid-template-columns: 1fr; }
    .services-detail-grid   { grid-template-columns: 1fr; }

    .botox-treatment-grid   { grid-template-columns: 1fr; }
    .filler-products        { grid-template-columns: 1fr; }
    .botox-benefit-grid     { grid-template-columns: 1fr; }
    .expect-steps           { grid-template-columns: 1fr 1fr; }
    .botox-intro-cards      { grid-template-columns: 1fr 1fr; }
    .process-arrow          { display: none; }
    .process-steps          { flex-direction: column; }
    .specialty-card         { flex-direction: column; }

    /* Sleep therapy */
    .sleep-hero             { padding: 52px 0 48px; }
    .sleep-hero-stats       { flex-direction: column; max-width: 100%; }
    .sleep-hero-stat        { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px; }
    .sleep-hero-stat:last-child { border-bottom: none; }
    .sleep-signs-grid       { grid-template-columns: 1fr; }
    .sleep-cons-grid        { grid-template-columns: 1fr; }
    .sleep-cpap-callout     { margin-top: 0; }
    .sleep-mid-cta-inner    { flex-direction: column; text-align: center; align-items: center; gap: 20px; }
    .sleep-compare-header,
    .sleep-compare-row      { grid-template-columns: 100px 1fr 1fr; font-size: 0.8rem; }
    .compare-row-good,
    .compare-row-bad,
    .compare-row-label      { padding: 12px 14px; }
    .sleep-insurance-inner  { flex-direction: column; padding: 28px 24px; }
    .sleep-stats-grid       { grid-template-columns: 1fr 1fr; }
    .ess-option             { padding: 14px 16px; gap: 12px; }
    .ess-opt-sub            { display: none; }
    .ess-result-actions     { flex-direction: column; }
    .sleep-hst-inner        { width: calc(100% - 8%); padding: 32px 24px; }
    .sleep-ins-points       { grid-template-columns: 1fr; }

    /* About */
    .about-photo-row        { grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
    .about-bio-photo        { max-width: 100%; }
    .about-bio-photo img    { height: 300px; border-radius: 14px; }
    .about-photo-badges     { flex-direction: column; }
    .about-photo-badges > * { flex: unset; }

    .approach-features      { grid-template-columns: 1fr; }
    .credentials-edu        { grid-template-columns: 1fr; }
    .membership-grid        { grid-template-columns: 1fr 1fr; }
    .team-grid              { grid-template-columns: 1fr 1fr; }
    .team-grid--rich        { grid-template-columns: 1fr 1fr; }
    .team-cta-block         { grid-template-columns: 1fr; gap: 28px; padding: 28px 22px; }
    .reviews-grid           { grid-template-columns: 1fr; }
    .about-press-inner      { grid-template-columns: 1fr; }
    .office-info-grid       { grid-template-columns: 1fr 1fr; }
    .office-detail-cards    { grid-template-columns: 1fr; }
    .office-highlights-grid { grid-template-columns: 1fr; }
    .map-embed-wrap         { height: 280px; }

    .insurance-grid         { grid-template-columns: 1fr 1fr; }
    .first-visit-steps      { grid-template-columns: 1fr 1fr; }
    .form-card              { flex-wrap: wrap; }
    .form-card-btn          { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .page-hero-inner,
    .hp-inner,
    .section-inner {
        padding-left: 5%;
        padding-right: 5%;
    }
    .expect-steps           { grid-template-columns: 1fr; }
    .botox-intro-cards      { grid-template-columns: 1fr; }
    .about-stats            { grid-template-columns: 1fr 1fr; }
    .membership-grid        { grid-template-columns: 1fr 1fr; }
    .team-grid              { grid-template-columns: 1fr 1fr; }
    .team-grid--rich        { grid-template-columns: 1fr; }
    .team-cta-contact       { flex-direction: column; align-items: flex-start; }
    .first-visit-steps      { grid-template-columns: 1fr; }
    .insurance-grid         { grid-template-columns: 1fr; }
    .financing-plans-grid   { grid-template-columns: 1fr 1fr; }
    .financing-cta          { flex-direction: column; }
    .financing-apply-btn,
    .financing-book-btn     { width: 100%; justify-content: center; }
    .office-info-grid       { grid-template-columns: 1fr; }
    .cta-section-inner      { grid-template-columns: 1fr; }

    /* Sleep therapy */
    .sleep-compare-header   { display: none; }
    .sleep-compare-row      { grid-template-columns: 1fr; }
    .compare-row-label      { background: var(--navy); color: white; border-radius: 0; padding: 8px 14px; font-size: 0.75rem; }
    .compare-row-good,
    .compare-row-bad        { border-right: none; }
    .sleep-hero-actions     { flex-direction: column; align-items: flex-start; }
    .sleep-stats-grid       { grid-template-columns: 1fr; }
    .ess-card               { border-radius: 14px; }
    .ess-card-head          { padding: 16px 20px; }
    .ess-question-body      { padding: 24px 20px; }
    .ess-option             { padding: 12px 14px; gap: 10px; }
    .ess-result-actions     { flex-direction: column; }
    .ess-result-actions .btn-primary,
    .ess-result-actions .btn-secondary { width: 100%; justify-content: center; }
}


/* ══════════════════════════════════════════════════════════════════
   SERVICE SINGLE — CONTENT + SIDEBAR LAYOUT
   ══════════════════════════════════════════════════════════════════ */

.service-body-section { padding: 88px 0; background: white; }

.service-body-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
}

/* ── Entry content typography ── */
.service-body-content.entry-content { min-width: 0; }

.service-body-content.entry-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.25;
    margin: 40px 0 14px;
}
.service-body-content.entry-content h2:first-child { margin-top: 0; }

.service-body-content.entry-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 700;
    margin: 32px 0 10px;
}

.service-body-content.entry-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 24px 0 8px;
}

.service-body-content.entry-content p {
    font-size: 0.97rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-body-content.entry-content ul,
.service-body-content.entry-content ol {
    padding-left: 22px;
    margin-bottom: 20px;
}

.service-body-content.entry-content li {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 6px;
}

.service-body-content.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--card-radius);
    margin: 24px 0;
}

.service-body-content.entry-content a {
    color: var(--accent);
    text-decoration: underline;
}

.service-body-content.entry-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    margin: 24px 0;
    background: rgba(79,111,232,0.04);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--navy);
}

/* ── Sidebar ── */
.service-body-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-sidebar-cta {
    background: white;
    border: 1.5px solid rgba(26,43,74,0.09);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(26,43,74,0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-sidebar-cta-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(26,43,74,0.07);
}
.service-sidebar-cta-header .drre-icon { stroke: var(--accent); flex-shrink: 0; margin-top: 2px; }
.service-sidebar-cta-header strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.service-sidebar-cta-header span   { font-size: 0.78rem; color: var(--gray); }

.service-sidebar-btn { width: 100%; justify-content: center; gap: 8px; }

.service-sidebar-divider {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.76rem; color: var(--gray);
}
.service-sidebar-divider::before,
.service-sidebar-divider::after {
    content: ''; flex: 1; height: 1px;
    background: rgba(26,43,74,0.09);
}

.service-sidebar-phone {
    display: flex; align-items: center; gap: 12px;
    background: var(--off-white); border: 1.5px solid rgba(26,43,74,0.08);
    border-radius: 10px; padding: 12px 14px;
    text-decoration: none; transition: all var(--transition);
}
.service-sidebar-phone:hover { border-color: var(--accent); background: white; transform: translateY(-1px); box-shadow: var(--shadow); }
.service-sidebar-phone .drre-icon { stroke: var(--accent); flex-shrink: 0; }
.service-sidebar-phone strong { display: block; font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.service-sidebar-phone span   { font-size: 0.74rem; color: var(--gray); }

/* Trust items */
.service-sidebar-trust {
    background: var(--off-white);
    border-radius: 12px; padding: 16px 18px;
    display: flex; flex-direction: column; gap: 10px;
}
.service-trust-item {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: 0.81rem; color: var(--navy); font-weight: 500; line-height: 1.45;
}
.service-trust-item .drre-icon { stroke: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* Other services */
.service-sidebar-other {
    background: white; border: 1.5px solid rgba(26,43,74,0.08);
    border-radius: 12px; padding: 18px 20px;
}
.service-sidebar-other-label {
    font-size: 0.72rem; font-weight: 700; color: var(--gray);
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px;
}
.service-sidebar-other ul {
    list-style: none; margin: 0 0 12px; padding: 0;
    display: flex; flex-direction: column; gap: 4px;
}
.service-sidebar-other ul li a {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.86rem; color: var(--navy); text-decoration: none;
    padding: 5px 0; transition: color var(--transition);
}
.service-sidebar-other ul li a .drre-icon { stroke: var(--accent); flex-shrink: 0; }
.service-sidebar-other ul li a:hover { color: var(--accent); }
.service-sidebar-all-link {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: var(--accent); text-decoration: none;
}
.service-sidebar-all-link:hover { text-decoration: underline; }

/* ── Service page reviews ── */
.service-reviews-section { padding: 88px 0; background: var(--off-white); }

.service-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-review-card {
    background: white; border-radius: var(--card-radius);
    border: 1.5px solid rgba(26,43,74,0.07);
    padding: 28px 24px;
    display: flex; flex-direction: column; gap: 12px;
    box-shadow: 0 2px 12px rgba(26,43,74,0.05);
}
.service-review-card .review-stars { color: var(--gold); font-size: 1rem; }
.service-review-card p { font-size: 0.9rem; color: var(--navy); line-height: 1.75; flex: 1; font-style: italic; }
.service-review-card .review-meta { display: flex; align-items: center; gap: 12px; }
.service-review-card .review-avatar { width: 38px; height: 38px; border-radius: 50%; color: white; font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-review-card .review-author { display: block; font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.service-review-card .review-source { display: block; font-size: 0.76rem; color: var(--gray); }


/* ══════════════════════════════════════════════════════════════════
   HOMEPAGE — SEO TEXT BLOCKS
   ══════════════════════════════════════════════════════════════════ */

.hp-seo-intro {
    background: var(--off-white);
    border-bottom: 1px solid rgba(26,43,74,0.06);
    padding: 28px 0;
}
.hp-seo-p {
    font-size: 0.97rem;
    color: var(--gray);
    line-height: 1.85;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.hp-services-seo {
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(26,43,74,0.07);
}
.hp-services-seo p {
    font-size: 0.95rem; color: var(--gray); line-height: 1.85;
    max-width: 920px; margin: 0 0 16px;
}

.hp-why-seo {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(26,43,74,0.07);
}
.hp-why-seo p {
    font-size: 0.95rem; color: var(--gray); line-height: 1.85;
    max-width: 780px; margin: 0 auto; text-align: center;
}

.hp-office-seo {
    margin-top: 36px;
    padding: 28px 32px;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid rgba(26,43,74,0.07);
}
.hp-office-seo p {
    font-size: 0.93rem; color: var(--gray); line-height: 1.85; margin: 0;
}


/* ══════════════════════════════════════════════════════════════════
   HOMEPAGE BLOG SECTION
   ══════════════════════════════════════════════════════════════════ */

.hp-blog-section { padding: 88px 0; background: white; }

.hp-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}
.hp-blog-all-btn { flex-shrink: 0; }

.hp-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hp-blog-card {
    background: white;
    border-radius: var(--card-radius);
    border: 1.5px solid rgba(26,43,74,0.07);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}
.hp-blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.hp-blog-card-img-link { display: block; }
.hp-blog-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--off-white);
    transition: transform 0.4s ease;
}
.hp-blog-card:hover .hp-blog-card-img { transform: scale(1.03); }
.hp-blog-card-img--placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex; align-items: center; justify-content: center;
}
.hp-blog-card-img-link { overflow: hidden; display: block; }

.hp-blog-card-body { padding: 24px; }

.hp-blog-card-meta {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 12px;
}
.hp-blog-cat {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--accent);
    background: rgba(79,111,232,0.08); padding: 3px 10px; border-radius: 100px;
}
.hp-blog-date { font-size: 0.76rem; color: var(--gray); }

.hp-blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700; color: var(--navy);
    line-height: 1.35; margin-bottom: 10px;
}
.hp-blog-card-title a { text-decoration: none; color: inherit; transition: color var(--transition); }
.hp-blog-card-title a:hover { color: var(--accent); }

.hp-blog-card-excerpt { font-size: 0.87rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }

.hp-blog-read-more {
    font-size: 0.84rem; font-weight: 700; color: var(--accent);
    text-decoration: none; transition: gap var(--transition);
}
.hp-blog-read-more:hover { text-decoration: underline; }


/* ══════════════════════════════════════════════════════════════════
   BLOG PAGE — FULL ARCHIVE
   ══════════════════════════════════════════════════════════════════ */

.blog-section { padding: 88px 0; background: white; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: white;
    border-radius: var(--card-radius);
    border: 1.5px solid rgba(26,43,74,0.07);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.blog-card-img-link { display: block; overflow: hidden; }
.blog-card-img {
    height: 210px;
    background-size: cover; background-position: center;
    background-color: var(--off-white);
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.03); }
.blog-card-img--placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.blog-card-body { padding: 24px 22px; }

.blog-card-meta {
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.blog-cat {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--accent);
    background: rgba(79,111,232,0.08); padding: 3px 10px; border-radius: 100px;
}
.blog-date { font-size: 0.76rem; color: var(--gray); }

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700; color: var(--navy);
    line-height: 1.35; margin-bottom: 10px;
}
.blog-card-title a { text-decoration: none; color: inherit; transition: color var(--transition); }
.blog-card-title a:hover { color: var(--accent); }

.blog-card-excerpt { font-size: 0.87rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }

.blog-read-more {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.84rem; font-weight: 700; color: var(--accent);
    text-decoration: none;
}
.blog-read-more:hover { text-decoration: underline; }
.blog-read-more .drre-icon { stroke: var(--accent); }

.blog-pagination {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 56px; flex-wrap: wrap;
}
.blog-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 8px;
    font-size: 0.9rem; font-weight: 600; color: var(--navy);
    border: 1.5px solid rgba(26,43,74,0.12); text-decoration: none;
    transition: all var(--transition);
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--accent); color: white; border-color: var(--accent);
}
.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    width: auto; padding: 0 16px;
}

.blog-empty { text-align: center; padding: 60px 0; }
.blog-empty p { font-size: 1rem; color: var(--gray); margin-bottom: 20px; }


/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — NEW ADDITIONS
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .service-body-wrap     { grid-template-columns: 1fr 300px; gap: 40px; }
    .hp-blog-grid          { grid-template-columns: 1fr 1fr; }
    .blog-grid             { grid-template-columns: 1fr 1fr; }
    .service-reviews-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .service-body-wrap     { grid-template-columns: 1fr; }
    .service-body-sidebar  { position: static; }
    .service-reviews-grid  { grid-template-columns: 1fr; }
    .hp-blog-grid          { grid-template-columns: 1fr; }
    .blog-grid             { grid-template-columns: 1fr; }
    .hp-blog-header        { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hp-blog-all-btn       { width: 100%; text-align: center; justify-content: center; }
}

@media (max-width: 600px) {
    .service-body-section  { padding: 60px 0; }
    .service-reviews-section { padding: 60px 0; }
    .hp-blog-section       { padding: 60px 0; }
    .blog-section          { padding: 60px 0; }
}


/* ══════════════════════════════════════════════════════════════════
   HERO — ACCEPTING NEW PATIENTS BADGE + SERVE LINE
   ══════════════════════════════════════════════════════════════════ */

.hero-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 0;
    border-top: 0;
}

.hero-serve-line {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    font-size: 0.8rem;
    color: var(--navy);
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(26,43,74,0.08);
    border-radius: 100px;
    padding: 8px 13px;
    letter-spacing: 0.01em;
    line-height: 1.45;
    box-shadow: 0 10px 26px rgba(26,43,74,0.08);
}


/* ══════════════════════════════════════════════════════════════════
   SERVICES — INTRO BODY PARAGRAPH + FIRST VISIT CALLOUT
   ══════════════════════════════════════════════════════════════════ */

.section-intro-body {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 900px;
    margin-bottom: 0;
}

.hp-first-visit-callout {
    margin-top: 52px;
    background: var(--off-white);
    border: 1.5px solid rgba(26,43,74,0.07);
    border-radius: 16px;
    padding: 36px 40px;
}

.hp-fv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.hp-fv-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--accent);
    margin-bottom: 6px;
}

.hp-fv-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
}

.hp-fv-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hp-fv-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.hp-fv-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-fv-step strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.hp-fv-step p {
    font-size: 0.84rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}


/* ══════════════════════════════════════════════════════════════════
   SECTION — LEFT-ALIGN OVERRIDE (removes center modifier effects)
   ══════════════════════════════════════════════════════════════════ */

/* Ensure section-header is always left-aligned by default */
.section-header {
    max-width: 760px;
    text-align: left;
}

.section-header .section-desc {
    margin-left: 0;
    margin-right: 0;
}


/* ══════════════════════════════════════════════════════════════════
   REVIEW PLATFORM BADGES — PALE BLUE BACKGROUND VARIANT
   ══════════════════════════════════════════════════════════════════ */

.section-reviews .review-platform-badge {
    background: white;
}

.section-reviews .hp-review-card {
    background: white;
}


/* ══════════════════════════════════════════════════════════════════
   WHY SECTION — SEO TEXT BLOCK
   ══════════════════════════════════════════════════════════════════ */

.hp-why-seo {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(26,43,74,0.07);
}

.hp-why-seo p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.85;
    max-width: 760px;
    margin: 0;
}


/* ══════════════════════════════════════════════════════════════════
   OFFICE SECTION — SEO PARAGRAPH
   ══════════════════════════════════════════════════════════════════ */

.hp-office-seo p {
    font-size: 0.93rem;
    color: var(--navy);
    line-height: 1.85;
    margin: 0;
    opacity: 0.8;
}


/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — META BAR + FIRST VISIT
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .hp-fv-steps      { grid-template-columns: 1fr; gap: 20px; }
    .hp-first-visit-callout { padding: 28px 24px; }
    .hp-fv-header     { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero-meta-bar    { flex-direction: column; align-items: flex-start; gap: 10px; }
}


/* ══════════════════════════════════════════════════════════════════
   SINGLE SERVICE — BREADCRUMB
   ══════════════════════════════════════════════════════════════════ */

.service-breadcrumb {
    background: var(--off-white);
    border-bottom: 1px solid rgba(26,43,74,0.07);
    padding: 12px 0;
}
.service-breadcrumb nav {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: var(--gray);
}
.service-breadcrumb a {
    color: var(--accent); text-decoration: none;
}
.service-breadcrumb a:hover { text-decoration: underline; }
.service-breadcrumb span[aria-hidden] { color: var(--gray); opacity: 0.5; }
.service-breadcrumb span[aria-current] { color: var(--navy); font-weight: 500; }


/* ══════════════════════════════════════════════════════════════════
   SINGLE SERVICE — SIDEBAR LOCATION CARD
   ══════════════════════════════════════════════════════════════════ */

.service-sidebar-location {
    background: white;
    border: 1px solid rgba(26,43,74,0.10);
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}
.service-sidebar-location-title {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 700;
    color: var(--navy); text-transform: uppercase;
    letter-spacing: 0.06em; margin-bottom: 14px;
}
.service-sidebar-location-title svg { color: var(--accent); flex-shrink: 0; }
.service-sidebar-loc-row {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 0;
    border-top: 1px solid rgba(26,43,74,0.06);
}
.service-sidebar-loc-row svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.service-sidebar-loc-row > div {
    display: flex; flex-direction: column; gap: 2px;
}
.service-sidebar-loc-row strong {
    font-size: 0.78rem; font-weight: 700;
    color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em;
}
.service-sidebar-loc-row address,
.service-sidebar-loc-row span {
    font-size: 0.88rem; color: var(--gray);
    font-style: normal; line-height: 1.5;
}
.service-sidebar-loc-row a {
    font-size: 0.88rem; color: var(--accent); text-decoration: none;
}
.service-sidebar-loc-row a:hover { text-decoration: underline; }

.service-sidebar-directions {
    display: flex; align-items: center; gap: 7px;
    margin-top: 14px; padding: 9px 14px;
    background: var(--off-white);
    border: 1px solid rgba(26,43,74,0.10);
    border-radius: 8px;
    font-size: 0.83rem; font-weight: 600;
    color: var(--navy); text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease;
}
.service-sidebar-directions:hover {
    background: rgba(79,111,232,0.06);
    border-color: var(--accent);
    color: var(--accent);
}
.service-sidebar-directions svg { color: var(--accent); }


/* ══════════════════════════════════════════════════════════════════
   SINGLE SERVICE — LOCATION STRIP
   ══════════════════════════════════════════════════════════════════ */

.service-location-strip {
    background: var(--navy);
    color: white;
    padding: 28px 0;
}
.service-location-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.service-loc-info {
    display: flex; align-items: flex-start; gap: 12px;
}
.service-loc-info svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.service-loc-info strong {
    display: block;
    font-size: 1rem; font-weight: 700; color: white; margin-bottom: 4px;
}
.service-loc-info span {
    font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.5;
}
.service-loc-actions {
    display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.service-loc-btn {
    padding: 11px 20px;
    font-size: 0.88rem;
    display: flex; align-items: center; gap: 7px;
    white-space: nowrap;
}
.service-location-strip .btn-secondary {
    border-color: rgba(255,255,255,0.35);
    color: white;
    background: transparent;
}
.service-location-strip .btn-secondary:hover {
    background: rgba(255,255,255,0.10);
    border-color: white;
}


/* ══════════════════════════════════════════════════════════════════
   SINGLE SERVICE — RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
    .service-location-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .service-loc-actions { width: 100%; }
    .service-loc-btn { flex: 1; justify-content: center; }
}

@media (max-width: 600px) {
    .service-loc-actions { flex-direction: column; }
    .service-loc-btn { width: 100%; }
    .service-breadcrumb nav { flex-wrap: wrap; }
}


/* ════════════════════════════════════════════════════════════════════
   PAGE HERO — ACTIONS + TRUST BADGES (updated template-parts/page-hero.php)
   ════════════════════════════════════════════════════════════════════ */

.page-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.page-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-color: rgba(255,255,255,0.4);
    color: white;
    background: transparent;
}
.page-hero-phone:hover {
    background: rgba(255,255,255,0.12);
    border-color: white;
    color: white;
}
.page-hero-phone .drre-icon { stroke: rgba(255,255,255,0.75); }

.page-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.page-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    padding: 7px 13px;
    border-radius: 100px;
}
.page-hero-trust-item .drre-icon { stroke: rgba(255,255,255,0.65); flex-shrink: 0; }

.hero-badge { margin-bottom: 16px; }

@media (max-width: 600px) {
    .page-hero-actions { flex-direction: column; align-items: flex-start; }
    .page-hero-phone   { width: 100%; justify-content: center; }
}


/* ════════════════════════════════════════════════════════════════════
   SERVICES PAGE — NAV, INTRO, TRUST, OVERVIEW
   ════════════════════════════════════════════════════════════════════ */

.services-quick-nav-bar {
    padding: 18px 0;
    background: white;
    border-bottom: 1px solid rgba(26,43,74,0.08);
    position: sticky;
    top: var(--header-h);
    z-index: 20;
}

.services-quick-nav-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.services-quick-nav-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.services-quick-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.services-intro-section {
    padding: 48px 0;
    background: white;
    border-bottom: 1px solid rgba(26,43,74,0.07);
}

.services-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.services-intro-text p {
    font-size: 0.97rem;
    color: var(--gray);
    line-height: 1.85;
    max-width: 860px;
    margin-bottom: 12px;
}
.services-intro-text p:last-child { margin-bottom: 0; }
.services-intro-text a { color: var(--accent); font-weight: 600; text-decoration: none; }
.services-intro-text a:hover { text-decoration: underline; }

.services-intro-card {
    background: linear-gradient(180deg, #f7f9fd 0%, #eef3fb 100%);
    border: 1px solid rgba(79,111,232,0.14);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

.services-intro-card-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.services-intro-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 12px;
}

.services-intro-card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 20px;
}

.services-intro-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services-intro-card-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1.5px solid rgba(26,43,74,0.12);
    background: white;
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
}

.services-intro-card-phone:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.services-intro-card-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-intro-card-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.services-intro-card-list .drre-icon {
    stroke: var(--green-brand);
    flex-shrink: 0;
}

.services-nav-chip {
    display: inline-flex;
    align-items: center;
    background: rgba(79,111,232,0.07);
    color: var(--accent);
    font-size: 0.83rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
    text-decoration: none;
    border: 1.5px solid rgba(79,111,232,0.15);
    transition: all var(--transition);
}
.services-nav-chip:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.services-trust-section,
.services-overview-section,
.services-decision-section,
.services-restorative-section,
.services-posts-section {
    padding: 88px 0;
}

.services-trust-section {
    background: var(--navy);
}

.services-trust-section .section-label { color: rgba(255,255,255,0.55); }
.services-trust-section .section-label::before { background: rgba(255,255,255,0.25); }
.services-trust-section .section-title { color: white; }
.services-trust-section .section-desc {
    color: rgba(255,255,255,0.72);
    max-width: 700px;
}

.services-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.services-trust-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 24px 22px;
}

.services-trust-card .drre-icon {
    stroke: #7eb8f7;
    display: block;
    margin-bottom: 14px;
}

.services-trust-card strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.35;
}

.services-trust-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

.services-trust-card a {
    color: #7eb8f7;
    text-underline-offset: 3px;
}

.services-overview-section {
    background: white;
}

.services-overview-grid,
.services-decision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.services-overview-card,
.services-decision-card {
    background: white;
    border: 1.5px solid rgba(26,43,74,0.08);
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), border-color var(--transition);
}

.services-overview-card:hover,
.services-decision-card:hover {
    transform: translateY(-3px);
    border-color: rgba(79,111,232,0.25);
}

.services-overview-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(79,111,232,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.services-overview-icon .drre-icon {
    stroke: var(--accent);
}

.services-overview-card h3,
.services-decision-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    line-height: 1.35;
    color: var(--navy);
    margin-bottom: 12px;
}

.services-overview-card p,
.services-decision-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 16px;
}

.services-decision-section {
    background: var(--off-white);
}

.services-restorative-section {
    background: white;
}

.services-posts-section {
    background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.services-posts-grid {
    align-items: stretch;
}

.services-post-card {
    height: 100%;
}

.services-post-card-tag {
    background: rgba(79,111,232,0.12);
    border-radius: 999px;
    color: var(--accent);
    display: inline-flex;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.7rem;
    text-transform: uppercase;
}

.services-restorative-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 26px;
    align-items: start;
}

.services-restorative-content p {
    font-size: 0.95rem;
    line-height: 1.82;
    color: var(--gray);
    margin-bottom: 16px;
}

.services-restorative-content a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.services-restorative-content a:hover {
    text-decoration: underline;
}

.services-restorative-points {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.services-restorative-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
}

.services-restorative-points .drre-icon {
    stroke: var(--green-brand);
    flex-shrink: 0;
}

.services-restorative-panel {
    background: linear-gradient(180deg, #f7f9fd 0%, #eef3fb 100%);
    border: 1px solid rgba(79,111,232,0.14);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

.services-restorative-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.28rem;
    line-height: 1.3;
    color: var(--navy);
    margin-bottom: 18px;
}

.services-restorative-compare {
    display: grid;
    gap: 14px;
}

.services-restorative-item {
    background: white;
    border-radius: 14px;
    padding: 16px 16px 14px;
    border: 1px solid rgba(26,43,74,0.08);
}

.services-restorative-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.services-restorative-item p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--gray);
}

.services-restorative-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.services-specialty-copy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.services-specialty-copy-card {
    background: white;
    border: 1px solid rgba(26,43,74,0.08);
    border-radius: 18px;
    padding: 24px 24px 8px;
}

.services-specialty-copy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.12rem;
    line-height: 1.35;
    color: var(--navy);
    margin-bottom: 12px;
}

.services-specialty-copy-card p {
    font-size: 0.91rem;
    line-height: 1.78;
    color: var(--gray);
    margin-bottom: 16px;
}

.services-specialty-copy-card a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.services-specialty-copy-card a:hover {
    text-decoration: underline;
}


/* ════════════════════════════════════════════════════════════════════
   SERVICES PAGE — TREATMENT COMPARISON TABLE
   ════════════════════════════════════════════════════════════════════ */

.services-compare-section {
    padding: 88px 0;
    background: var(--off-white);
}

.services-compare-table {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    overflow-x: auto;
    margin: 40px 0 16px;
}

.services-compare-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 560px;
}

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

.services-compare-table thead th {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,0.68);
}
.services-compare-table thead th:first-child { color: white; }

.services-compare-table tbody tr {
    border-bottom: 1px solid rgba(26,43,74,0.07);
    transition: background var(--transition);
}
.services-compare-table tbody tr:last-child { border-bottom: none; }
.services-compare-table tbody tr:nth-child(even) { background: rgba(244,246,251,0.55); }
.services-compare-table tbody tr:hover { background: rgba(79,111,232,0.04); }

.services-compare-table td {
    padding: 14px 20px;
    font-size: 0.87rem;
    color: var(--gray);
    vertical-align: middle;
    line-height: 1.55;
}
.services-compare-table td:first-child { color: var(--navy); }
.services-compare-table td strong { font-weight: 700; }

.services-compare-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.65;
}
.services-compare-note .text-link { font-weight: 700; }


/* ════════════════════════════════════════════════════════════════════
   SERVICES PAGE — WHY CHOOSE DR. ELLIOTT
   ════════════════════════════════════════════════════════════════════ */

.services-why-section {
    padding: 88px 0;
    background: var(--navy);
}
.services-why-section .section-label { color: rgba(255,255,255,0.5); }
.services-why-section .section-label::before { background: rgba(255,255,255,0.25); }
.services-why-section .section-title { color: white; }
.services-why-section .section-desc  { color: rgba(255,255,255,0.68); max-width: 600px; }

.services-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.services-why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--card-radius);
    padding: 28px 24px;
    transition: border-color var(--transition), transform var(--transition);
}
.services-why-card:hover {
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}
.services-why-card .drre-icon { stroke: var(--accent); display: block; margin-bottom: 14px; }
.services-why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}
.services-why-card p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0;
}

.services-why-external {
    padding: 18px 24px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}
.services-why-external p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin: 0;
}
.services-why-external a { color: #7eb8f7; font-weight: 600; text-decoration: none; }
.services-why-external a:hover { text-decoration: underline; }


/* ════════════════════════════════════════════════════════════════════
   SERVICES PAGE — INSURANCE & FINANCING
   ════════════════════════════════════════════════════════════════════ */

.services-insurance-section {
    padding: 88px 0;
    background: var(--off-white);
}

.services-insurance-inner {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    background: white;
    border-radius: 20px;
    padding: 48px 52px;
    border: 1.5px solid rgba(26,43,74,0.07);
    box-shadow: var(--shadow);
}

.services-insurance-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(79,111,232,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.services-insurance-icon .drre-icon { width: 36px; height: 36px; color: var(--accent); }

.services-insurance-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}
.services-insurance-content p {
    font-size: 0.93rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 640px;
}

.services-insurance-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 4px;
}
.services-insurance-items span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--navy);
}
.services-insurance-items .drre-icon { stroke: var(--green-brand); flex-shrink: 0; }

.services-insurance-btn {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.services-insurance-btn .drre-icon { stroke: white; }


/* ════════════════════════════════════════════════════════════════════
   SERVICES PAGE — FAQ SECTION
   ════════════════════════════════════════════════════════════════════ */

.services-faq-section {
    padding: 88px 0;
    background: white;
}
.services-faq-section .section-desc a { color: var(--accent); font-weight: 600; text-decoration: none; }
.services-faq-section .section-desc a:hover { text-decoration: underline; }

/* ── Service page FAQ block (inside editor content) ──────────────── */
.service-faq-block {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(26,43,74,0.08);
}
.service-faq-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 24px;
}

/* ── Service sidebar insurance link ──────────────────────────────── */
.service-sidebar-insurance {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(79,111,232,0.05);
    border: 1.5px solid rgba(79,111,232,0.15);
    border-radius: 12px;
    padding: 14px 16px;
    text-decoration: none;
    transition: all var(--transition);
    margin-top: 4px;
}
.service-sidebar-insurance:hover {
    background: rgba(79,111,232,0.1);
    border-color: var(--accent);
}
.service-sidebar-insurance .drre-icon:first-child { stroke: var(--accent); flex-shrink: 0; }
.service-sidebar-insurance .drre-icon:last-child  { stroke: var(--accent); margin-left: auto; flex-shrink: 0; }
.service-sidebar-insurance strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.service-sidebar-insurance span   { font-size: 0.78rem; color: var(--gray); }

.service-reviews-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}


/* ════════════════════════════════════════════════════════════════════
   BLOG ARCHIVE — CATEGORY CHIPS
   ════════════════════════════════════════════════════════════════════ */

.blog-cats-section {
    background: var(--off-white);
    padding: 18px 0;
    border-bottom: 1px solid rgba(26,43,74,0.07);
}

.blog-cats-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.blog-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 100px;
    text-decoration: none;
    border: 1.5px solid rgba(26,43,74,0.12);
    transition: all var(--transition);
}
.blog-cat-chip:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.blog-cat-chip--active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}
.blog-cat-chip--active:hover { background: var(--blue); }

.blog-cat-count {
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(26,43,74,0.1);
    color: var(--gray);
    border-radius: 100px;
    padding: 1px 7px;
}
.blog-cat-chip--active .blog-cat-count {
    background: rgba(255,255,255,0.25);
    color: white;
}

/* ── Blog archive appointment CTA ────────────────────────────────── */
.blog-cta-section {
    padding: 72px 0;
    background: var(--off-white);
    border-top: 1px solid rgba(26,43,74,0.07);
}

.blog-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.blog-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}

.blog-cta-text .section-label { margin-bottom: 14px; }
.blog-cta-text p {
    font-size: 0.93rem;
    color: var(--gray);
    line-height: 1.75;
    max-width: 560px;
    margin: 0;
}

.blog-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}

.blog-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .blog-cta-inner { grid-template-columns: 1fr; gap: 28px; }
    .blog-cta-actions { flex-direction: row; min-width: 0; }
    .blog-cta-btn { flex: 1; }
}

@media (max-width: 600px) {
    .blog-cta-actions { flex-direction: column; }
    .blog-cta-btn { width: 100%; }
}


/* ════════════════════════════════════════════════════════════════════
   SINGLE BLOG POST — HERO
   ════════════════════════════════════════════════════════════════════ */

.post-hero {
    margin-top: var(--header-h);
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.post-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    pointer-events: none;
}

.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,18,40,0.88) 0%, rgba(26,43,74,0.80) 100%);
    pointer-events: none;
}

.post-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.post-hero-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7eb8f7;
    background: rgba(79,111,232,0.20);
    border: 1px solid rgba(79,111,232,0.35);
    border-radius: 100px;
    padding: 5px 14px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: background var(--transition);
}
.post-hero-cat:hover { background: rgba(79,111,232,0.35); }

.post-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: white;
    line-height: 1.18;
    margin-bottom: 16px;
}

.post-hero-desc {
    font-size: 1.04rem;
    color: rgba(255,255,255,0.76);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 680px;
}

.post-hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.52);
}

.post-hero-author { font-weight: 600; color: rgba(255,255,255,0.72); }


/* ════════════════════════════════════════════════════════════════════
   SINGLE BLOG POST — BREADCRUMB
   ════════════════════════════════════════════════════════════════════ */

.post-breadcrumb {
    background: var(--off-white);
    border-bottom: 1px solid rgba(26,43,74,0.06);
    padding: 12px 0;
}

.post-breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gray);
    flex-wrap: wrap;
}
.post-breadcrumb-list span[aria-hidden] { color: var(--gray); opacity: 0.45; }
.post-breadcrumb-list a { color: var(--accent); text-decoration: none; font-weight: 600; }
.post-breadcrumb-list a:hover { text-decoration: underline; }
.post-breadcrumb-list span[aria-current] { color: var(--navy); font-weight: 500; }


/* ════════════════════════════════════════════════════════════════════
   SINGLE BLOG POST — BODY + SIDEBAR
   ════════════════════════════════════════════════════════════════════ */

.post-body-section {
    padding: 72px 0 88px;
    background: white;
}

.post-body-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
}

/* ── Entry content typography ─────────────────────────────────────── */
.post-entry-content {
    font-size: 1.01rem;
    line-height: 1.85;
    color: var(--gray);
}
.post-entry-content h2,
.post-entry-content h3,
.post-entry-content h4 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin: 40px 0 14px;
    line-height: 1.3;
}
.post-entry-content h2 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
.post-entry-content h3 { font-size: 1.2rem; }
.post-entry-content h4 { font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.post-entry-content p  { margin-bottom: 18px; }
.post-entry-content a  { color: var(--accent); font-weight: 600; text-decoration: none; }
.post-entry-content a:hover { text-decoration: underline; }
.post-entry-content ul,
.post-entry-content ol { margin: 0 0 18px 22px; }
.post-entry-content li { margin-bottom: 8px; line-height: 1.72; }
.post-entry-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 14px 20px;
    background: var(--off-white);
    border-radius: 0 10px 10px 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--navy);
    font-size: 1.02rem;
    line-height: 1.75;
}
.post-entry-content img {
    border-radius: 12px;
    margin: 24px 0;
    max-width: 100%;
    height: auto;
}
.post-entry-content strong { color: var(--navy); }
.post-entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9rem;
}
.post-entry-content th,
.post-entry-content td {
    padding: 10px 14px;
    border: 1px solid rgba(26,43,74,0.1);
    text-align: left;
}
.post-entry-content th { background: var(--navy); color: white; font-weight: 700; }
.post-entry-content tr:nth-child(even) td { background: var(--off-white); }

/* ── Author box ───────────────────────────────────────────────────── */
.post-author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--off-white);
    border: 1.5px solid rgba(26,43,74,0.08);
    border-radius: 16px;
    padding: 28px 24px;
    margin-top: 52px;
}

.post-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(79,111,232,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(79,111,232,0.15);
}
.post-author-avatar .drre-icon { stroke: var(--accent); }

.post-author-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.post-author-bio {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 14px;
}
.post-author-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.post-author-links .text-link { font-size: 0.86rem; font-weight: 700; }

/* ── Post sidebar ─────────────────────────────────────────────────── */
.post-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.post-sidebar-cta {
    background: white;
    border: 1.5px solid rgba(26,43,74,0.09);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow);
}
.post-sidebar-cta-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(26,43,74,0.07);
}
.post-sidebar-cta-header .drre-icon { stroke: var(--accent); flex-shrink: 0; }
.post-sidebar-cta-header strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--navy); }
.post-sidebar-cta-header span   { font-size: 0.78rem; color: var(--gray); }

.post-sidebar-btn {
    width: 100%;
    justify-content: center;
    display: flex;
    padding: 13px;
    gap: 8px;
}
.post-sidebar-btn .drre-icon { stroke: white; }

.post-sidebar-services {
    background: var(--off-white);
    border-radius: 14px;
    padding: 18px 20px;
}
.post-sidebar-services-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    margin-bottom: 12px;
}
.post-sidebar-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.post-sidebar-services li a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.87rem;
    color: var(--navy);
    text-decoration: none;
    padding: 7px 8px;
    border-radius: 6px;
    transition: all var(--transition);
}
.post-sidebar-services li a:hover { background: white; color: var(--accent); }
.post-sidebar-services li a .drre-icon { stroke: var(--accent); flex-shrink: 0; }


/* ════════════════════════════════════════════════════════════════════
   SINGLE BLOG POST — RELATED POSTS
   ════════════════════════════════════════════════════════════════════ */

.post-related-section {
    padding: 88px 0;
    background: var(--off-white);
}

.post-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.post-related-card {
    background: white;
    border-radius: var(--card-radius);
    border: 1.5px solid rgba(26,43,74,0.07);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}
.post-related-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.post-related-img-link { display: block; overflow: hidden; }

.post-related-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--off-white);
    transition: transform 0.4s ease;
}
.post-related-card:hover .post-related-img { transform: scale(1.04); }
.post-related-img--placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.post-related-body { padding: 20px; }

.post-related-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin: 8px 0 6px;
}
.post-related-title a { text-decoration: none; color: inherit; transition: color var(--transition); }
.post-related-title a:hover { color: var(--accent); }

.post-related-cta {
    text-align: center;
}


/* ════════════════════════════════════════════════════════════════════
   SINGLE POST + SERVICES — RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
    .services-why-grid     { grid-template-columns: repeat(2, 1fr); }
    .post-body-wrap        { grid-template-columns: 1fr 280px; gap: 40px; }
    .post-related-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .services-insurance-inner { flex-direction: column; padding: 36px; gap: 24px; }
    .services-insurance-icon  { width: 56px; height: 56px; }
    .services-insurance-icon .drre-icon { width: 28px; height: 28px; }
}

@media (max-width: 768px) {
    .services-why-grid    { grid-template-columns: 1fr; }
    .post-body-wrap       { grid-template-columns: 1fr; }
    .post-sidebar         { position: static; }
    .post-related-grid    { grid-template-columns: 1fr; }
    .post-author-box      { flex-direction: column; gap: 16px; }
    .post-hero            { padding: 64px 0; }
}

@media (max-width: 600px) {
    .services-compare-section  { padding: 60px 0; }
    .services-why-section      { padding: 60px 0; }
    .services-faq-section      { padding: 60px 0; }
    .services-insurance-section { padding: 60px 0; }
    .services-insurance-inner  { padding: 28px 20px; }
    .post-body-section         { padding: 48px 0 64px; }
    .post-related-section      { padding: 60px 0; }
    .post-hero                 { padding: 52px 0; }
    .post-hero-title           { font-size: 1.7rem; }
}


/* ════════════════════════════════════════════════════════════════════
   SERVICES PAGE — IMAGE HERO + SPLIT SECTIONS + MID-CTAS
   ════════════════════════════════════════════════════════════════════ */

/* ── Services Image Hero ─────────────────────────────────────────── */
.services-hero {
    margin-top: var(--header-h);
    position: relative;
    overflow: hidden;
    padding: 100px 0 72px;
    background: linear-gradient(145deg, #0a1228 0%, var(--navy) 60%, #1a305a 100%);
    color: white;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    pointer-events: none;
    overflow: hidden;
}

.services-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 16, 34, 0.90) 0%,
        rgba(15, 28, 58, 0.82) 55%,
        rgba(10, 22, 46, 0.88) 100%
    );
    pointer-events: none;
}

.services-hero-inner {
    position: relative;
    z-index: 1;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 28px;
    align-items: end;
}

.services-hero-copy {
    display: flex;
    flex-direction: column;
}

.services-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.65);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}
.services-hero-label .drre-icon { width: 13px; height: 13px; color: rgba(255,255,255,0.5); }

.services-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.1rem, 4.5vw, 3.3rem);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 780px;
}

.services-hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 32px;
}

.services-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.services-hero-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}
.services-hero-secondary:hover {
    background: white;
    color: var(--navy);
    border-color: white;
}

.services-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
}

.services-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: white;
    font-size: 0.83rem;
    font-weight: 700;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    padding: 7px 14px;
}
.services-hero-trust-item .drre-icon { width: 14px; height: 14px; color: #7eb8f7; }

.services-hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.services-hero-stat {
    flex: 1 1 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px 20px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    gap: 6px;
}

.services-hero-stat strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.services-hero-stat span {
    font-size: 0.77rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.45;
    font-weight: 600;
    max-width: 140px;
}

.services-hero-review-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 22px;
    padding: 28px 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 44px rgba(8, 16, 34, 0.28);
}

.services-hero-review-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.services-hero-review-kicker {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: rgba(255,255,255,0.62);
}

.services-hero-review-top strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    line-height: 1.2;
    color: white;
}

.services-hero-review-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
}

.services-hero-review-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.services-hero-phone-link,
.services-hero-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.services-hero-phone-link {
    color: white;
}

.services-hero-phone-link:hover {
    color: #7eb8f7;
}

.services-hero-text-link {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.services-hero-text-link:hover {
    color: white;
}

/* ── Services Image / Text Split ─────────────────────────────────── */
.services-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.services-split--reverse {
    direction: rtl;
}
.services-split--reverse > * {
    direction: ltr;
}

.services-split-img {
    position: relative;
    overflow: hidden;
    background: var(--off-white);
}

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

.services-split-img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
}
.services-split-img--placeholder .drre-icon {
    color: var(--border);
}

.services-split-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.services-split-text {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    padding: 72px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-split-text .section-label {
    color: rgba(255,255,255,0.55);
}
.services-split-text .section-label::before {
    background: rgba(255,255,255,0.28);
}
.services-split-text .section-title {
    color: white;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}
.services-split-text .section-desc {
    color: rgba(255,255,255,0.78);
    max-width: 520px;
    margin-bottom: 28px;
}

.services-split-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-split-bullets li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,0.9);
    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1.5;
}
.services-split-bullets li .drre-icon { color: #7eb8f7; flex-shrink: 0; }
.services-split-bullets li a { color: #7eb8f7; text-decoration: underline; text-underline-offset: 3px; }
.services-split-bullets li a:hover { color: white; }

.services-split-copy {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
    margin: 0 0 18px;
    max-width: 560px;
}

.services-inline-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 26px;
}

/* ── Below-split card grid spacing ──────────────────────────────── */
.services-page-inner--below-split {
    padding-top: 52px;
    padding-bottom: 72px;
}

/* ── Specialty section note ──────────────────────────────────────── */
.services-specialty-note {
    margin-top: 36px;
    font-size: 0.94rem;
    color: var(--text-muted);
    text-align: center;
}
.services-specialty-note a { color: var(--accent); text-underline-offset: 3px; }
.services-specialty-note a:hover { color: var(--navy); }

/* ── Mid-CTA blocks ──────────────────────────────────────────────── */
.services-mid-cta {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
}

.services-mid-cta--accent {
    background: var(--navy);
    border-color: transparent;
}
.services-mid-cta--accent .services-mid-cta-content strong { color: white; }
.services-mid-cta--accent .services-mid-cta-content p { color: rgba(255,255,255,0.75); }
.services-mid-cta--accent .services-mid-cta-link { color: rgba(255,255,255,0.85); }
.services-mid-cta--accent .services-mid-cta-link:hover { color: white; }
.services-mid-cta--accent .services-mid-cta-phone { color: rgba(255,255,255,0.85); }
.services-mid-cta--accent .services-mid-cta-phone:hover { color: white; }

.services-mid-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.services-mid-cta-content {
    flex: 1;
}
.services-mid-cta-content strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.services-mid-cta-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

.services-mid-cta-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.services-mid-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: color var(--transition);
}
.services-mid-cta-phone:hover { color: var(--accent); }
.services-mid-cta-phone .drre-icon { width: 15px; height: 15px; }

.services-mid-cta-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}
.services-mid-cta-link:hover { color: var(--navy); }

/* ── Services Hero + Split — Responsive ──────────────────────────── */
@media (max-width: 1024px) {
    .services-hero-grid { grid-template-columns: 1fr; }
    .services-split { grid-template-columns: 1fr 1fr; min-height: 360px; }
    .services-split-text { padding: 56px 6%; }
}

@media (max-width: 900px) {
    .services-hero { padding: 72px 0 56px; }
    .services-hero-stats { gap: 10px; }
    .services-quick-nav-bar { position: static; }
    .services-intro-layout,
    .services-restorative-layout,
    .services-specialty-copy-grid { grid-template-columns: 1fr; }
    .services-overview-grid,
    .services-decision-grid,
    .services-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .services-split { grid-template-columns: 1fr; min-height: auto; }
    .services-split--reverse { direction: ltr; }
    .services-split-img { min-height: 280px; order: -1; }
    .services-split--reverse .services-split-img { order: -1; }
    .services-split-text { padding: 48px 6%; }
}

@media (max-width: 768px) {
    .services-hero-title { font-size: 2rem; }
    .services-hero-stats { flex-direction: column; max-width: 320px; }
    .services-hero-stat { flex: auto; }
    .services-hero-review-actions { align-items: flex-start; }
    .services-mid-cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .services-mid-cta-actions { width: 100%; }
}

@media (max-width: 600px) {
    .services-hero { padding: 56px 0 48px; }
    .services-hero-actions { flex-direction: column; align-items: flex-start; }
    .services-hero-trust { gap: 8px; }
    .services-quick-nav-wrap { align-items: flex-start; }
    .services-split-img { min-height: 220px; }
    .services-split-text { padding: 40px 5%; }
    .services-page-inner--below-split { padding-top: 36px; padding-bottom: 52px; }
    .services-inline-actions,
    .services-intro-card-actions,
    .services-restorative-actions { flex-direction: column; align-items: flex-start; }
    .services-trust-section,
    .services-overview-section,
    .services-decision-section,
    .services-restorative-section,
    .services-posts-section { padding: 60px 0; }
    .services-overview-grid,
    .services-decision-grid,
    .services-trust-grid { grid-template-columns: 1fr; }
    .services-mid-cta { padding: 28px 0; }
}

/* ── SEO Link Hub ───────────────────────────────────────────────── */
.seo-link-hub {
    padding: 72px 0;
    background: linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
    border-top: 1px solid var(--border);
}

.seo-link-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.seo-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(26, 43, 74, 0.08);
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(26, 43, 74, 0.06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
}

.seo-link-card:hover,
.seo-link-card:focus-visible {
    color: var(--accent);
    border-color: rgba(79, 111, 232, 0.18);
    box-shadow: 0 18px 44px rgba(79, 111, 232, 0.14);
    transform: translateY(-2px);
}

.seo-link-card .drre-icon {
    flex-shrink: 0;
}

/* ── Sleep Page Media Enhancements ──────────────────────────────── */
.sleep-hero-side {
    display: grid;
    gap: 18px;
    align-content: start;
}

.sleep-hero-visual,
.sleep-hst-media,
.botox-provider-image {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(10, 22, 46, 0.24);
}

.sleep-hero-visual img,
.sleep-hst-media img,
.botox-provider-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sleep-hero-visual img {
    min-height: 320px;
}

.sleep-authority-links {
    margin-top: 26px;
    color: var(--text-muted);
}

.sleep-authority-links a {
    color: var(--accent);
    text-underline-offset: 3px;
}

.sleep-hst-inner {
    align-items: center;
}

.sleep-hst-media {
    max-width: 420px;
}

/* ── Botox Intro Media ──────────────────────────────────────────── */
.botox-intro-side {
    display: grid;
    gap: 18px;
}

.botox-provider-image img {
    min-height: 280px;
}

@media (max-width: 900px) {
    .seo-link-hub {
        padding: 60px 0;
    }

    .sleep-hero-side,
    .botox-intro-side {
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .sleep-hero-visual img,
    .botox-provider-image img {
        min-height: 240px;
    }

    .sleep-hst-inner {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .seo-link-hub {
        padding: 52px 0;
    }

    .seo-link-hub-grid {
        grid-template-columns: 1fr;
    }
}
