/* ============================================
   YEV - Shared pathway page styles
   Used by: creative-producer, foundation-builder,
            a-la-carte, for-organizations, about, contact
   ============================================ */

:root {
    --indigo: var(--yev-navy);
    --indigo-deep: var(--yev-navy);
    --cyan: var(--yev-royal);
    --gold: var(--yev-gold);        /* standard accent yellow */
    --gold-warm: var(--yev-gold-deep);   /* darker yellow: button bottom stop only */
    --paper: #fdfbf5;
    --ink: #14182f;
    /* Fluid type scale (shared across pages) */
    --fs-eyebrow: clamp(11px, 1.4vw, 13px);
    --fs-h1: clamp(30px, 6vw, 52px);
    --fs-h2: clamp(24px, 4vw, 38px);
    --fs-lede: clamp(16px, 2.2vw, 20px);
    --fs-body: clamp(15px, 1.6vw, 17px);
    /* Fluid spacing */
    --space-section: clamp(48px, 7vw, 90px);
    --space-block: clamp(20px, 3vw, 36px);
    /* Content cap for large/4K screens */
    --content-max: 1280px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { height: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--paper);
    color: var(--ink);
    margin: 0;
    min-height: 100vh;
    line-height: 1.65;
}

/* ========== PAGE HERO ========== */
.page-hero {
    background: linear-gradient(135deg, var(--indigo) 0%, var(--cyan) 100%);
    color: white;
    padding: clamp(72px, 9vh, 110px) 24px var(--space-section);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(254,212,42,0.10) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(74,144,226,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero-content {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.page-hero-icon { font-size: 56px; }
.page-hero[data-accent="gold"] .eyebrow,
.page-hero[data-accent="cyan"] .eyebrow { color: var(--gold); } /* eyebrows unified to yellow */
.eyebrow {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
}
.page-hero h1 {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    text-shadow: 0 3px 18px rgba(0,0,0,0.3);
}
.page-hero-tagline {
    font-size: clamp(17px, 2.2vw, 21px);
    font-weight: 500;
    opacity: 0.96;
    max-width: 680px;
    line-height: 1.5;
    margin-top: 4px;
}
.btn-primary {
	display: inline-block;
	padding: 10px 22px;
	font-size: 14px;
	background: linear-gradient(135deg, var(--yev-gold) 0%, var(--yev-gold-deep) 100%);
	color: var(--yev-navy);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 800;
	box-shadow: 0 10px 30px rgba(224,187,37,0.45);
	transition: all 0.3s ease;
	border: 2px solid var(--yev-gold-deep);
	letter-spacing: 0.3px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(254,212,42,0.6); }
.btn-ghost {
	display: inline-block;
	padding: 10px 22px;
	background: transparent;
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	border: 2px solid rgba(255,255,255,0.75);
	transition: all 0.3s ease;
}
.btn-ghost:hover {
	background: rgba(255,255,255,0.12);
	border-color: rgba(255,255,255,0.9);
}

/* ========== CONTENT SECTIONS ========== */
.content-section { padding: var(--space-section) 24px; }
.content-section.gradient-soft {
    background: linear-gradient(180deg, #fdfbf5 0%, #f5efe1 100%);
}
.container { max-width: 1140px; margin: 0 auto; }
.container.narrow { max-width: 760px; }
.container.narrow h2 {
    font-size: clamp(26px, 3.6vw, 34px);
    color: var(--indigo);
    margin-bottom: 18px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.3px;
}
.container.narrow p {
    font-size: 17px;
    color: #333;
    line-height: 1.75;
    margin-bottom: 18px;
}
.container.narrow p.centered { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.section-eyebrow::before { content: "\2605  "; }
.section-eyebrow::after { content: "  \2605"; }
.section-eyebrow {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    text-align: center;
}
.section-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    text-align: center;
    color: var(--indigo);
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
}

/* ========== FEATURE GRID ========== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.feature-card {
    background: white;
    padding: 28px 26px;
    border-radius: 16px;
    border: 1px solid rgba(33,37,107,0.08);
    box-shadow: 0 4px 16px rgba(33,37,107,0.06);
}
.feature-icon { font-size: 30px; margin-bottom: 10px; }
.feature-card h3 {
    font-size: 18px;
    color: var(--indigo);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}
.feature-card p { font-size: 15px; color: #555; line-height: 1.6; }

/* ========== ADD-ON LIST ========== */
.addon-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 14px;
}
.addon-list li {
    padding: 16px 20px 16px 50px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(33,37,107,0.08);
    position: relative;
    font-size: 16px;
    color: #333;
    line-height: 1.55;
}
.addon-list li::before {
    content: '+';
    position: absolute;
    left: 18px;
    top: 14px;
    width: 22px;
    height: 22px;
    background: var(--gold);
    color: var(--indigo-deep);
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-weight: 800;
    font-size: 16px;
}
.addon-list strong { color: var(--indigo); }

/* ========== PRICING CARD ========== */
.pricing-card {
    background: white;
    border-radius: 22px;
    padding: 44px 36px;
    border: 2px solid var(--gold);
    box-shadow: 0 16px 40px rgba(33,37,107,0.12);
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}
.pricing-main { margin-bottom: 24px; }
.pricing-amount {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: var(--indigo);
    letter-spacing: -0.5px;
}
.pricing-period { font-size: 15px; color: #666; margin-top: 4px; }
.pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
    display: grid;
    gap: 10px;
}
.pricing-includes li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #333;
    font-size: 15px;
    line-height: 1.55;
}
.pricing-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--gold-warm);
    font-weight: 800;
    font-size: 18px;
}
.pricing-note {
    font-size: 13px;
    color: #777;
    font-style: italic;
    margin-top: 14px;
}

/* ========== MENU GRID (Single Project Services) ========== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.menu-item {
    background: white;
    padding: 26px 24px;
    border-radius: 16px;
    border: 1px solid rgba(33,37,107,0.08);
    box-shadow: 0 4px 14px rgba(33,37,107,0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.menu-item h3 {
    font-size: 18px;
    color: var(--indigo);
    font-weight: 700;
    line-height: 1.3;
}
.menu-item p { font-size: 14px; color: #555; line-height: 1.55; flex-grow: 1; }
.menu-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--gold-warm);
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px dashed rgba(33,37,107,0.12);
}
.menu-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    font-weight: 700;
}

/* ========== FINAL CTA (reused) ========== */
.final-cta {
    background: linear-gradient(135deg, var(--indigo) 0%, var(--cyan) 100%);
    color: white;
    text-align: center;
    padding: 90px 24px;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(254,212,42,0.10) 0%, transparent 60%);
}
.final-cta-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.final-cta h2 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}
.final-cta p {
    font-size: 17px;
    opacity: 0.95;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ========== UTIL ========== */
.lang-en, .lang-fr { opacity: 0.6; }
.lang-en.active, .lang-fr.active { opacity: 1; font-weight: 700; }

/* ========== USD PRICE FOOTNOTE ========== */
.price-footnote {
    text-align: center;
    font-size: 12px;
    color: #888;
    font-style: italic;
    margin-top: 32px;
    padding: 0 16px;
    line-height: 1.5;
}
.price-footnote::before { content: "* "; color: var(--gold-warm); font-weight: 700; }

/* Inline text link (e.g. Portfolio -> Foundation Builder) */
.text-link {
    color: var(--indigo);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}
.text-link:hover { color: var(--gold-warm); }

/* "Where to go next" cross-page engagement box (v5.26) */
.next-step {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--indigo-deep) 0%, var(--indigo) 60%, var(--yev-royal) 100%);
    padding: 44px 40px;
    border-radius: 24px;
    border: 1px solid rgba(254,212,42,0.32);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(33,37,107,0.25), 0 0 0 1px rgba(254,212,42,0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.next-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 70px rgba(33,37,107,0.35), 0 0 40px rgba(254,212,42,0.14);
}
/* Shimmer sweep on hover */
.next-step::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
    transition: left 0.6s ease;
    pointer-events: none;
}
.next-step:hover::before { left: 160%; }
/* Soft gold glow orb */
.next-step::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(254,212,42,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.next-step .next-step-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
    opacity: 0.9;
}
.next-step h2 {
    font-size: clamp(20px, 2.5vw, 26px);
    color: #fff;
    margin-bottom: 14px;
    font-weight: 800;
    line-height: 1.25;
}
.next-step p {
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
/* CTA button replacing plain text-link */
.next-step .text-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-warm) 100%);
    color: var(--indigo-deep);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 6px 20px rgba(224,187,37,0.35);
}
.next-step .text-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(224,187,37,0.5);
    filter: brightness(1.08);
    color: var(--indigo-deep);
}
/* Entrance animation */
.next-step.ns-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}
.next-step.ns-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Read-more collapse ── */
[data-readmore] { position: relative; }
.readmore-fade {
    text-align: center;
    margin-top: 10px;
    position: relative;
}
.readmore-fade:not(.open)::before {
    content: '';
    display: block;
    height: 48px;
    margin-top: -48px;
    background: linear-gradient(to bottom, transparent, var(--paper, #f8f5f0));
    pointer-events: none;
}
.readmore-btn {
    background: none;
    border: 1px solid var(--gold-warm);
    color: var(--indigo);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 7px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.readmore-btn:hover { background: var(--gold-warm); color: #fff; }
