/* ===== OPEN PATH — SHARED STYLESHEET ===== */
:root {
    --primary-orange: #F4A261;
    --secondary-orange: #E07A3F;
    --bg-color: #FAF7F2;
    --white: #FFFFFF;
    --text-dark: #2F2A26;
    --text-muted: #6F6A63;
    --accent-light: #F6E3C5;
    --accent-green: #7A8F5A;
    --accent-green-dark: #657a4a;
    --deep: #2B3A2E;
    --shadow-soft: 0 10px 40px -10px rgba(47, 42, 38, 0.08);
    --shadow-hover: 0 20px 50px -10px rgba(47, 42, 38, 0.15);
    --container-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; color: var(--text-dark); line-height: 1.2; }
p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1.5rem; }
a { text-decoration: none; transition: all 0.3s ease; color: inherit; }

.container { width: 90%; max-width: var(--container-width); margin: 0 auto; position: relative; }
.container-narrow { width: 90%; max-width: 760px; margin: 0 auto; position: relative; }
.text-center { text-align: center; }
.eyebrow {
    display: inline-block; font-family: 'Lato', sans-serif; font-weight: 700;
    font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--secondary-orange); margin-bottom: 1rem;
}
.section-lead { max-width: 640px; margin: 0 auto 3.5rem auto; }
.section-lead h2 { font-size: 2.4rem; margin-bottom: 1rem; }
.tm { font-size: 0.55em; vertical-align: super; opacity: 0.6; font-family: 'Lato', sans-serif; }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- NAV --- */
header {
    position: sticky; top: 0; width: 100%; z-index: 1000;
    background: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(47, 42, 38, 0.05);
    padding: 1.1rem 0; transition: padding 0.3s ease;
}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text-dark); letter-spacing: -0.02em; }
.logo span { color: var(--secondary-orange); }
.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-dark); position: relative; }
.nav-links > a:not(.btn-nav)::after {
    content: ''; position: absolute; width: 0; height: 1px; bottom: -4px; left: 0;
    background-color: var(--secondary-orange); transition: width 0.3s ease;
}
.nav-links > a:not(.btn-nav):hover::after { width: 100%; }
.btn-nav {
    background-color: var(--accent-green); color: var(--white) !important;
    padding: 0.6rem 1.4rem; border-radius: 50px; font-weight: 600;
}
.btn-nav:hover { background-color: var(--accent-green-dark); transform: translateY(-1px); }
.mobile-menu-btn { display: none; cursor: pointer; background: none; border: none; color: var(--text-dark); padding: 0.3rem; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2.2rem;
    border-radius: 50px; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
    cursor: pointer; transition: all 0.3s ease; border: 1px solid transparent;
}
.btn-primary { background-color: var(--secondary-orange); color: var(--white); box-shadow: 0 4px 15px rgba(224, 122, 63, 0.3); }
.btn-primary:hover { background-color: var(--primary-orange); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(224, 122, 63, 0.4); }
.btn-outline { background-color: transparent; color: var(--text-dark); border-color: var(--text-dark); }
.btn-outline:hover { background-color: var(--text-dark); color: var(--white); }
.btn-green { background-color: var(--accent-green); color: var(--white); box-shadow: 0 4px 15px rgba(122, 143, 90, 0.3); }
.btn-green:hover { background-color: var(--accent-green-dark); transform: translateY(-2px); }
.btn-ghost-light { color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: var(--white); color: var(--deep); }
.btn-block { width: 100%; justify-content: center; }

/* --- HERO --- */
.hero { position: relative; padding: 7rem 0 5rem 0; background: linear-gradient(180deg, var(--bg-color) 0%, #FFF 100%); overflow: hidden; }
.hero::before {
    content: ''; position: absolute; top: -10%; right: -5%; width: 600px; height: 600px;
    background: radial-gradient(circle, var(--accent-light) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.6; z-index: 0; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-content h1 { font-size: 3.6rem; font-weight: 700; margin-bottom: 1.3rem; }
.hero-content h1 span { font-style: italic; font-weight: 400; color: var(--secondary-orange); }
.hero-content p { font-size: 1.25rem; margin-bottom: 2.2rem; max-width: 95%; font-weight: 300; }
.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-microcopy { margin-top: 1.4rem; font-size: 0.9rem; color: var(--text-muted); }
.hero-microcopy b { color: var(--text-dark); }
.hero-visual { position: relative; height: 480px; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); }
.hero-img { width: 100%; height: 100%; object-fit: cover; background-image: url('/homepage.png'); background-position: center; background-size: cover; }
.hero-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, rgba(47, 42, 38, 0.15), rgba(244, 162, 97, 0.15)); }

/* --- INTERIOR PAGE HERO --- */
.page-hero { padding: 5rem 0 3.5rem 0; background: linear-gradient(180deg, var(--bg-color) 0%, #FFF 100%); text-align: center; }
.page-hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.page-hero h1 span { font-style: italic; color: var(--secondary-orange); font-weight: 400; }
.page-hero p { font-size: 1.2rem; max-width: 640px; margin: 0 auto; font-weight: 300; }
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--secondary-orange); }

/* --- TRUST STRIP (elevated) --- */
.trust-strip { padding: 2rem 0; background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.05); }
.trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 2.6rem; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.trust-item i { color: var(--accent-green); width: 20px; height: 20px; flex-shrink: 0; }

/* --- PROBLEM --- */
.problem { padding: 6rem 0; background: var(--bg-color); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.problem h2 { font-size: 2.4rem; margin-bottom: 1.2rem; }
.problem-list { list-style: none; margin-top: 1rem; }
.problem-list li { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.9rem; color: var(--text-dark); }
.problem-list li i { color: var(--secondary-orange); margin-top: 4px; flex-shrink: 0; }
.problem-callout { background: var(--white); border-left: 4px solid var(--accent-green); border-radius: 4px; padding: 2.5rem; box-shadow: var(--shadow-soft); }
.problem-callout h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.problem-callout p { margin-bottom: 0; }

/* --- MATURITY MODEL --- */
.maturity { padding: 6rem 0; background: var(--deep); color: var(--white); position: relative; }
.maturity h2, .maturity h3 { color: var(--white); }
.maturity p { color: rgba(255,255,255,0.75); }
.maturity .eyebrow { color: var(--primary-orange); }
.ladder { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin: 3rem 0 2.5rem 0; }
.rung { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 1.6rem 1.2rem; text-align: center; position: relative; transition: transform 0.3s ease, background 0.3s ease; }
.rung:hover { transform: translateY(-6px); background: rgba(255,255,255,0.09); }
.rung .lvl { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--primary-orange); line-height: 1; }
.rung .name { font-weight: 700; margin: 0.6rem 0 0.3rem 0; font-size: 1.05rem; }
.rung .desc { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.rung:nth-child(5) { background: rgba(122,143,90,0.22); border-color: var(--accent-green); }

/* --- SPLIT FEATURE --- */
.feature-split { padding: 6rem 0; background: var(--bg-color); }
.fs-card { background: var(--white); border-radius: 14px; box-shadow: var(--shadow-soft); display: grid; grid-template-columns: 1fr 0.85fr; overflow: hidden; border-top: 4px solid var(--secondary-orange); }
.fs-body { padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.fs-body h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.fs-meta { display: flex; gap: 1.8rem; margin: 1.5rem 0 2rem 0; flex-wrap: wrap; }
.fs-meta div { display: flex; flex-direction: column; }
.fs-meta .n { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--secondary-orange); }
.fs-meta .l { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.fs-visual { background: linear-gradient(160deg, var(--accent-light), var(--primary-orange)); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.score-badge { text-align: center; color: var(--deep); }
.score-badge .ring { width: 190px; height: 190px; border-radius: 50%; background: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); border: 8px solid var(--accent-green); }
.score-badge .num { font-family: 'Playfair Display', serif; font-size: 3.6rem; line-height: 1; color: var(--deep); }
.score-badge .cap { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-green-dark); font-weight: 700; }
.score-badge .sub { margin-top: 1rem; font-weight: 700; color: var(--deep); }

/* --- PLAYBOOKS --- */
.playbooks { padding: 6rem 0; background: var(--white); }
.pb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.pb-card { background: var(--bg-color); border-radius: 12px; padding: 2.2rem; border: 1px solid rgba(0,0,0,0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.pb-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.pb-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; color: var(--secondary-orange); margin-bottom: 1.2rem; }
.pb-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.pb-outcome { font-style: italic; color: var(--text-dark); margin-bottom: 1.2rem; font-size: 1rem; }
.pb-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 1.2rem; border-top: 1px solid rgba(0,0,0,0.06); }
.pb-setup { font-size: 0.8rem; color: var(--text-muted); }
.pb-link { font-weight: 700; font-size: 0.85rem; color: var(--secondary-orange); display: inline-flex; align-items: center; gap: 4px; }
.flag-pill { display: inline-block; background: var(--accent-green); color: #fff; font-size: 0.66rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 0.8rem; }

/* --- TRUST PILLARS --- */
.trust-pillars { padding: 6rem 0; background: var(--bg-color); }
.tp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.tp-card { background: var(--white); border-radius: 12px; padding: 2rem; box-shadow: var(--shadow-soft); border-top: 3px solid var(--accent-green); }
.tp-card .ic { width: 46px; height: 46px; border-radius: 10px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; color: var(--secondary-orange); margin-bottom: 1rem; }
.tp-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.tp-card p { font-size: 0.92rem; margin: 0; }

/* --- TWO-UP --- */
.twoup { padding: 6rem 0; background: var(--white); }
.twoup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.info-card { background: var(--bg-color); border-radius: 14px; padding: 3rem; box-shadow: var(--shadow-soft); }
.info-card .eyebrow { display: block; }
.info-card h2 { font-size: 1.9rem; margin-bottom: 1rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0 2rem 0; }
.tag { background: var(--accent-light); color: var(--text-dark); font-size: 0.8rem; padding: 5px 14px; border-radius: 20px; }
.info-card.research { background: var(--deep); color: var(--white); }
.info-card.research h2 { color: var(--white); }
.info-card.research p { color: rgba(255,255,255,0.75); }
.info-card.research .eyebrow { color: var(--primary-orange); }
.info-card.research .tag { background: rgba(255,255,255,0.1); color: var(--white); }

/* --- IMPACT --- */
.impact { padding: 7rem 0; background: linear-gradient(160deg, #33452F 0%, var(--deep) 100%); color: var(--white); }
.impact h2, .impact h3, .impact h4 { color: var(--white); }
.impact p { color: rgba(255,255,255,0.8); }
.impact .eyebrow { color: var(--primary-orange); }
.impact-head { max-width: 720px; margin: 0 auto 3rem auto; text-align: center; }
.impact-head h2 { font-size: 2.6rem; margin-bottom: 1rem; }
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 3rem; }
.support-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 1.8rem; }
.support-card i { color: var(--primary-orange); margin-bottom: 0.8rem; }
.support-card h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.4rem; font-family: 'Playfair Display', serif; }
.support-card p { font-size: 0.85rem; margin: 0; }
.impact-cta { text-align: center; }
.impact-cta .btn { margin: 0 0.4rem; }

/* --- PRICING --- */
.pricing { padding: 6rem 0; background: var(--bg-color); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; max-width: 980px; margin: 0 auto; align-items: stretch; }
.price-card { background: var(--white); border-radius: 14px; padding: 2.4rem; box-shadow: var(--shadow-soft); border: 2px solid transparent; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--secondary-orange); position: relative; }
.price-card.featured::before { content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--secondary-orange); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; }
.price-card h3 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.price-amt { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: var(--text-dark); margin: 0.5rem 0; }
.price-amt span { font-size: 1rem; color: var(--text-muted); font-family: 'Lato', sans-serif; }
.price-feats { list-style: none; margin: 1.5rem 0 2rem 0; }
.price-feats li { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.7rem; font-size: 0.95rem; color: var(--text-dark); }
.price-feats li i { color: var(--accent-green); margin-top: 4px; flex-shrink: 0; }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-note { text-align: center; margin-top: 2rem; font-size: 0.9rem; }

/* --- FINAL CTA --- */
.final-cta { padding: 6rem 0; background: var(--white); text-align: center; }
.final-cta h2 { font-size: 2.6rem; margin-bottom: 1rem; }
.final-cta p { max-width: 600px; margin: 0 auto 2rem auto; font-size: 1.15rem; }

/* --- PROSE (legal / about) --- */
.prose { padding: 3.5rem 0 5rem 0; }
.prose h2 { font-size: 1.6rem; margin: 2.5rem 0 0.8rem 0; }
.prose h3 { font-size: 1.2rem; margin: 1.8rem 0 0.6rem 0; color: var(--secondary-orange); }
.prose p, .prose li { color: var(--text-muted); font-size: 1rem; }
.prose ul, .prose ol { margin: 0 0 1.5rem 1.3rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--secondary-orange); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose .meta { font-size: 0.9rem; color: var(--text-muted); border-bottom: 1px solid rgba(0,0,0,0.08); padding-bottom: 1.5rem; margin-bottom: 1rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem 0; font-size: 0.92rem; }
.prose th, .prose td { text-align: left; padding: 0.7rem 0.8rem; border: 1px solid rgba(0,0,0,0.1); vertical-align: top; }
.prose th { background: var(--accent-light); font-family: 'Lato', sans-serif; }
.callout-box { background: var(--white); border-left: 4px solid var(--accent-green); border-radius: 4px; padding: 1.5rem 1.8rem; margin: 1.5rem 0; box-shadow: var(--shadow-soft); }
.callout-box p { margin: 0; color: var(--text-dark); }

/* --- VALUES --- */
.values-section { padding: 5rem 0; background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; }
.value-cell { text-align: center; }
.value-cell .ic { width: 44px; height: 44px; margin: 0 auto 0.8rem auto; border-radius: 50%; background: var(--accent-light); display: flex; align-items: center; justify-content: center; color: var(--secondary-orange); }
.value-cell h4 { font-family: 'Lato', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 0.82rem; margin-bottom: 0.3rem; }
.value-cell p { font-size: 0.85rem; margin: 0; }

/* --- SPONSOR TIERS --- */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin: 2.5rem 0; }
.tier-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 1.8rem; text-align: center; transition: transform 0.3s ease, background 0.3s ease; }
.tier-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.11); }
.tier-card .amt { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--primary-orange); }
.tier-card .per { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.tier-card p { font-size: 0.88rem; margin: 0.8rem 0 0 0; }

/* --- INITIATIVES --- */
.init-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.init-card { background: var(--white); border-radius: 12px; padding: 2rem; box-shadow: var(--shadow-soft); border-top: 3px solid var(--secondary-orange); }
.init-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.init-card p { font-size: 0.9rem; margin: 0; }

/* --- FORMS --- */
.form-card { background: var(--white); border-radius: 14px; box-shadow: var(--shadow-soft); padding: 2.8rem; }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text-dark); }
.field input, .field textarea, .field select {
    width: 100%; padding: 0.85rem 1rem; border: 1px solid rgba(47,42,38,0.18); border-radius: 8px;
    font-family: 'Lato', sans-serif; font-size: 1rem; color: var(--text-dark); background: var(--bg-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--secondary-orange); box-shadow: 0 0 0 3px rgba(224,122,63,0.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.35rem; }
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 1rem; }

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); padding: 1.3rem 0; }
.faq-item h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.faq-item p { margin: 0; font-size: 0.98rem; }

/* --- PLAYBOOK DETAIL --- */
.pb-detail { padding: 5rem 0; }
.pb-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.pb-detail-visual { height: 380px; border-radius: 14px; background: linear-gradient(160deg, var(--accent-light), var(--primary-orange)); box-shadow: var(--shadow-soft); display: flex; align-items: center; justify-content: center; color: var(--white); }
.pb-detail-visual i { width: 90px; height: 90px; opacity: 0.9; }
.steps { counter-reset: step; }
.step { display: flex; gap: 1.2rem; margin-bottom: 1.6rem; }
.step .num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--secondary-orange); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; }
.step h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.step p { font-size: 0.95rem; margin: 0; }
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin: 2rem 0; }
.outcome-card { background: var(--white); border-radius: 12px; padding: 1.8rem; box-shadow: var(--shadow-soft); }
.outcome-card i { color: var(--accent-green); margin-bottom: 0.6rem; }
.outcome-card h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.outcome-card p { font-size: 0.9rem; margin: 0; }

/* --- ASSESSMENT ENGINE --- */
.assess-wrap { max-width: 780px; margin: 0 auto; padding: 3rem 0 5rem 0; }
.assess-card { background: var(--white); border-radius: 16px; box-shadow: var(--shadow-soft); padding: 3rem; min-height: 420px; }
.progress-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.progress-bar { height: 8px; background: var(--accent-light); border-radius: 20px; overflow: hidden; margin-bottom: 2.2rem; }
.progress-fill { height: 100%; width: 0; background: var(--secondary-orange); border-radius: 20px; transition: width 0.4s ease; }
.q-dim { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--secondary-orange); font-weight: 700; margin-bottom: 0.8rem; }
.q-text { font-family: 'Playfair Display', serif; font-size: 1.7rem; margin-bottom: 2rem; line-height: 1.3; }
.likert { display: flex; flex-direction: column; gap: 0.7rem; }
.likert button {
    text-align: left; padding: 1rem 1.3rem; border: 1px solid rgba(47,42,38,0.15); border-radius: 10px;
    background: var(--bg-color); font-family: 'Lato', sans-serif; font-size: 1rem; color: var(--text-dark);
    cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; gap: 0.8rem;
}
.likert button:hover { border-color: var(--secondary-orange); background: #fff; transform: translateX(4px); }
.likert button.selected { border-color: var(--secondary-orange); background: var(--accent-light); font-weight: 700; }
.likert button .dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--secondary-orange); flex-shrink: 0; }
.likert button.selected .dot { background: var(--secondary-orange); }
.assess-nav { display: flex; justify-content: space-between; margin-top: 2rem; }
.assess-nav .btn-back { background: none; border: none; color: var(--text-muted); cursor: pointer; font-weight: 600; font-family: 'Lato', sans-serif; font-size: 0.95rem; }
.assess-nav .btn-back:hover { color: var(--text-dark); }
.assess-nav .btn-back[disabled] { opacity: 0; pointer-events: none; }

/* intro / gate screens */
.assess-screen { text-align: center; }
.assess-screen h2 { font-size: 2rem; margin-bottom: 1rem; }
.assess-screen .lead { font-size: 1.1rem; margin-bottom: 2rem; }
.gate-badges { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gate-badges div { text-align: center; }
.gate-badges .n { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--secondary-orange); }
.gate-badges .l { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.gate-form { max-width: 420px; margin: 0 auto; text-align: left; }
.privacy-line { font-size: 0.82rem; color: var(--text-muted); margin-top: 1rem; text-align: center; }

/* results */
.result-hero { text-align: center; margin-bottom: 2.5rem; }
.result-ring { width: 210px; height: 210px; margin: 0 auto 1rem auto; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--white); border: 10px solid var(--accent-green); box-shadow: var(--shadow-soft); }
.result-ring .num { font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 1; color: var(--deep); }
.result-ring .of { font-size: 0.9rem; color: var(--text-muted); }
.result-level { display: inline-block; background: var(--deep); color: #fff; padding: 0.5rem 1.4rem; border-radius: 30px; font-weight: 700; margin-top: 0.5rem; }
.dim-list { margin: 2rem 0; }
.dim-row { margin-bottom: 1.4rem; }
.dim-row .dim-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4rem; }
.dim-row .dim-name { font-weight: 700; color: var(--text-dark); }
.dim-row .dim-score { font-family: 'Playfair Display', serif; color: var(--secondary-orange); font-size: 1.1rem; }
.dim-track { height: 10px; background: var(--accent-light); border-radius: 20px; overflow: hidden; }
.dim-fill { height: 100%; border-radius: 20px; background: var(--accent-green); }
.dim-fill.low { background: var(--secondary-orange); }
.rec-box { background: var(--bg-color); border-radius: 12px; padding: 2rem; border-left: 4px solid var(--secondary-orange); margin: 2rem 0; }
.rec-box h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.result-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }

/* --- FOOTER --- */
footer { background: var(--deep); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
footer .logo { color: var(--white); display: block; margin-bottom: 1rem; }
footer .logo span { color: var(--primary-orange); }
footer p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.footer-col h5 { color: var(--white); font-family: 'Lato', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 0.6rem; }
.footer-col a:hover { color: var(--primary-orange); }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; margin-bottom: 1.2rem; }
.footer-legal p { font-size: 0.85rem; color: rgba(255,255,255,0.55); max-width: 780px; margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0.4rem;
        background: var(--bg-color); padding: 1rem 5% 1.5rem 5%;
        border-bottom: 1px solid rgba(0,0,0,0.08); box-shadow: var(--shadow-soft);
    }
    header.nav-open .nav-links { display: flex; }
    .nav-links a { padding: 0.6rem 0; font-size: 1rem; }
    .nav-links .btn-nav { text-align: center; margin-top: 0.5rem; }
    .mobile-menu-btn { display: block; }
    .hero-grid, .problem-grid, .fs-card, .twoup-grid, .pb-detail-grid { grid-template-columns: 1fr; }
    .hero-visual { height: 300px; order: -1; }
    .ladder { grid-template-columns: 1fr 1fr; }
    .pb-grid, .support-grid, .price-grid, .tp-grid, .tier-grid, .init-grid, .outcome-grid, .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 2.6rem; }
    .page-hero h1 { font-size: 2.2rem; }
    .fs-visual { padding: 3rem; }
    .assess-card { padding: 1.8rem; }
    .q-text { font-size: 1.4rem; }
    .trust-row { gap: 1.2rem; }
    .trust-item { font-size: 0.82rem; }
}

/* --- PRINT (PDF report) --- */
@media print {
    header, footer, .assess-nav, .result-actions, .no-print { display: none !important; }
    body { background: #fff; }
    .assess-wrap, .assess-card { max-width: 100%; box-shadow: none; padding: 0; }
    .result-ring { border-color: #7A8F5A !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .dim-fill, .dim-fill.low, .result-level, .rec-box { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .print-header { display: block !important; }
}
.print-header { display: none; text-align: center; margin-bottom: 1.5rem; }
.print-header .logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--text-dark); }
