/* glass-cards.css — Light Glassmorphism Layer for Perseus */
/* Supplements style.css. Do NOT modify style.css. */

/* ============================================================
   SECTION DEPTH LAYER
   Light glass needs subtle gradients behind it to blur over.
   ============================================================ */
.glass-section {
    position: relative;
    overflow: hidden;
}
.glass-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(105,56,239,0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 20%, rgba(69,28,70,0.04) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(168,85,247,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.glass-section > .container,
.glass-section > * {
    position: relative;
    z-index: 1;
}

/* ============================================================
   BASE GLASS CARD — frosted on white/light bg
   ============================================================ */
.glass-card,
.problem-card,
.killer-card,
.industry-stat-card,
.faq-item,
.step-card,
.step-card-expanded {
    background: rgba(255,255,255,0.80) !important;
    border: 1px solid rgba(255,255,255,0.72) !important;
    box-shadow:
        0 2px 12px rgba(0,0,0,0.05),
        0 6px 28px rgba(105,56,239,0.04),
        0 1px 0 rgba(255,255,255,0.95) inset !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0);
}
@supports not (backdrop-filter: blur(12px)) {
    .glass-card,
    .problem-card,
    .killer-card,
    .industry-stat-card,
    .faq-item,
    .step-card,
    .step-card-expanded {
        background: rgba(255,255,255,0.96) !important;
    }
}

/* ============================================================
   STRONG GLASS — featured/hero cards
   ============================================================ */
.glass-card-strong,
.audit-card,
.cta-card,
.process-flow-card,
.results-preview-card {
    background: rgba(255,255,255,0.88) !important;
    border: 1px solid rgba(105,56,239,0.14) !important;
    box-shadow:
        0 4px 24px rgba(0,0,0,0.07),
        0 12px 48px rgba(105,56,239,0.07),
        0 1px 0 rgba(255,255,255,1) inset !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateZ(0);
}
@supports not (backdrop-filter: blur(16px)) {
    .glass-card-strong,
    .audit-card,
    .cta-card,
    .process-flow-card,
    .results-preview-card {
        background: rgba(255,255,255,0.97) !important;
    }
}

/* ============================================================
   DIAGONAL GRAIN TEXTURE — site-wide
   ============================================================ */
html {
    background-color: #fff;
}

/* ============================================================
   PAGE HERO SECTION — standard inner-page hero
   ============================================================ */
.page-hero {
    padding: 140px 0 80px;
    position: relative;
    z-index: 0;
    background: transparent;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 60%, rgba(105,56,239,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(69,28,70,0.04) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}
.page-hero > .container {
    position: relative;
    z-index: 1;
}
.page-hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6938ef;
    background: none;
    display: block;
    margin-bottom: 14px;
    padding: 0;
    position: relative;
    z-index: 0;
}
.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #111111;
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.page-hero-lead {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 36px;
}
.page-hero-sub {
    font-size: 0.97rem;
    color: #666;
    line-height: 1.75;
    max-width: 680px;
    margin-bottom: 36px;
}

/* ============================================================
   PAGE CONTENT SECTIONS
   ============================================================ */
.page-section {
    padding: 80px 0;
    position: relative;
    background: transparent;
}
.page-section-alt {
    padding: 80px 0;
    position: relative;
    background: transparent;
    overflow: hidden;
}
.page-section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(105,56,239,0.04) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 30%, rgba(69,28,70,0.03) 0%, transparent 50%);
    pointer-events: none;
}
.page-section-alt > .container {
    position: relative;
    z-index: 1;
}

/* ============================================================
   PROBLEM ITEM CARDS (problemssolved page)
   ============================================================ */
.problem-item-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.68);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 4px 20px rgba(105,56,239,0.04);
    border-radius: 14px;
    padding: 22px 26px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transform: translateZ(0);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.problem-item-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 8px 32px rgba(105,56,239,0.08);
    transform: translateY(-2px) translateZ(0);
}
.problem-item-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(105,56,239,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: #6938ef;
}
.problem-item-text {
    font-size: 0.97rem;
    color: #333;
    line-height: 1.6;
    padding-top: 4px;
}

/* ============================================================
   BENEFIT LIST (shared)
   ============================================================ */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}
.benefit-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6938ef;
    margin-top: 9px;
}

/* ============================================================
   QUESTION CARDS (theonepercent page)
   ============================================================ */
.question-card {
    background: rgba(255,255,255,0.80);
    border: 1px solid rgba(255,255,255,0.68);
    border-left: 3px solid rgba(105,56,239,0.40);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 0.97rem;
    color: #333;
    line-height: 1.65;
    transform: translateZ(0);
    transition: border-left-color 0.2s ease, box-shadow 0.2s ease;
}
.question-card:hover {
    border-left-color: #6938ef;
    box-shadow: 0 4px 20px rgba(105,56,239,0.08);
}

/* ============================================================
   STAGE TILES (clinicstages page)
   ============================================================ */
.stages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.stage-tile {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.68);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05), 0 4px 24px rgba(105,56,239,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0);
    text-decoration: none;
    display: block;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.stage-tile:hover {
    box-shadow: 0 8px 36px rgba(0,0,0,0.09), 0 8px 32px rgba(105,56,239,0.10);
    transform: translateY(-3px) translateZ(0);
    border-color: rgba(105,56,239,0.22);
}
.stage-tile-num {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #6938ef;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.stage-tile-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 6px;
    display: block;
}
.stage-tile-revenue {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6938ef;
    margin-bottom: 14px;
    display: block;
}
.stage-tile-desc {
    font-size: 0.87rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 18px;
    display: block;
}
.stage-tile-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin: 18px 0;
}
.stage-tile-metrics {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.stage-tile-metrics li {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}
.stage-tile-metrics li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #6938ef;
    flex-shrink: 0;
}
.stage-tile-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #6938ef;
    text-decoration: none;
    border-bottom: 1px solid rgba(105,56,239,0.35);
    padding-bottom: 2px;
    transition: gap 0.2s ease;
}
.stage-tile-link:hover { gap: 8px; }

/* ============================================================
   STAGE DETAIL PANELS (inside clinicstages) — expandable
   ============================================================ */
.stage-detail-section {
    padding: 64px 0;
    background: #ffffff;
}
.stage-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 36px;
}
.stage-detail-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.68);
    border-radius: 14px;
    padding: 28px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 4px 20px rgba(105,56,239,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0);
}
.stage-detail-heading {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 14px;
}
.stage-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.stage-detail-list li {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.55;
    padding-left: 16px;
    position: relative;
}
.stage-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #6938ef;
}
.stage-detail-metric {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.55;
    padding: 6px 0 6px 16px;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.stage-detail-metric:last-child { border-bottom: none; }
.stage-detail-metric::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
}
.stage-revenue-bar {
    background: rgba(105,56,239,0.07);
    border: 1px solid rgba(105,56,239,0.14);
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 20px;
    text-align: center;
}
.stage-revenue-bar .amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #6938ef;
    display: block;
    margin-bottom: 4px;
}
.stage-revenue-bar .label {
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================================
   AUDIT CATEGORY CARDS (theaudit page)
   ============================================================ */
.audit-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
}
.audit-category-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.68);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 4px 20px rgba(105,56,239,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.audit-category-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 8px 32px rgba(105,56,239,0.07);
    transform: translateY(-2px) translateZ(0);
}
.audit-cat-num {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #6938ef;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}
.audit-cat-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.3;
}
.audit-cat-desc {
    font-size: 0.87rem;
    color: #666;
    line-height: 1.65;
}

/* ============================================================
   AUDIT PROCESS STEPS (theaudit page)
   ============================================================ */
.audit-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
}
.audit-process-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.68);
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0);
    text-align: center;
}
.process-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(105,56,239,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #6938ef;
    margin: 0 auto 16px;
}
.process-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}
.process-step-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.65;
}

/* ============================================================
   DELIVERABLES (deliverables page)
   ============================================================ */
.deliverables-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 36px;
}
.deliverable-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.68);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateZ(0);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.deliverable-num {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: rgba(105,56,239,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #6938ef;
}
.deliverable-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    line-height: 1.3;
}
.deliverable-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   DELIVERABLES EDITORIAL LAYOUT
   ============================================================ */
.deliverables-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 920px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
}
.deliv-editorial-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 26px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    border-right: 1px solid rgba(0,0,0,0.07);
}
.deliv-editorial-item:nth-child(even) {
    border-right: none;
}
.deliv-editorial-item:nth-last-child(-n+2) {
    border-bottom: none;
}
.deliv-editorial-num {
    font-size: 4.2rem;
    font-weight: 900;
    color: rgba(0,0,0,0.055);
    line-height: 1;
    flex-shrink: 0;
    width: 78px;
    letter-spacing: -0.03em;
}
.deliv-editorial-text h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
    line-height: 1.4;
}
.deliv-editorial-text p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.62;
    margin: 0;
}
@media (max-width: 640px) {
    .deliverables-editorial {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }
    .deliv-editorial-item {
        border-right: none !important;
    }
    .deliv-editorial-item:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(0,0,0,0.07);
    }
    .deliv-editorial-item:last-child {
        border-bottom: none;
    }
    .deliv-editorial-num {
        font-size: 3rem;
        width: 54px;
    }
}

/* ============================================================
   PROBLEMS CHECKLIST
   ============================================================ */
.problems-checklist {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.problem-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 20px;
    border-left: 3px solid rgba(239,68,68,0.38);
    background: none;
    transition: border-left-color 0.2s, background 0.2s;
}
.problem-row:hover {
    border-left-color: rgba(239,68,68,0.7);
    background: rgba(239,68,68,0.025);
}
.problem-row-num {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(239,68,68,0.55);
    flex-shrink: 0;
    padding-top: 4px;
    min-width: 22px;
    letter-spacing: 0.03em;
}
.problem-row h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 640px) {
    .problem-row {
        padding: 15px 14px;
        gap: 14px;
    }
    .problem-row h4 {
        font-size: 0.94rem;
    }
}

/* ============================================================
   AUDIT PROCESS STEPS
   ============================================================ */
.audit-steps {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.audit-step-hero {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 36px;
    background: rgba(105,56,239,0.04);
    border: 1px solid rgba(105,56,239,0.13);
    border-left: 4px solid #6938ef;
    border-radius: 16px;
}
.audit-step-hero .audit-step-num {
    font-size: 4rem;
    color: rgba(105,56,239,0.18);
}
.audit-step-hero .audit-step-body h3 {
    font-size: 1.25rem;
}
.audit-steps-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.audit-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 26px 28px;
    background: #f9f9fb;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
}
.audit-step-num {
    font-size: 3.2rem;
    font-weight: 900;
    color: rgba(0,0,0,0.07);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -0.03em;
    width: 60px;
}
.audit-step-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
    line-height: 1.35;
}
.audit-step-body p {
    font-size: 0.89rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 640px) {
    .audit-step-hero {
        padding: 22px 20px;
        gap: 16px;
    }
    .audit-step-hero .audit-step-num {
        font-size: 2.8rem;
        width: 48px;
    }
    .audit-step-hero .audit-step-body h3 {
        font-size: 1.1rem;
    }
    .audit-steps-pair {
        grid-template-columns: 1fr;
    }
    .audit-step {
        padding: 20px 18px;
    }
    .audit-step-num {
        font-size: 2.4rem;
        width: 46px;
    }
}

/* ============================================================
   PATH CARDS (deliverables page — 3 paths)
   ============================================================ */
.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
}
.path-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.68);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.path-card:hover {
    box-shadow: 0 8px 36px rgba(0,0,0,0.09), 0 8px 32px rgba(105,56,239,0.09);
    transform: translateY(-3px) translateZ(0);
}
.path-card.path-featured {
    background: rgba(105,56,239,0.06);
    border-color: rgba(105,56,239,0.20);
    box-shadow: 0 4px 24px rgba(105,56,239,0.12), 0 8px 40px rgba(0,0,0,0.06);
}
.path-num {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6938ef;
    margin-bottom: 10px;
    display: block;
}
.path-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
}
.path-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.65;
}

/* ============================================================
   GUARANTEE SECTION
   ============================================================ */
.guarantee-card {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(105,56,239,0.18);
    border-radius: 20px;
    padding: 52px 56px;
    box-shadow: 0 8px 48px rgba(105,56,239,0.10), 0 2px 0 rgba(255,255,255,1) inset;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateZ(0);
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.guarantee-amount {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #6938ef;
    line-height: 1;
    margin-bottom: 12px;
}
.guarantee-headline {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.35;
}
.guarantee-body {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 28px;
}
.conditions-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.68);
    border-radius: 14px;
    padding: 32px 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0);
    max-width: 760px;
    margin: 0 auto;
}
.conditions-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.conditions-list li {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}
.conditions-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #6938ef;
}

/* ============================================================
   RESULTS / STATS (results page)
   ============================================================ */
.results-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.result-stat-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.68);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05), 0 4px 24px rgba(105,56,239,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.result-stat-card:hover {
    box-shadow: 0 8px 36px rgba(0,0,0,0.09), 0 8px 32px rgba(105,56,239,0.09);
    transform: translateY(-3px) translateZ(0);
}
.result-stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #451C46;
    line-height: 1;
    margin-bottom: 8px;
}
.result-stat-label {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 8px;
}
.result-stat-context {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 8px;
}
.result-stat-source {
    font-size: 0.72rem;
    color: #bbb;
    font-style: italic;
}
.coming-soon-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.68);
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0);
    text-align: center;
    max-width: 600px;
    margin: 48px auto 0;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.blog-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.68);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05), 0 4px 24px rgba(105,56,239,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: 0 8px 36px rgba(0,0,0,0.09), 0 8px 32px rgba(105,56,239,0.08);
    transform: translateY(-3px) translateZ(0);
}
.blog-tag {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6938ef;
    margin-bottom: 12px;
    display: block;
}
.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
    margin-bottom: 12px;
    flex: 1;
}
.blog-excerpt {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}
.blog-meta {
    font-size: 0.76rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: auto;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 48px;
}
.contact-card {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.70);
    border-radius: 18px;
    padding: 36px 40px;
    box-shadow: 0 4px 28px rgba(0,0,0,0.06), 0 8px 40px rgba(105,56,239,0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateZ(0);
}
.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}
.contact-card p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 24px;
}
.contact-info-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.68);
    border-radius: 14px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0);
    margin-top: 36px;
}
.contact-info-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.92rem;
    color: #444;
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row svg {
    flex-shrink: 0;
    stroke: #6938ef;
}
.contact-info-row a {
    color: #444;
    text-decoration: none;
    transition: color 0.15s;
}
.contact-info-row a:hover { color: #6938ef; }
.calendly-container {
    min-width: 320px;
    height: 580px;
    border-radius: 12px;
    overflow: hidden;
}

/* ============================================================
   PAGE CTA (shared across all pages)
   ============================================================ */
.page-cta-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}
.page-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(105,56,239,0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(69,28,70,0.04) 0%, transparent 55%);
    pointer-events: none;
}
.page-cta-section > .container {
    position: relative;
    z-index: 1;
}
.page-cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.page-cta-inner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.2;
}
.page-cta-inner p {
    font-size: 1rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 32px;
}
.cta-link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #6938ef;
    text-decoration: none;
    margin-top: 16px;
    border-bottom: 1px solid rgba(105,56,239,0.35);
    padding-bottom: 2px;
    transition: gap 0.2s ease;
}
.cta-link-secondary:hover { gap: 8px; }

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.page-section-header {
    margin-bottom: 48px;
    text-align: center;
}
.page-section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 14px;
    line-height: 1.2;
}
.page-section-header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .stages-grid,
    .audit-categories-grid,
    .paths-grid,
    .audit-process-grid,
    .results-stats-grid,
    .blog-grid,
    .stage-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .stages-grid,
    .audit-categories-grid,
    .paths-grid,
    .audit-process-grid,
    .results-stats-grid,
    .blog-grid,
    .stage-detail-grid {
        grid-template-columns: 1fr;
    }
    .guarantee-card { padding: 36px 24px; }
    .page-hero { padding: 120px 0 60px; }
    .page-section,
    .page-section-alt { padding: 60px 0; }
    .contact-card { padding: 28px 24px; }
}


/* ============================================================
   SHARED NAV — matches homepage nav on all pages
   ============================================================ */
.hp-nav-outer {
    position: sticky; top: 0; z-index: 9999;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transform: translateZ(0);
}
.hp-nav {
    max-width: 1180px; margin: 0 auto;
    padding: 16px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
}
.hp-nav-logo {
    display: flex; align-items: center; gap: 9px;
    text-decoration: none; flex-shrink: 0;
}
.hp-nav-logo img { height: 30px; width: 30px; }
.hp-nav-logo span { font-size: 1rem; font-weight: 800; color: #111; letter-spacing: -0.02em; }
.hp-nav-links {
    display: flex; align-items: center; gap: 28px;
    list-style: none; flex: 1; justify-content: center;
}
.hp-nav-links a {
    font-size: 0.86rem; font-weight: 500; color: #555;
    text-decoration: none; transition: color 0.15s; white-space: nowrap;
}
.hp-nav-links a:hover { color: #6938ef; }
.hp-nav-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-nav-ghost {
    font-size: 0.84rem; font-weight: 600; color: #111;
    background: transparent; border: 1.5px solid rgba(0,0,0,0.18);
    border-radius: 100px; padding: 7px 16px; text-decoration: none;
    transition: border-color 0.15s, color 0.15s; white-space: nowrap;
}
.btn-nav-ghost:hover { border-color: #6938ef; color: #6938ef; }
.btn-nav-dark {
    font-size: 0.84rem; font-weight: 700; color: #fff;
    background: #111; border-radius: 100px; padding: 8px 18px;
    text-decoration: none; transition: background 0.18s; white-space: nowrap;
}
.btn-nav-dark:hover { background: #6938ef; }
.hp-dd-wrap { position: relative; display: flex; align-items: center; }

.hp-dd-trigger { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.hp-dd-trigger svg { opacity: 0.45; transition: transform 0.2s; }
.hp-dd-wrap.dd-active .hp-dd-trigger svg { transform: rotate(180deg); opacity: 0.9; }
.hp-dd {
    position: absolute; top: calc(100% + 4px); left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: #fff; border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px; padding: 6px 0; min-width: 200px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    opacity: 0; visibility: hidden;
    transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
    z-index: 10000;
}
/* Invisible bridge fills the gap so hover state doesn't break */

.hp-dd.dd-open { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.hp-dd a {
    display: flex; align-items: center; gap: 9px;
    padding: 9px 16px; font-size: 0.84rem; color: #555;
    text-decoration: none; transition: color 0.12s, background 0.12s;
}
.hp-dd a:hover { color: #6938ef; background: rgba(105,56,239,0.04); }
.dd-num { font-size: 0.6rem; font-weight: 700; color: #6938ef; letter-spacing: 0.1em; min-width: 16px; }
.hp-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hp-ham, .hp-ham::before, .hp-ham::after {
    display: block; width: 22px; height: 2px;
    background: #111; border-radius: 2px; transition: all 0.25s;
}
.hp-ham { position: relative; }
.hp-ham::before, .hp-ham::after { content: ''; position: absolute; left: 0; }
.hp-ham::before { top: -7px; }
.hp-ham::after { top: 7px; }
.hp-mobile-nav {
    display: none; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid rgba(0,0,0,0.07); padding: 8px 0;
}
.hp-mobile-nav.open { display: flex; }
.hp-mobile-nav a {
    padding: 12px 40px; font-size: 0.9rem; font-weight: 500;
    color: #555; text-decoration: none; transition: color 0.14s;
}
.hp-mobile-nav a:hover { color: #6938ef; }
.hp-mobile-nav .hp-mobile-sub {
    padding: 8px 40px 8px 60px; font-size: 0.8rem; font-weight: 500;
    color: #888; border-left: 2px solid rgba(105,56,239,0.2); margin-left: 40px; padding-left: 16px;
}
.hp-mobile-nav .hp-mobile-sub:hover { color: #6938ef; }
.hp-mobile-nav .hp-mobile-cta {
    margin: 8px 40px; background: #111; color: #fff;
    font-weight: 700; border-radius: 100px; text-align: center;
    padding: 11px 20px; transition: background 0.18s;
}
.hp-mobile-cta:hover { background: #6938ef !important; color: #fff !important; }
@media (max-width: 960px) {
    .hp-nav-links { display: none; }
    .hp-nav-ctas { display: flex; }
    .hp-nav-ctas .btn-nav-ghost { display: none; }
    .hp-nav-ctas .btn-nav-dark {
        font-size: 0.78rem; padding: 7px 14px;
    }
    .hp-toggle { display: block; }
}
@media (max-width: 600px) {
    .hp-nav { padding-left: 20px; padding-right: 20px; }
}


/* ── Mobile nav accordion ── */
.hp-mobile-acc-wrap { display: flex; flex-direction: column; }
.hp-mobile-acc-trigger {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 40px; background: none; border: none; cursor: pointer;
    text-align: left; width: 100%;
}
.hp-mobile-acc-trigger span {
    font-size: 0.9rem; font-weight: 500; color: #555; transition: color 0.14s;
}
.hp-mobile-acc-trigger:hover span { color: #6938ef; }
.acc-chevron { opacity: 0.4; transition: transform 0.22s, opacity 0.22s; flex-shrink: 0; stroke: #555; }
.hp-mobile-acc-wrap.acc-open .acc-chevron { transform: rotate(180deg); opacity: 0.8; stroke: #6938ef; }
.hp-mobile-acc-items {
    display: none; flex-direction: column;
    border-left: 2px solid rgba(105,56,239,0.18);
    margin: 0 40px 4px;
}
.hp-mobile-acc-items.acc-items-open { display: flex; }
.hp-mobile-acc-items a {
    padding: 9px 16px !important; font-size: 0.82rem !important;
    color: #888 !important; font-weight: 500 !important;
}
.hp-mobile-acc-items a:hover { color: #6938ef !important; }
/* ============================================================
   FLOAT ANIMATIONS — shared across all pages
   ============================================================ */
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
.float-card {
  animation: floatCard 6s ease-in-out infinite;
  will-change: transform;
}
.float-card-2 { animation: floatCard 7s ease-in-out infinite; animation-delay: -2s; will-change: transform; }
.float-card-3 { animation: floatCard 8s ease-in-out infinite; animation-delay: -4s; will-change: transform; }
.float-card-4 { animation: floatCard 6.5s ease-in-out infinite; animation-delay: -1s; will-change: transform; }

/* ============================================================
   AUDIT HERO SPLIT + STACKED CARDS
   ============================================================ */
.audit-hero-inner {
    display: flex; align-items: center; gap: 56px;
    flex-wrap: wrap;
}
.audit-hero-text { flex: 1; min-width: 280px; }
.audit-hero-cards {
    flex: 0 0 300px; display: flex; align-items: center; justify-content: center;
}
.audit-card-back {
    width: 280px;
    border-radius: 16px; background: #fff;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.04);
    overflow: hidden;
}
@media (max-width: 900px) {
    .audit-hero-cards { display: none; }
}

/* ============================================================
   MOCK UI CARDS — shared across all pages
   ============================================================ */
.mockup-pair { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; align-items:stretch; }
.mock-card {
	background:#fff; border-radius:16px;
	box-shadow:0 4px 40px rgba(0,0,0,0.08),0 1px 4px rgba(0,0,0,0.04);
	padding:20px 22px; min-width:250px; max-width:310px; flex:1;
}
.mock-head { display:flex; align-items:center; gap:8px; margin-bottom:14px; }
.mock-pulse {
	width:8px; height:8px; border-radius:50%; background:#22c55e;
	box-shadow:0 0 6px #22c55e;
	animation:dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.mock-title { font-size:.85rem; font-weight:700; color:#111; }
.mock-title-lg { font-size:.9rem; font-weight:800; color:#111; }
.mock-divider { height:1px; background:rgba(0,0,0,0.06); margin:10px 0; }
.mock-row { display:flex; align-items:center; gap:10px; padding:8px 10px; border-radius:8px; background:#f8f9fa; margin-bottom:5px; }
.mock-ico { width:22px; height:22px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.62rem; font-weight:900; flex-shrink:0; }
.ico-r{background:rgba(239,68,68,.12);color:#ef4444;}
.ico-y{background:rgba(234,179,8,.12);color:#eab308;}
.ico-g{background:rgba(34,197,94,.12);color:#22c55e;}
.mock-lbl { font-size:.78rem; color:#555; flex:1; }
.mock-val { font-size:.8rem; font-weight:700; }
.val-r{color:#ef4444;} .val-o{color:#f97316;} .val-y{color:#eab308;} .val-g{color:#22c55e;}
.mock-bar-row { display:flex; align-items:center; gap:10px; margin-bottom:9px; }
.mock-bar-lbl { font-size:.75rem; color:#555; width:88px; flex-shrink:0; }
.mock-bar-track { flex:1; height:5px; background:rgba(0,0,0,0.07); border-radius:10px; overflow:hidden; }
.mock-bar-fill { height:100%; border-radius:10px; }
.mock-bar-amt { font-size:.75rem; font-weight:700; width:44px; text-align:right; flex-shrink:0; }
.mock-total-row { display:flex; justify-content:space-between; align-items:center; margin-top:12px; }
.mock-total-lbl { font-size:.76rem; color:#888; }
.mock-total-val { font-size:1.35rem; font-weight:900; color:#ef4444; }
.mock-audit { max-width:380px; margin:0 auto; position:relative; overflow:hidden; }
.mock-scan { position:absolute; top:0; left:0; right:0; height:1.5px; background:linear-gradient(90deg,transparent,rgba(105,56,239,0.5),transparent); animation:scanMove 2.6s ease-in-out infinite; }
@keyframes scanMove { 0%{top:0;opacity:1} 100%{top:100%;opacity:0} }
.mock-ring-row { display:flex; align-items:center; gap:12px; padding:9px 12px; border-radius:10px; margin-bottom:5px; }
.mock-ring-active { border:1.5px solid rgba(105,56,239,0.25); background:rgba(105,56,239,0.03); }
.ring-bg { fill:none; stroke:rgba(0,0,0,0.08); stroke-width:3; }
.ring-fill { fill:none; stroke-width:3; stroke-linecap:round; transform:rotate(-90deg); transform-origin:50% 50%; }
.mock-ring-name { font-size:.81rem; font-weight:600; color:#111; }
.mock-ring-badge { font-size:.58rem; font-weight:800; letter-spacing:.07em; margin-top:2px; }
.badge-critical{color:#ef4444;} .badge-high{color:#f97316;} .badge-mod{color:#eab308;}
.mock-ring-score { margin-left:auto; font-size:.82rem; font-weight:800; }
.mock-audit-id { margin-left:auto; font-size:.7rem; color:#aaa; }
.mock-journey-pair { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; align-items:flex-start; margin-top:44px; }
.mock-journey-badge { display:inline-block; background:rgba(105,56,239,0.1); color:#6938ef; font-size:.7rem; font-weight:700; padding:3px 10px; border-radius:100px; margin-bottom:14px; }
.mock-jrow { display:flex; align-items:center; gap:12px; padding:11px 12px; border-radius:10px; margin-bottom:4px; }
.mock-jrow.j-active { background:rgba(105,56,239,0.06); }
.mock-jrow-connector { width:1px; height:8px; background:rgba(0,0,0,0.1); margin:0 15px; }
.mock-jico { width:32px; height:32px; border-radius:8px; background:#f3f4f6; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.j-active .mock-jico { background:rgba(105,56,239,0.1); }
.mock-jtitle { font-size:.82rem; font-weight:700; color:#111; }
.mock-jsub { font-size:.72rem; color:#888; margin-top:1px; }
.mock-jdot { width:10px; height:10px; border-radius:50%; background:#6938ef; border:1.5px solid #6938ef; margin-left:auto; animation:dotPulse 1.5s infinite; }
.mock-check-row { display:flex; align-items:flex-start; gap:10px; padding:9px 0; border-bottom:1px solid rgba(0,0,0,0.05); font-size:.8rem; color:#444; line-height:1.4; }
.mock-check-ico { width:18px; height:18px; border-radius:50%; background:rgba(34,197,94,0.12); color:#22c55e; display:flex; align-items:center; justify-content:center; font-size:.58rem; flex-shrink:0; margin-top:1px; }

/* ============================================================
   STAGE DIAL CARD
   ============================================================ */
.stage-dial-hero { display:flex; align-items:center; gap:56px; flex-wrap:wrap; }
.stage-dial-hero-text { flex:1; min-width:280px; }
.stage-dial-hero-visual { flex:0 0 380px; display:flex; justify-content:center; align-items:center; }
.stage-dial-card {
    background:#fff;
    border-radius:20px;
    box-shadow:0 8px 40px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.04);
    padding:24px 40px 22px;
    width:370px;
}
.stage-dial-card svg { display:block; margin:0 auto; }
.stage-dial-title {
    font-size:.75rem; font-weight:700; color:#bbb;
    text-transform:uppercase; letter-spacing:.12em;
    margin-bottom:4px; text-align:center;
}
.stage-dial-labels {
    display:grid; grid-template-columns:140px 140px;
    gap:6px 20px; margin:12px auto 0;
    width:300px;
}
.stage-dial-labels span {
    font-size:.68rem; font-weight:700; color:#444;
    display:flex; align-items:center; gap:6px;
    white-space:nowrap;
}
.dial-num {
    font-size:.65rem; font-weight:900; flex-shrink:0;
}
.dn1 { color:#9b72f5; }
.dn2 { color:#8b5cf6; }
.dn3 { color:#7c3aed; }
.dn4 { color:#6938ef; }
@keyframes dialSweep {
    0%   { transform: rotate(-67deg); }
    10%  { transform: rotate(-67deg); }
    28%  { transform: rotate(-23deg); }
    38%  { transform: rotate(-23deg); }
    53%  { transform: rotate(21deg);  }
    63%  { transform: rotate(21deg);  }
    78%  { transform: rotate(65deg);  }
    90%  { transform: rotate(65deg);  }
    100% { transform: rotate(-67deg); }
}
.dial-needle {
    transform-origin: 150px 160px;
    animation: dialSweep 6s ease-in-out infinite;
}
@media (max-width:900px) { .stage-dial-hero-visual { display:none; } }

/* ============================================================
   PROBLEMS TIMELINE CARD
   ============================================================ */
.problems-bold-list {
    max-width: 700px;
}
.pbl-item {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    margin: 0;
}
.pbl-item:first-child { padding-top: 0; }
.pbl-item:last-child { border-bottom: none; padding-bottom: 0; }



/* ============================================================
   GEOMETRIC TILE BACKGROUND — site-wide (not on stage pages)
   ============================================================ */
.page-geo {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
/* Square grid tiles — fades from left/right edges toward centre */
.page-geo::before {
    content: '';
    position: absolute;
    inset: -5%;
    background-image:
        linear-gradient(rgba(105,56,239,0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(105,56,239,0.10) 1px, transparent 1px);
    background-size: 58px 58px;
    -webkit-mask-image: linear-gradient(
        to right,
        black 0%,
        rgba(0,0,0,0.6) 10%,
        transparent 32%,
        transparent 68%,
        rgba(0,0,0,0.6) 90%,
        black 100%
    );
    mask-image: linear-gradient(
        to right,
        black 0%,
        rgba(0,0,0,0.6) 10%,
        transparent 32%,
        transparent 68%,
        rgba(0,0,0,0.6) 90%,
        black 100%
    );
}
/* Soft purple colour wash on left and right edges */
.page-geo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 52% 90% at -5% 40%, rgba(105,56,239,0.14) 0%, transparent 70%),
        radial-gradient(ellipse 52% 90% at 105% 40%, rgba(105,56,239,0.14) 0%, transparent 70%),
        radial-gradient(ellipse 45% 70% at -3% 85%, rgba(105,56,239,0.09) 0%, transparent 60%),
        radial-gradient(ellipse 45% 70% at 103% 85%, rgba(105,56,239,0.09) 0%, transparent 60%);
}
/* All page content sits above the geo layer */
.hp-nav-outer, nav, main, section, footer, .container {
    position: relative;
    z-index: 1;
}

/* Nav blends into geometric background — no white box */
.hp-nav-outer {
    background: rgba(250,248,255,0.82) !important;
    border-bottom: 1px solid rgba(105,56,239,0.08) !important;
}

/* ============================================================
   PROBLEMS GRID (problemssolved.html)
   ============================================================ */
.problems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 840px;
    margin: 0 auto;
}
.problem-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: default;
}
.problem-card:hover {
    box-shadow: 0 8px 32px rgba(105,56,239,0.13), 0 2px 8px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
/* 7th card spans full width but stays half-width centred */
.problem-card-last {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
    margin: 0 auto;
    width: 100%;
}
.problem-num {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, #6938ef 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    padding-top: 4px;
    min-width: 24px;
}
.problem-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin: 0;
}
@media (max-width: 640px) {
    .problems-grid { grid-template-columns: 1fr; }
    .problem-card-last { grid-column: auto; max-width: 100%; }
}

/* ============================================================
   GLOBAL UX FIXES
   ============================================================ */
/* cursor-pointer on interactive cards */
.audit-category-card,
.revenue-killer-card,
.stage-tile,
.result-card {
    cursor: pointer;
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .page-geo::before,
    .mock-pulse,
    .float-card,
    .animate-on-scroll {
        animation: none !important;
        transition: none !important;
    }
}

/* Body text line-length cap */
.page-section-header p,
.page-cta-inner p {
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}
/* Hero lead: max-width only. Centering is handled per-page via .page-hero .container */
.page-hero-lead {
    max-width: 65ch;
}

/* ============================================================
   ALIGNMENT RULES
   ============================================================ */

/* Stage tiles: top section centred, metrics section left-aligned */
.stage-tile { text-align: center; }
.stage-tile-metrics { align-items: flex-start; }
.stage-tile-metrics li { justify-content: flex-start; }
.stage-tile-link { display: inline-flex; text-align: center; }

/* Problem cards: column layout, centred */
.problem-num { min-width: auto; padding-top: 0; }

/* Audit category cards: left-aligned */
.audit-cat-num,
.audit-cat-name,
.audit-cat-desc { text-align: left; }

/* Deliverable content: left-aligned */
.deliverable-content { text-align: left; }

@media (max-width: 640px) {
    .page-section-header { text-align: center; }
}

/* ============================================================
   STAGE TILE — PROBLEMS (red chip) & BENCHMARKS (green chip)
   ============================================================ */
.stage-problems,
.stage-benchmarks {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.stage-problems li,
.stage-benchmarks li {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 3px 0;
    width: 100%;
    text-align: center;
    display: block;
    background: none;
    border-radius: 0;
}
.stage-problems li {
    color: #c0392b;
    text-shadow: 0 0 18px rgba(239,68,68,0.45);
}
.stage-benchmarks li {
    color: #166534;
    text-shadow: 0 0 18px rgba(34,197,94,0.45);
}
/* Remove old bullet dot from these lists */
.stage-problems li::before,
.stage-benchmarks li::before { display: none; }

/* ============================================================
   WORD-BLUR REVEAL (sitewide H2 animation)
   ============================================================ */
.blur-word {
    display: inline;
    opacity: 0;
    filter: blur(10px);
    transition:
        opacity 0.7s cubic-bezier(0.22,1,0.36,1),
        filter  0.7s cubic-bezier(0.22,1,0.36,1);
}
.blur-word.bw-vis {
    opacity: 1;
    filter: blur(0);
}
