/* ============================================================
   SEO Company for Dentists in Mountain Brook — location page
   Clean light/dark rhythm, dental + Birmingham metro context.
   ============================================================ */

:root {
    --mbd-bg:        #0c0e12;
    --mbd-bg-light:  #f7f8fa;     /* slightly cooler than NYC — feels "clinical clean" */
    --mbd-text:      #0e1116;
    --mbd-text-dim:  #5a6270;
    --mbd-rule:      #e5e7eb;
    --mbd-red:       #d32027;
    --mbd-red-bright:#ff4a52;
    --mbd-red-dark:  #b8000a;
    --mbd-mint:      #19a974;     /* dental "trust" green for check marks */
}

.mbd-page { background: var(--mbd-bg-light); color: var(--mbd-text); overflow-x: clip; }

.mbd-section-head { text-align: center; margin: 0 auto 52px; max-width: 760px; }
.mbd-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--mbd-red);
    background: rgba(211, 32, 39, .08);
    border: 1px solid rgba(211, 32, 39, .22);
    padding: 6px 14px; border-radius: 999px;
    margin-bottom: 18px;
}
.mbd-eyebrow-light { color: #ff8a90; background: rgba(211, 32, 39, .14); border-color: rgba(211, 32, 39, .35); }
.mbd-section-title {
    margin: 0 0 14px;
    color: var(--mbd-text);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    font-synthesis: none;
}
.mbd-section-title-light { color: #fff; }
.mbd-section-accent {
    display: inline-block;
    color: var(--mbd-red);
    font-family: "Playfair Display", "Times New Roman", Georgia, serif;
    font-style: italic; font-weight: 600;
    margin-left: 4px;
}
.mbd-section-sub { margin: 0; color: var(--mbd-text-dim); font-size: clamp(15px, 1.2vw, 17px); line-height: 1.65; }
.mbd-section-head-light .mbd-section-sub { color: rgba(255, 255, 255, .68); }

.mbd-inline-link { color: var(--mbd-red); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.mbd-inline-link:hover { color: var(--mbd-red-dark); }

/* Buttons */
.mbd-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px; font-size: 15px; font-weight: 600;
    border-radius: 999px; border: 0; cursor: pointer;
    text-decoration: none; white-space: nowrap; font-family: inherit;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .15s ease;
}
.mbd-btn svg { width: 16px; height: 16px; }
.mbd-btn-lg { padding: 16px 32px; font-size: 16px; }
.mbd-btn-primary {
    background: linear-gradient(135deg, #ff3b47 0%, var(--mbd-red) 60%, var(--mbd-red-dark) 100%);
    color: #fff;
    box-shadow: 0 20px 44px -16px rgba(211, 32, 39, .65), 0 0 0 1px rgba(255, 255, 255, .05) inset;
}
.mbd-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 24px 50px -16px rgba(211, 32, 39, .8); color: #fff; }
.mbd-btn-ghost {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
}
.mbd-btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); color: #fff; }

/* HERO ====================================================== */
.mbd-hero {
    position: relative; overflow: hidden; isolation: isolate;
    background:
        radial-gradient(900px 540px at 12% -8%, rgba(211, 32, 39, .4), transparent 60%),
        radial-gradient(1000px 600px at 92% 110%, rgba(211, 32, 39, .26), transparent 65%),
        radial-gradient(700px 600px at 50% 45%, rgba(25, 169, 116, .05), transparent 70%),
        linear-gradient(180deg, #07090d 0%, #0a0d14 50%, #06080d 100%);
    padding: 110px 0 110px; color: #fff;
}
.mbd-hero-bg {
    position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 14% 22%, rgba(255,255,255,.5), transparent 60%),
        radial-gradient(1.2px 1.2px at 28% 62%, rgba(255,255,255,.35), transparent 60%),
        radial-gradient(1px 1px at 47% 12%, rgba(255,255,255,.45), transparent 60%),
        radial-gradient(1px 1px at 63% 38%, rgba(255,255,255,.3), transparent 60%),
        radial-gradient(1.4px 1.4px at 78% 72%, rgba(255,255,255,.4), transparent 60%),
        radial-gradient(1px 1px at 88% 22%, rgba(255,255,255,.45), transparent 60%);
    background-repeat: no-repeat;
}
.mbd-hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.mbd-hero-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px 8px 14px; border-radius: 999px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.85); font-size: 13px; font-weight: 500; letter-spacing: .02em;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.mbd-hero-pill-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--mbd-red-bright); box-shadow: 0 0 0 4px rgba(255, 74, 82, .2);
    animation: mbdPulse 2.4s ease-in-out infinite;
}
@keyframes mbdPulse { 0%,100%{opacity:1;} 50%{opacity:.55;} }
.mbd-hero-title { margin: 0; max-width: 40ch; font-weight: 700; line-height: 1.06; letter-spacing: -0.02em; font-synthesis: none; }
.mbd-hero-title-main { display: block; color: #fff; font-size: clamp(34px, 5vw, 70px); }
.mbd-hero-desc { margin: 4px auto 0; max-width: 100ch; color: rgba(255,255,255,.75); font-size: clamp(15px, 1.2vw, 17px); line-height: 1.7; }
.mbd-hero-desc strong { color: #fff; font-weight: 600; }
.mbd-hero-ctas { display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }
.mbd-hero-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    width: 100%; max-width: 980px; margin-top: 36px;
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08);
}
.mbd-hero-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mbd-hero-stat-num { display: inline-flex; align-items: baseline; font-size: clamp(32px, 3.6vw, 48px); font-weight: 800; letter-spacing: -0.02em; line-height: 1; color: #fff; }
.mbd-hero-stat-plus { color: var(--mbd-red-bright); font-size: 0.65em; margin-left: 4px; font-weight: 700; }
.mbd-hero-stat-label { text-transform: uppercase; font-size: 12px; letter-spacing: .14em; font-weight: 600; color: rgba(255,255,255,.55); text-align: center; }

/* QUICK ANSWER ============================================== */
.mbd-qa { padding: 60px 0 0; background: var(--mbd-bg-light); }
.mbd-qa-card {
    max-width: 920px; margin: 0 auto;
    background: #fff; border: 1px solid var(--mbd-rule);
    border-left: 4px solid var(--mbd-red);
    border-radius: 14px; padding: 32px 36px;
    box-shadow: 0 14px 36px -22px rgba(0,0,0,.12);
}
.mbd-qa-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mbd-red); margin-bottom: 8px; }
.mbd-qa-title { margin: 0 0 14px; font-size: clamp(22px, 2.2vw, 30px); font-weight: 700; color: var(--mbd-text); line-height: 1.25; }
.mbd-qa-summary { margin: 0 0 16px; color: var(--mbd-text-dim); font-size: 16px; line-height: 1.7; }
.mbd-qa-summary strong { color: var(--mbd-text); }
.mbd-qa-bullets { list-style: none; padding: 0; margin: 0; }
.mbd-qa-bullets li {
    position: relative; padding: 9px 0 9px 22px;
    border-top: 1px dashed var(--mbd-rule);
    color: var(--mbd-text); font-size: 14.5px; line-height: 1.6;
}
.mbd-qa-bullets li:first-child { border-top: 0; }
.mbd-qa-bullets li::before { content: ""; position: absolute; left: 2px; top: 17px; width: 8px; height: 8px; border-radius: 50%; background: var(--mbd-red); }
.mbd-qa-bullets li strong { color: var(--mbd-text); margin-right: 4px; }

/* CONTEXT / WHY MB DENTAL SEO IS DIFFERENT ================== */
.mbd-context-sec { padding: 100px 0; background: var(--mbd-bg-light); }
.mbd-context-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.mbd-context-card {
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--mbd-rule);
    border-radius: 16px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease;
}
.mbd-context-card:hover { transform: translateY(-3px); border-color: rgba(211, 32, 39, .3); box-shadow: 0 18px 36px -22px rgba(0,0,0,.18); }
.mbd-context-num { display: inline-block; font-family: "Roboto", sans-serif; font-size: 13px; font-weight: 800; letter-spacing: .14em; color: var(--mbd-red); margin-bottom: 12px; }
.mbd-context-card h3 { margin: 0 0 10px; font-size: 19px; font-weight: 700; line-height: 1.3; color: var(--mbd-text); letter-spacing: -0.005em; }
.mbd-context-card p { margin: 0; color: var(--mbd-text-dim); font-size: 14.5px; line-height: 1.65; }

/* SERVICES ================================================== */
.mbd-services-sec { padding: 100px 0; background: linear-gradient(180deg, #fff 0%, #fafafa 100%); border-top: 1px solid var(--mbd-rule); }
.mbd-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mbd-service-card {
    position: relative; padding: 28px 24px 24px;
    background: #fff; border: 1px solid var(--mbd-rule); border-radius: 16px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease;
    overflow: hidden; isolation: isolate;
    display: flex; flex-direction: column;
}
.mbd-service-card::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
    background: linear-gradient(90deg, #ff3b47, var(--mbd-red), var(--mbd-red-dark));
    transform: scaleX(0); transform-origin: left center; transition: transform .3s ease;
}
.mbd-service-card:hover { transform: translateY(-4px); border-color: rgba(211,32,39,.3); box-shadow: 0 22px 40px -22px rgba(0,0,0,.18); }
.mbd-service-card:hover::before { transform: scaleX(1); }
.mbd-service-num { font-family: "Roboto", sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .14em; color: rgba(211, 32, 39, .55); margin-bottom: 14px; }
.mbd-service-title { margin: 0 0 8px; font-size: 16.5px; font-weight: 700; line-height: 1.35; color: var(--mbd-text); }
.mbd-service-desc { margin: 0 0 16px; font-size: 13.5px; line-height: 1.6; color: var(--mbd-text-dim); }
.mbd-service-cta { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; padding: 0; background: transparent; border: 0; cursor: pointer; font-family: inherit; font-size: 12.5px; font-weight: 700; letter-spacing: .03em; color: var(--mbd-red); transition: gap .15s ease; }
.mbd-service-cta svg { width: 13px; height: 13px; transition: transform .2s ease; }
.mbd-service-cta:hover { gap: 10px; }

/* SPECIALTIES =============================================== */
.mbd-specialties-sec { padding: 100px 0; background: #fff; border-top: 1px solid var(--mbd-rule); }
.mbd-specialties-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.mbd-specialty-card {
    padding: 24px 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid var(--mbd-rule);
    border-radius: 14px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease;
    position: relative;
}
.mbd-specialty-card::before {
    content: ""; position: absolute; left: 0; top: 16px; bottom: 16px;
    width: 3px; background: var(--mbd-red); border-radius: 0 2px 2px 0;
    transition: top .25s ease, bottom .25s ease;
}
.mbd-specialty-card:hover { transform: translateY(-3px); border-color: rgba(211, 32, 39, .3); box-shadow: 0 18px 36px -22px rgba(0,0,0,.18); }
.mbd-specialty-card:hover::before { top: 8px; bottom: 8px; }
.mbd-specialty-title { margin: 0 0 6px; padding-left: 14px; font-size: 15px; font-weight: 700; color: var(--mbd-text); line-height: 1.3; }
.mbd-specialty-desc { margin: 0; padding-left: 14px; color: var(--mbd-text-dim); font-size: 13px; line-height: 1.55; }

/* COMPARISON TABLE ========================================== */
.mbd-compare-sec { padding: 100px 0; background: var(--mbd-bg-light); border-top: 1px solid var(--mbd-rule); }
.mbd-compare-wrap { overflow-x: auto; border-radius: 14px; box-shadow: 0 14px 36px -24px rgba(0,0,0,.15); background: #fff; border: 1px solid var(--mbd-rule); }
.mbd-compare-table { width: 100%; min-width: 760px; border-collapse: separate; border-spacing: 0; font-size: 14.5px; line-height: 1.5; }
.mbd-compare-table thead th { background: #0e1116; color: #fff; font-weight: 600; text-align: left; padding: 16px 18px; font-size: 14px; }
.mbd-compare-table thead th.mbd-compare-us { background: linear-gradient(135deg, var(--mbd-red) 0%, var(--mbd-red-dark) 100%); }
.mbd-compare-table thead th.mbd-compare-feature { background: #1a1d23; }
.mbd-compare-table tbody th, .mbd-compare-table tbody td { padding: 14px 18px; border-top: 1px solid var(--mbd-rule); vertical-align: top; }
.mbd-compare-table tbody th { background: #fafafa; text-align: left; font-weight: 600; color: var(--mbd-text); width: 26%; }
.mbd-compare-table tbody td.mbd-compare-us { background: rgba(211, 32, 39, .06); color: var(--mbd-text); font-weight: 500; border-left: 2px solid rgba(211, 32, 39, .35); border-right: 2px solid rgba(211, 32, 39, .35); }
.mbd-compare-table tbody tr:last-child td.mbd-compare-us { border-bottom: 2px solid rgba(211, 32, 39, .35); }
.mbd-compare-table tbody td { color: var(--mbd-text-dim); }
.mbd-compare-table td[data-yes]::before { content: "\2713\00a0"; color: var(--mbd-mint); font-weight: 700; }
.mbd-compare-table td[data-no]::before { content: "\2715\00a0"; color: #c0392b; font-weight: 700; }
.mbd-compare-note { margin: 22px 0 0; text-align: center; font-size: 13px; font-style: italic; color: var(--mbd-text-dim); }

/* CTA STRIP ================================================= */
.mbd-cta-strip {
    position: relative; overflow: hidden; isolation: isolate; color: #fff;
    background:
        radial-gradient(700px 420px at 10% 50%, rgba(211, 32, 39, .4), transparent 65%),
        radial-gradient(700px 420px at 95% 50%, rgba(255, 107, 122, .3), transparent 70%),
        linear-gradient(135deg, #1a0d0f 0%, #21080b 50%, #16080a 100%);
    padding: 70px 0;
}
.mbd-cta-strip-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1.2px); background-size: 26px 26px; mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 90%); -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 90%); opacity: .9; }
.mbd-cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.mbd-cta-strip-title { margin: 0 0 8px; color: #fff; font-size: clamp(24px, 2.6vw, 34px); font-weight: 700; line-height: 1.2; }
.mbd-cta-strip-accent { display: block; color: var(--mbd-red-bright); font-family: "Playfair Display", "Times New Roman", Georgia, serif; font-style: italic; font-weight: 500; margin-top: 4px; }
.mbd-cta-strip-sub { margin: 0; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.6; max-width: 55ch; }

/* PROCESS =================================================== */
.mbd-process-sec { padding: 100px 0; background: var(--mbd-bg-light); }
.mbd-process-list { list-style: none; padding: 0; margin: 0 auto; max-width: 880px; position: relative; }
.mbd-process-list::before { content: ""; position: absolute; top: 0; bottom: 0; left: 38px; width: 2px; background: linear-gradient(180deg, rgba(211,32,39,.05), rgba(211,32,39,.4) 30%, rgba(211,32,39,.4) 70%, rgba(211,32,39,.05)); }
.mbd-process-step { position: relative; display: grid; grid-template-columns: 100px 1fr; gap: 28px; padding: 18px 0 26px; }
.mbd-process-marker { position: relative; width: 76px; z-index: 1; }
.mbd-process-marker-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 76px; height: 76px; border-radius: 50%;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border: 1px solid rgba(211, 32, 39, .35);
    color: var(--mbd-red); font-weight: 800; font-size: 22px;
    box-shadow: 0 10px 24px -16px rgba(211, 32, 39, .3);
}
.mbd-process-marker-when { display: block; margin-top: 8px; text-align: center; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mbd-text-dim); }
.mbd-process-content { padding-top: 4px; }
.mbd-process-title { margin: 0 0 8px; font-size: 22px; font-weight: 700; line-height: 1.3; color: var(--mbd-text); }
.mbd-process-desc { margin: 0; color: var(--mbd-text-dim); font-size: 15px; line-height: 1.7; }

/* WHY US (dark) ============================================ */
.mbd-why-sec {
    position: relative; overflow: hidden; isolation: isolate;
    padding: 100px 0; color: #fff;
    background:
        radial-gradient(900px 540px at 12% 12%, rgba(211, 32, 39, .18), transparent 60%),
        radial-gradient(900px 540px at 92% 90%, rgba(25, 169, 116, .08), transparent 60%),
        linear-gradient(180deg, #1c1f26 0%, #16191f 50%, #181b22 100%);
}
.mbd-why-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; background-image: radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1.2px); background-size: 28px 28px; mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 90%); -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 90%); opacity: .9; }
.mbd-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mbd-why-card {
    padding: 30px 28px 26px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
    position: relative; overflow: hidden;
}
.mbd-why-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, #ff3b47, var(--mbd-red), var(--mbd-red-dark)); transform: scaleX(0); transform-origin: left center; transition: transform .35s ease; }
.mbd-why-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.06); border-color: rgba(211,32,39,.35); }
.mbd-why-card:hover::before { transform: scaleX(1); }
.mbd-why-num { display: inline-block; font-family: "Roboto", sans-serif; font-size: 14px; font-weight: 800; letter-spacing: .14em; color: rgba(255, 255, 255, .35); margin-bottom: 14px; }
.mbd-why-title { margin: 0 0 10px; font-size: 19px; font-weight: 700; line-height: 1.35; color: #fff; }
.mbd-why-desc { margin: 0; font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,.68); }

/* TESTIMONIALS ============================================== */
.mbd-testimonials-sec { padding: 100px 0; background: var(--mbd-bg-light); border-top: 1px solid var(--mbd-rule); }
.mbd-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mbd-testimonial-card {
    position: relative;
    padding: 30px 28px 24px;
    background: #fff; border: 1px solid var(--mbd-rule);
    border-radius: 16px;
    display: flex; flex-direction: column;
    transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease;
}
.mbd-testimonial-card::before {
    content: "\201C"; position: absolute;
    top: -8px; right: 22px;
    font-family: Georgia, serif; font-size: 120px; line-height: 1;
    color: rgba(211, 32, 39, .12); pointer-events: none;
}
.mbd-testimonial-card:hover { transform: translateY(-3px); border-color: rgba(211,32,39,.25); box-shadow: 0 20px 36px -22px rgba(0,0,0,.18); }
.mbd-testimonial-stars { color: #ffb400; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; line-height: 1; }
.mbd-testimonial-quote { margin: 0 0 18px; font-size: 14.5px; line-height: 1.65; color: var(--mbd-text); }
.mbd-testimonial-footer { display: flex; flex-direction: column; gap: 2px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--mbd-rule); }
.mbd-testimonial-footer strong { color: var(--mbd-text); font-size: 14px; }
.mbd-testimonial-footer span { color: var(--mbd-text-dim); font-size: 13px; }

/* CASE STUDIES ============================================== */
.mbd-results-sec { padding: 100px 0; background: #fff; border-top: 1px solid var(--mbd-rule); }
.mbd-results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mbd-case-card {
    padding: 32px 28px 28px;
    background: linear-gradient(180deg, #fffafa 0%, #fff5f5 100%);
    border: 1px solid var(--mbd-rule);
    border-radius: 18px;
    display: flex; flex-direction: column;
    transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease;
}
.mbd-case-card:hover { transform: translateY(-4px); border-color: rgba(211, 32, 39, .3); box-shadow: 0 22px 40px -22px rgba(0,0,0,.18); }
.mbd-case-cat { display: inline-block; align-self: flex-start; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--mbd-red); background: rgba(211, 32, 39, .1); padding: 5px 10px; border-radius: 999px; margin-bottom: 18px; }
.mbd-case-metric { margin-bottom: 16px; }
.mbd-case-number {
    display: block; font-size: clamp(36px, 4vw, 52px); font-weight: 800; letter-spacing: -0.025em; line-height: 1;
    background: linear-gradient(135deg, var(--mbd-red) 0%, var(--mbd-red-dark) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.mbd-case-label { display: block; margin-top: 6px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--mbd-text-dim); }
.mbd-case-body { margin: 0 0 22px; font-size: 14.5px; line-height: 1.65; color: var(--mbd-text); }
.mbd-case-cta { margin-top: auto; align-self: flex-start; padding: 10px 16px; border: 1px solid var(--mbd-red); background: transparent; color: var(--mbd-red); border-radius: 999px; font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .15s ease, color .15s ease; }
.mbd-case-cta:hover { background: var(--mbd-red); color: #fff; }

/* PRICING (dark) ============================================ */
.mbd-pricing-sec {
    position: relative; overflow: hidden; isolation: isolate;
    padding: 110px 0; color: #fff;
    background:
        radial-gradient(900px 540px at 12% 12%, rgba(211, 32, 39, .2), transparent 60%),
        radial-gradient(900px 540px at 92% 90%, rgba(25, 169, 116, .07), transparent 60%),
        linear-gradient(180deg, #14171d 0%, #0f1217 50%, #14171d 100%);
}
.mbd-pricing-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; background-image: radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1.2px); background-size: 28px 28px; mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 90%); -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 90%); }
.mbd-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.mbd-tier {
    position: relative;
    padding: 36px 30px 32px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    display: flex; flex-direction: column;
    transition: transform .2s ease, border-color .2s ease;
}
.mbd-tier.is-highlighted {
    background: linear-gradient(180deg, rgba(211, 32, 39, .12) 0%, rgba(255, 107, 122, .04) 100%);
    border-color: rgba(211, 32, 39, .55);
    box-shadow: 0 30px 60px -28px rgba(211, 32, 39, .55), 0 0 0 1px rgba(211, 32, 39, .15) inset;
    transform: translateY(-8px);
}
.mbd-tier:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.25); }
.mbd-tier.is-highlighted:hover { transform: translateY(-12px); }
.mbd-tier-flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #ff3b47, var(--mbd-red), var(--mbd-red-dark)); color: #fff; padding: 5px 14px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; box-shadow: 0 12px 24px -10px rgba(211, 32, 39, .65); }
.mbd-tier-badge { display: inline-block; color: rgba(255,255,255,.65); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.mbd-tier.is-highlighted .mbd-tier-badge { color: var(--mbd-red-bright); }
.mbd-tier-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; color: #fff; line-height: 1; }
.mbd-tier-price-amount { font-size: clamp(36px, 4vw, 48px); font-weight: 800; letter-spacing: -0.025em; }
.mbd-tier-price-unit { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.55); }
.mbd-tier-best { margin: 0 0 22px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.72); }
.mbd-tier-best strong { color: #fff; font-weight: 600; }
.mbd-tier-list { list-style: none; padding: 0; margin: 0 0 26px; }
.mbd-tier-list li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.82); }
.mbd-tier-check { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: rgba(25, 169, 116, .2); color: #5ee0a0; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; margin-top: 2px; }
.mbd-tier.is-highlighted .mbd-tier-check { background: rgba(211, 32, 39, .25); color: var(--mbd-red-bright); }
.mbd-tier-cta { margin-top: auto; width: 100%; justify-content: center; }
.mbd-pricing-note { margin: 36px auto 0; max-width: 70ch; text-align: center; font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.55); }
.mbd-pricing-note .mbd-inline-link { color: var(--mbd-red-bright); }
.mbd-pricing-note .mbd-inline-link:hover { color: #fff; }

/* MISTAKES (long-form authority) ============================ */
.mbd-mistakes-sec { padding: 100px 0; background: #fff; border-top: 1px solid var(--mbd-rule); }
.mbd-mistakes-list { list-style: none; padding: 0; margin: 0 auto; max-width: 900px; }
.mbd-mistake {
    display: grid; grid-template-columns: 70px 1fr; gap: 24px;
    padding: 28px 0; border-top: 1px solid var(--mbd-rule);
}
.mbd-mistake:first-child { border-top: 0; padding-top: 0; }
.mbd-mistake-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(211, 32, 39, .12) 0%, rgba(255, 200, 130, .14) 100%);
    border: 1px solid rgba(211, 32, 39, .25);
    color: var(--mbd-red); font-weight: 800; font-size: 18px;
}
.mbd-mistake h3 { margin: 6px 0 10px; font-size: 19px; font-weight: 700; line-height: 1.3; color: var(--mbd-text); letter-spacing: -0.005em; }
.mbd-mistake p { margin: 0; color: var(--mbd-text-dim); font-size: 15.5px; line-height: 1.75; }
.mbd-mistakes-cta {
    margin: 50px auto 0; max-width: 700px; padding: 30px 32px; text-align: center;
    background: linear-gradient(135deg, rgba(211, 32, 39, .04) 0%, rgba(255, 200, 130, .06) 100%);
    border: 1px dashed rgba(211, 32, 39, .3); border-radius: 16px;
}
.mbd-mistakes-cta p { margin: 0 0 18px; font-size: 16px; color: var(--mbd-text); }

/* FAQ ======================================================= */
.mbd-faq-sec { padding: 100px 0; background: var(--mbd-bg-light); }
.mbd-faq-list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--mbd-rule); }
.mbd-faq-item { border-bottom: 1px solid var(--mbd-rule); }
.mbd-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; cursor: pointer; list-style: none; color: var(--mbd-text); font-size: 17px; font-weight: 600; line-height: 1.4; transition: color .15s ease; }
.mbd-faq-q::-webkit-details-marker { display: none; }
.mbd-faq-q:hover { color: var(--mbd-red); }
.mbd-faq-icon { width: 32px; height: 32px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(211, 32, 39, .08); border: 1px solid rgba(211, 32, 39, .2); color: var(--mbd-red); transition: transform .25s ease, background .15s ease; }
.mbd-faq-icon svg { width: 14px; height: 14px; }
.mbd-faq-item[open] .mbd-faq-icon { transform: rotate(45deg); background: rgba(211, 32, 39, .18); }
.mbd-faq-a { padding: 0 4px 22px 4px; color: var(--mbd-text-dim); font-size: 15px; line-height: 1.7; max-width: 70ch; }
.mbd-faq-a a { color: var(--mbd-red); font-weight: 600; }

/* RESOURCES + CROSS-LINKS =================================== */
.mbd-resources-sec { padding: 90px 0; background: #fff; border-top: 1px solid var(--mbd-rule); }
.mbd-resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mbd-resource-card {
    display: block;
    padding: 30px 28px 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid var(--mbd-rule); border-radius: 16px;
    color: var(--mbd-text); text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease;
    position: relative; overflow: hidden; isolation: isolate;
}
.mbd-resource-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, #ff3b47, var(--mbd-red), var(--mbd-red-dark)); transform: scaleX(0); transform-origin: left center; transition: transform .3s ease; }
.mbd-resource-card:hover { transform: translateY(-4px); border-color: rgba(211, 32, 39, .3); box-shadow: 0 22px 40px -22px rgba(0,0,0,.18); color: var(--mbd-text); }
.mbd-resource-card:hover::before { transform: scaleX(1); }
.mbd-resource-title { margin: 0 0 8px; font-size: 19px; font-weight: 700; color: var(--mbd-text); }
.mbd-resource-desc { margin: 0 0 16px; color: var(--mbd-text-dim); font-size: 14.5px; line-height: 1.6; }
.mbd-resource-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--mbd-red); font-size: 13.5px; font-weight: 700; letter-spacing: .03em; transition: gap .15s ease; }
.mbd-resource-card:hover .mbd-resource-cta { gap: 10px; }

.mbd-other-locations {
    margin: 50px auto 0; padding: 28px 30px;
    background: #fafafa; border: 1px solid var(--mbd-rule); border-radius: 14px;
}
.mbd-other-locations-title { margin: 0 0 16px; font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mbd-text-dim); }
.mbd-other-locations-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mbd-other-locations-list a {
    display: flex; flex-direction: column; gap: 4px;
    padding: 16px 18px;
    background: #fff; border: 1px solid var(--mbd-rule); border-radius: 10px;
    text-decoration: none; color: var(--mbd-text);
    transition: border-color .15s ease, transform .15s ease, color .15s ease;
}
.mbd-other-locations-list a:hover { border-color: var(--mbd-red); color: var(--mbd-red); transform: translateY(-2px); }
.mbd-other-locations-list strong { font-size: 15px; }
.mbd-other-locations-list span { font-size: 12.5px; color: var(--mbd-text-dim); }

/* FINAL CTA ================================================= */
.mbd-final-cta {
    position: relative; overflow: hidden; isolation: isolate; color: #fff;
    background:
        radial-gradient(800px 500px at 15% -5%, rgba(211, 32, 39, .35), transparent 60%),
        radial-gradient(900px 600px at 90% 110%, rgba(25, 169, 116, .08), transparent 65%),
        linear-gradient(180deg, #08090d 0%, #11141a 50%, #07090d 100%);
    padding: 120px 0;
}
.mbd-final-cta-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; background-image: radial-gradient(1px 1px at 18% 28%, rgba(255,255,255,.45), transparent 60%), radial-gradient(1px 1px at 48% 12%, rgba(255,255,255,.4), transparent 60%), radial-gradient(1.2px 1.2px at 78% 62%, rgba(255,255,255,.4), transparent 60%), radial-gradient(1px 1px at 28% 88%, rgba(255,255,255,.35), transparent 60%); background-repeat: no-repeat; }
.mbd-final-cta-inner { max-width: 820px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.mbd-final-cta-title { margin: 0; font-size: clamp(28px, 3.6vw, 46px); font-weight: 700; line-height: 1.18; letter-spacing: -0.02em; color: #fff; font-synthesis: none; }
.mbd-final-cta-sub { margin: 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.65; max-width: 60ch; }

/* RESPONSIVE ================================================ */
@media (max-width: 1199px) {
    .mbd-services-grid { grid-template-columns: repeat(3, 1fr); }
    .mbd-specialties-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991px) {
    .mbd-hero { padding: 70px 0 80px; }
    .mbd-hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 520px; }
    .mbd-hero-title { max-width: 100%; }
    .mbd-context-grid,
    .mbd-services-grid,
    .mbd-why-grid,
    .mbd-results-grid,
    .mbd-pricing-grid,
    .mbd-resources-grid,
    .mbd-testimonials-grid,
    .mbd-other-locations-list { grid-template-columns: repeat(2, 1fr); }
    .mbd-specialties-grid { grid-template-columns: repeat(3, 1fr); }
    .mbd-tier.is-highlighted { transform: none; }
    .mbd-tier.is-highlighted:hover { transform: translateY(-4px); }
    .mbd-context-sec, .mbd-services-sec, .mbd-specialties-sec, .mbd-compare-sec,
    .mbd-process-sec, .mbd-why-sec, .mbd-testimonials-sec, .mbd-results-sec,
    .mbd-pricing-sec, .mbd-mistakes-sec, .mbd-faq-sec, .mbd-resources-sec { padding: 70px 0; }
    .mbd-final-cta { padding: 80px 0; }
    .mbd-cta-strip-inner { justify-content: center; text-align: center; }
}
@media (max-width: 575px) {
    .mbd-hero { padding: 40px 0 60px; }
    .mbd-hero-pill { font-size: 11.5px; padding: 6px 14px 6px 12px; }
    .mbd-hero-title-main { font-size: clamp(28px, 8vw, 40px); }
    .mbd-btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 14px; }
    .mbd-btn-lg { padding: 14px 22px; font-size: 15px; }
    .mbd-context-grid,
    .mbd-services-grid,
    .mbd-specialties-grid,
    .mbd-why-grid,
    .mbd-results-grid,
    .mbd-pricing-grid,
    .mbd-resources-grid,
    .mbd-testimonials-grid,
    .mbd-other-locations-list { grid-template-columns: 1fr; }
    .mbd-qa-card { padding: 24px 22px; }
    .mbd-qa-title { font-size: 20px; }
    .mbd-section-head { margin-bottom: 36px; }
    .mbd-process-step { grid-template-columns: 64px 1fr; gap: 18px; }
    .mbd-process-marker, .mbd-process-marker-num { width: 56px; height: 56px; font-size: 18px; }
    .mbd-process-list::before { left: 28px; }
    .mbd-faq-q { font-size: 15.5px; padding: 18px 4px; }
    .mbd-mistake { grid-template-columns: 48px 1fr; gap: 18px; }
    .mbd-mistake-num { width: 44px; height: 44px; font-size: 15px; }
    .mbd-compare-table { font-size: 13px; }
    .mbd-compare-table tbody th, .mbd-compare-table tbody td { padding: 11px 12px; }
}
