/* ══════════════════════════════════════════════
   LEMONADE LIFE — SHARED STYLES
   Brand Kit · March 2026
   ══════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
    --blush: #F9E8E8;
    --coral: #F2B5B4;
    --salmon: #E66958;
    --salmon-dark: #D45A4B;
    --lemon-light: #FFD10F;
    --lemon: #F5AC23;
    --lime: #8EAA3D;
    --lime-deep: #6E943D;
    --lime-pale: #EAF2DA;
    --warm-gray: #231F20;
    --black: #000000;
    --cream: #FFFDF8;
    --off-white: #FAF9F6;
    --light-gray: #F5F4F2;
    --mid-gray: #9E9997;
    --max-width: 1200px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--warm-gray);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: .5; } 50% { transform: scale(1.1); opacity: .3; } }
@keyframes ctaPulse { 0%, 100% { box-shadow: 0 8px 30px rgba(0,0,0,.15); } 50% { box-shadow: 0 8px 40px rgba(230,105,88,.25); } }
@keyframes salmonPulse { 0%, 100% { box-shadow: 0 8px 24px rgba(230,105,88,.25); } 50% { box-shadow: 0 8px 36px rgba(230,105,88,.4); } }
@keyframes lemonPulse { 0%, 100% { box-shadow: 0 8px 30px rgba(255,209,15,.25); } 50% { box-shadow: 0 8px 44px rgba(255,209,15,.45); } }

/* Scroll-triggered animations */
.anim { opacity: 0; transform: translateY(40px); transition: all .8s cubic-bezier(.16, 1, .3, 1); }
.anim.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
nav {
    position: fixed; top: 0; width: 100%; z-index: 200;
    background: transparent;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
}
nav.scrolled {
    background: rgba(255, 253, 248, .96);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 30px rgba(0,0,0,.06);
}

.nav-inner {
    max-width: var(--max-width); margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
}

.logo { display: flex; align-items: center; transition: transform .3s; text-decoration: none; }
.logo:hover { transform: scale(1.02); }
.logo img { height: 40px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a {
    text-decoration: none; color: var(--warm-gray);
    font-size: .95rem; font-weight: 500; letter-spacing: .02em;
    position: relative; transition: color .3s;
}
.nav-links a:not(.nav-cta)::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--salmon); transition: width .3s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:hover { color: var(--salmon); }

/* Nav CTA — Apply Now */
.nav-cta {
    background: var(--black) !important; color: var(--cream) !important;
    padding: .8rem 1.7rem; border-radius: 30px;
    font-size: .95rem !important;
    transition: all .3s cubic-bezier(.16, 1, .3, 1) !important;
}
.nav-cta:hover {
    background: var(--salmon) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230,105,88,.3);
}
.nav-cta:hover::after { width: 0 !important; }

/* ── Dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: default; }
.nav-dropdown > a::after { display: none; }
.nav-dropdown-toggle {
    display: flex; align-items: center; gap: 4px; cursor: pointer;
    background: none; border: none; font-family: inherit;
    font-size: .95rem; font-weight: 500; letter-spacing: .02em;
    color: var(--warm-gray); transition: color .3s; padding: 0;
}
.nav-dropdown-toggle:hover { color: var(--salmon); }
.nav-dropdown-toggle svg {
    width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.5;
    fill: none; transition: transform .3s;
}
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
    background: white; border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,.1), 0 0 0 1px rgba(0,0,0,.03);
    padding: .75rem; min-width: 300px;
    opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-10px);
    transition: all .35s cubic-bezier(.16, 1, .3, 1);
    pointer-events: none;
}
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Dropdown preview cards */
.dd-card {
    display: flex; align-items: flex-start; gap: .85rem;
    padding: .85rem 1rem; border-radius: 10px;
    transition: all .25s cubic-bezier(.16, 1, .3, 1);
    text-decoration: none; color: var(--warm-gray);
}
.dd-card::after { display: none !important; }
.dd-card:hover { background: var(--light-gray); transform: translateX(4px); }
.dd-card + .dd-card { margin-top: 2px; }

.dd-card-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all .3s;
}
.dd-card-icon svg { width: 20px; height: 20px; stroke-width: 1.5; fill: none; }
.dd-card-icon.salmon { background: rgba(230,105,88,.08); }
.dd-card-icon.salmon svg { stroke: var(--salmon); }
.dd-card-icon.lemon { background: rgba(245,172,35,.08); }
.dd-card-icon.lemon svg { stroke: var(--lemon); }

.dd-card:hover .dd-card-icon.salmon { background: var(--salmon); }
.dd-card:hover .dd-card-icon.salmon svg { stroke: white; }
.dd-card:hover .dd-card-icon.lemon { background: var(--lemon); }
.dd-card:hover .dd-card-icon.lemon svg { stroke: white; }

.dd-card-text { flex: 1; min-width: 0; }
.dd-card-title {
    font-size: .85rem; font-weight: 600; line-height: 1.3;
    margin-bottom: 2px; display: flex; align-items: center; gap: 6px;
}
.dd-card-title svg {
    width: 12px; height: 12px; stroke: var(--mid-gray); stroke-width: 2;
    fill: none; opacity: 0; transform: translateX(-4px);
    transition: all .25s;
}
.dd-card:hover .dd-card-title svg { opacity: 1; transform: translateX(0); stroke: var(--salmon); }
.dd-card-desc { font-size: .75rem; font-weight: 400; color: var(--mid-gray); line-height: 1.4; }

/* Active page indicator */
.nav-links li a.nav-active:not(.nav-cta) { color: var(--salmon); }
.nav-links li a.nav-active:not(.nav-cta)::after { width: 100%; }


/* ── Mobile Nav ── */
.mob-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px; z-index: 201;
}
.mob-btn span {
    width: 24px; height: 2px; background: var(--black);
    transition: all .3s; transform-origin: center;
}
.mob-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mob-btn.active span:nth-child(2) { opacity: 0; }
.mob-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mob-menu {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--cream); z-index: 199;
    padding: 6rem 2rem 2rem; flex-direction: column; gap: 0;
    opacity: 0; transition: opacity .4s;
}
.mob-menu.active { display: flex; opacity: 1; }

/* Staggered link entry */
.mob-menu > * {
    opacity: 0; transform: translateY(12px);
    transition: opacity .3s ease, transform .3s ease;
}
.mob-menu.active > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: .05s; }
.mob-menu.active > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: .1s; }
.mob-menu.active > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: .15s; }
.mob-menu.active > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: .2s; }
.mob-menu.active > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: .25s; }
.mob-menu.active > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: .3s; }
.mob-menu.active > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: .35s; }
.mob-menu.active > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: .4s; }

.mob-menu a {
    font-size: 1.4rem; font-family: 'Cormorant Garamond', serif;
    color: var(--warm-gray); text-decoration: none; padding: .75rem 0;
    border-bottom: 1px solid var(--light-gray); transition: all .3s;
}
.mob-menu a:hover { color: var(--salmon); padding-left: 1rem; }

/* Dropdown group in mobile */
.mob-menu .mob-dropdown-label {
    font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
    color: var(--salmon); padding: .75rem 0 .25rem; border: none;
    display: flex; align-items: center; gap: 8px;
}
.mob-menu .mob-dropdown-label::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, var(--salmon), transparent); opacity: .2;
}
.mob-menu .mob-dropdown-item {
    padding-left: 1.2rem; font-size: 1.2rem; border-bottom-color: rgba(0,0,0,.03);
}
.mob-menu .mob-dropdown-item .mob-item-icon {
    display: inline-flex; width: 28px; height: 28px; border-radius: 8px;
    align-items: center; justify-content: center; margin-right: .6rem;
    vertical-align: middle;
}
.mob-menu .mob-dropdown-item .mob-item-icon svg {
    width: 14px; height: 14px; stroke-width: 1.5; fill: none;
}
.mob-menu .mob-dropdown-item .mob-item-icon.salmon { background: rgba(230,105,88,.08); }
.mob-menu .mob-dropdown-item .mob-item-icon.salmon svg { stroke: var(--salmon); }
.mob-menu .mob-dropdown-item .mob-item-icon.lemon { background: rgba(245,172,35,.08); }
.mob-menu .mob-dropdown-item .mob-item-icon.lemon svg { stroke: var(--lemon); }

/* Mobile divider before main links */
.mob-menu .mob-divider {
    height: 0; border: none; border-top: 1px solid var(--light-gray);
    margin: .5rem 0;
}

.mob-menu .nav-cta {
    display: inline-block; text-align: center; margin-top: 1.5rem;
    font-family: 'Outfit', sans-serif; font-size: 1rem;
    position: relative;
}

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex; align-items: center; gap: .75rem; width: fit-content;
    background: var(--black); color: var(--cream);
    padding: 1.1rem 2.2rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 1rem; letter-spacing: .01em;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
    position: relative; overflow: hidden;
    animation: ctaPulse 3s ease-in-out infinite;
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
    transition: left .5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    background: var(--salmon); transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(230,105,88,.3);
}
.btn-primary svg { transition: transform .3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-salmon {
    display: inline-flex; align-items: center; gap: .75rem;
    background: var(--salmon); color: white;
    padding: 1.1rem 2.2rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 1rem;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 8px 24px rgba(230,105,88,.25);
    animation: salmonPulse 3s ease-in-out infinite 1s;
    position: relative; overflow: hidden;
}
.btn-salmon::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    transition: left .5s;
}
.btn-salmon:hover::before { left: 100%; }
.btn-salmon:hover {
    background: var(--salmon-dark); transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(230,105,88,.35);
}
.btn-salmon svg { width: 18px; height: 18px; transition: transform .3s; }
.btn-salmon:hover svg { transform: translateX(4px); }

.btn-lemon {
    display: inline-flex; align-items: center; gap: .75rem;
    background: var(--lemon-light); color: var(--black);
    padding: 1.1rem 2.2rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 1rem;
    position: relative; overflow: hidden;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 8px 30px rgba(255,209,15,.25);
    animation: lemonPulse 3s ease-in-out infinite;
}
.btn-lemon::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    transition: left .5s;
}
.btn-lemon:hover::before { left: 100%; }
.btn-lemon:hover { transform: translateY(-3px); box-shadow: 0 12px 44px rgba(255,209,15,.45); }
.btn-lemon svg { transition: transform .3s; }
.btn-lemon:hover svg { transform: translateX(4px); }

.btn-outline {
    display: inline-flex; align-items: center; gap: .75rem;
    background: transparent; color: var(--warm-gray);
    padding: 1rem 2rem; border-radius: 50px;
    border: 2px solid rgba(35,31,32,.15);
    text-decoration: none; font-weight: 500; font-size: .95rem;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
}
.btn-outline:hover {
    border-color: var(--salmon); color: var(--salmon);
    transform: translateY(-2px);
}
.btn-outline svg { transition: transform .3s; }
.btn-outline:hover svg { transform: translateX(4px); }

/* Small / inline button */
.btn-sm {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .7rem 1.5rem; border-radius: 50px;
    font-size: .88rem; font-weight: 500;
}

/* Arrow icon helper */
.arrow-icon { width: 18px; height: 18px; }

/* ══════════════════════════════════════════════
   COMMON SECTIONS
   ══════════════════════════════════════════════ */

/* Section eyebrow badge */
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--light-gray); padding: .5rem 1rem; border-radius: 50px;
    font-size: .78rem; font-weight: 500; color: var(--salmon);
    text-transform: uppercase; letter-spacing: .05em;
    margin-bottom: 1.25rem; transition: transform .3s;
}
.section-eyebrow:hover { transform: scale(1.05); }
.section-eyebrow svg { width: 14px; height: 14px; fill: currentColor; }

/* ── Proof / Credential Strip ── */
.proof-strip {
    background: var(--black); color: white; overflow: hidden;
    display: flex; align-items: center; height: 48px;
}
.proof-track {
    display: inline-flex; align-items: center;
    animation: ticker 35s linear infinite;
}
.proof-strip:hover .proof-track { animation-play-state: paused; }

.proof-item {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 0 12px; font-size: .78rem; font-weight: 500;
    letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
    color: rgba(255,255,255,.95);
    line-height: 1;
    transition: opacity .3s;
}

.proof-icon {
    width: 17px; height: 17px; stroke-width: 2;
    fill: none; flex-shrink: 0; stroke: var(--lemon-light);
}

.proof-sep {
    display: inline-block; width: 1px; height: 14px;
    background: rgba(255,255,255,.12); margin-left: 12px; flex-shrink: 0;
}

.proof-dot { display: none; /* replaced by icons */ }

/* ── Testimonial Cards ── */
.test-carousel-wrap { position: relative; margin: 0 -2rem; padding: 0 2rem; }
.test-carousel {
    display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 8px 0 20px;
}
.test-carousel::-webkit-scrollbar { display: none; }

.test-card {
    flex: 0 0 380px; scroll-snap-align: start;
    background: white; border-radius: 20px; padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.04); border: 1px solid var(--light-gray);
    transition: all .4s cubic-bezier(.16, 1, .3, 1); position: relative; overflow: hidden;
}
.test-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--salmon), var(--coral));
    transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.test-card:nth-child(3n+1)::before { background: linear-gradient(90deg, var(--salmon), var(--coral)); }
.test-card:nth-child(3n+2)::before { background: linear-gradient(90deg, var(--lemon), var(--lemon-light)); }
.test-card:nth-child(3n+3)::before { background: linear-gradient(90deg, var(--lime), var(--lime-deep)); }
.test-card:hover::before { transform: scaleX(1); }
.test-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.08); border-color: transparent; }
.test-stars { color: var(--lemon); font-size: .9rem; margin-bottom: .75rem; letter-spacing: 2px; }
.test-card .test-quote { font-size: .92rem; font-weight: 400; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; opacity: .7; }
.test-author { display: flex; align-items: center; gap: .75rem; }
.test-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 600;
}
.test-avatar.pink { background: var(--blush); color: var(--salmon); }
.test-avatar.green { background: var(--lime-pale); color: var(--lime-deep); }
.test-avatar.yellow { background: #FFF5D6; color: var(--lemon); }
.test-avatar.coral { background: var(--coral); color: white; }
.test-avatar.dark { background: var(--warm-gray); color: white; }
.test-name { font-size: .82rem; font-weight: 600; }
.test-detail { font-size: .72rem; font-weight: 400; opacity: .45; }

/* Carousel nav */
.test-nav { display: flex; justify-content: center; gap: .75rem; margin-top: 1.5rem; }
.test-nav button {
    width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(35,31,32,.12);
    background: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all .3s; color: var(--warm-gray);
}
.test-nav button:hover { background: var(--salmon); border-color: var(--salmon); color: white; transform: scale(1.08); }
.test-nav button svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

.test-dots { display: flex; justify-content: center; gap: 6px; margin-top: 1rem; }
.test-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--light-gray); transition: all .3s; cursor: pointer; }
.test-dot.active { background: var(--salmon); width: 24px; border-radius: 4px; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
    background: var(--warm-gray); padding: 72px 2rem 0;
    border-top: none; position: relative; overflow: hidden;
}
footer::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        -45deg, transparent, transparent 30px,
        rgba(255,255,255,.012) 30px, rgba(255,255,255,.012) 31px
    );
    pointer-events: none; z-index: 0;
}
footer::after {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 350px; height: 350px; border-radius: 50%;
    background: radial-gradient(circle, rgba(245,172,35,.06) 0%, transparent 65%);
    pointer-events: none; z-index: 0;
}
.footer-inner {
    max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 3.5rem;
}
.footer-brand p {
    font-size: .88rem; color: rgba(255,253,248,.5); font-weight: 400;
    line-height: 1.75; max-width: 280px; margin-top: .85rem; opacity: 1;
}
.footer-social { display: flex; gap: 12px; margin-top: 1rem; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,253,248,.1);
    background: rgba(255,253,248,.04);
    display: flex; align-items: center; justify-content: center;
    transition: all .3s;
}
.footer-social a:hover {
    border-color: var(--salmon); background: var(--salmon);
    transform: translateY(-3px); box-shadow: 0 6px 20px rgba(230,105,88,.25);
}
.footer-social svg { width: 16px; height: 16px; stroke: rgba(255,253,248,.5); stroke-width: 1.5; fill: none; }
.footer-social a:hover svg { stroke: white; }

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500;
    color: var(--cream); margin-bottom: 1.2rem; padding-bottom: .6rem; position: relative;
}
.footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 24px; height: 2px; background: var(--salmon); border-radius: 2px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a {
    color: rgba(255,253,248,.45); text-decoration: none; font-size: .85rem;
    opacity: 1; transition: color .3s, padding-left .3s;
}
.footer-col a:hover { color: var(--salmon); padding-left: .4rem; }

.footer-bottom {
    max-width: var(--max-width); margin: 3rem auto 0; padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(255,253,248,.06);
    display: flex; justify-content: space-between;
    font-size: .75rem; color: rgba(255,253,248,.3); opacity: 1;
    position: relative; z-index: 1;
}
.footer-legal {
    font-size: .72rem; font-weight: 400; line-height: 1.6;
    color: rgba(255,253,248,.25); max-width: 600px;
    margin: .75rem auto 0; text-align: center;
}

/* ══════════════════════════════════════════════
   PAGE-LEVEL SHARED PATTERNS
   ══════════════════════════════════════════════ */

/* Page hero — generic */
.page-hero {
    padding: 10rem 2rem 5rem; text-align: center;
    max-width: var(--max-width); margin: 0 auto;
}
.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400; line-height: 1.15; margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: italic; color: var(--salmon); }
.page-hero p {
    font-size: 1.05rem; font-weight: 400; max-width: 600px;
    margin: 0 auto 2rem; line-height: 1.8; opacity: .65;
}

/* Content section — generic */
.content-section { padding: 88px 2rem; }
.content-section .inner { max-width: var(--max-width); margin: 0 auto; }

/* Dark section */
.dark-section { background: var(--black); color: var(--cream); }

/* Cream section */
.cream-section { background: var(--cream); }

/* Off-white / light gray section */
.gray-section { background: var(--light-gray); }

/* Stat bar */
.stat-bar {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
    padding: 1.5rem 0; margin: 2rem 0;
}
.stat-bar .stat {
    text-align: center; padding: 0 1.5rem;
    border-right: 1px solid rgba(255,255,255,.1);
}
.stat-bar .stat:last-child { border-right: none; }
.stat-bar .stat-num {
    font-size: 1.8rem; font-weight: 700; color: var(--salmon); line-height: 1;
}
.stat-bar .stat-label { font-size: .78rem; font-weight: 400; opacity: .5; margin-top: .25rem; }

/* Credential badges */
.credential-badges {
    display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin: 1.5rem 0;
}
.credential-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .5rem 1rem; border-radius: 50px;
    background: var(--light-gray); font-size: .78rem; font-weight: 500;
    transition: all .3s;
}
.credential-badge:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.credential-badge svg { width: 14px; height: 14px; stroke: var(--salmon); stroke-width: 2; fill: none; }

/* FAQ accordion */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 0; background: none; border: none; cursor: pointer;
    font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 500;
    color: var(--warm-gray); text-align: left; gap: 1rem;
    transition: color .3s;
}
.faq-question:hover { color: var(--salmon); }
.faq-question svg {
    width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; fill: none;
    flex-shrink: 0; transition: transform .3s;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .4s cubic-bezier(.16, 1, .3, 1);
}
.faq-answer-inner {
    padding: 0 0 1.5rem; font-size: .95rem; font-weight: 400;
    line-height: 1.8; opacity: .65;
}

/* Video placeholder */
.video-placeholder {
    aspect-ratio: 16/9; background: linear-gradient(135deg, var(--warm-gray), var(--black));
    border-radius: 20px; overflow: hidden; position: relative; cursor: pointer;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    transition: transform .4s, box-shadow .4s;
    display: flex; align-items: center; justify-content: center;
}
.video-placeholder:hover { transform: translateY(-5px); box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.play-btn {
    width: 80px; height: 80px; background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.3); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
}
.video-placeholder:hover .play-btn { background: var(--cream); }
.play-btn svg { width: 28px; height: 28px; color: var(--cream); margin-left: 4px; }
.video-placeholder:hover .play-btn svg { color: var(--salmon); }
.video-label {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    color: white; font-size: .82rem; font-weight: 500; letter-spacing: .05em; opacity: .7;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .nav-links { display: none; }
    .mob-btn { display: flex; }
}

@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .test-card { flex: 0 0 300px; }
    .stat-bar { gap: 1rem; }
    .stat-bar .stat { border-right: none; }
}

@media (max-width: 600px) {
    .page-hero { padding: 7rem 1.5rem 3rem; }
    .content-section { padding: 56px 1.5rem; }
    footer { padding: 56px 1.5rem 0; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
    .credential-badges { gap: .5rem; }
    .credential-badge { font-size: .72rem; padding: .4rem .8rem; }
}

/* ─────────────────────────────────────────────
   Blog Placeholder Illustrations
   One variant per post — colored gradient bg + large SVG icon.
   Applied as: .blog-ph.bp-<slug>
   Used inside .blog-card-img, .featured-img, .post-hero-img-inner
   ───────────────────────────────────────────── */
.blog-ph {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.blog-ph::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(255,255,255,.05) 30px, rgba(255,255,255,.05) 31px);
    pointer-events: none;
}
.blog-ph svg {
    width: 38%; height: auto; max-width: 180px;
    stroke: rgba(255,255,255,.82); fill: none;
    stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,.12));
    position: relative; z-index: 1;
}
/* Color variants */
.bp-strategy-gap      { background: linear-gradient(135deg, #E66958 0%, #C94F3E 100%); }
.bp-financial         { background: linear-gradient(135deg, #F5AC23 0%, #E8941A 100%); }
.bp-decisions         { background: linear-gradient(135deg, #8EAA3D 0%, #6B8230 100%); }
.bp-strategist        { background: linear-gradient(135deg, #3A4D47 0%, #1A2420 100%); }
.bp-lawyer-meeting    { background: linear-gradient(135deg, #E66958 0%, #F5AC23 100%); }
.bp-quarterback       { background: linear-gradient(135deg, #1A2420 0%, #3A4D47 100%); }
.bp-boundaries        { background: linear-gradient(135deg, #F5AC23 0%, #E66958 100%); }
/* Hide "Post image" helper labels when placeholder present */
.blog-card-img .blog-ph + span:not(.blog-card-category),
.featured-img .blog-ph + span:not(.featured-badge),
.post-hero-img-inner .blog-ph + span { display: none; }
