/* ============================================================
   Yellow Hippo Media — Main Stylesheet v1.0
   ============================================================ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:       #0f0f0d;
    --off-white:   #f5f3ee;
    --yellow:      #f5c842;
    --yellow-deep: #d4a800;
    --slate:       #3a3a35;
    --mid:         #6b6b62;
    --light:       #e8e5de;
    --white:       #ffffff;
    --red:         #e05252;
    --green:       #2d9e6b;
    --amber:       #d48f00;
    --serif: 'Instrument Serif', Georgia, serif;
    --sans:  'DM Sans', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--off-white);
    color: var(--black);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.1;
}

h1 { font-size: clamp(40px, 5vw, 68px); margin-bottom: 24px; }
h2 { font-size: clamp(30px, 4vw, 52px); margin-bottom: 20px; }
h3 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 16px; }

h1 em {
    font-style: italic;
    color: var(--mid);
    position: relative;
}
h1 em::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 2px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

/* ── Utility ── */
.yh-yellow { color: var(--yellow); }
.yh-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--yellow); color: var(--black);
    padding: 6px 14px; border-radius: 100px;
    font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; margin-bottom: 28px;
}
.yh-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--black); border-radius: 50%;
}
.yh-section-eyebrow {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--mid); font-weight: 500; margin-bottom: 14px;
}
.yh-eyebrow--light { color: #6b6b62; }
.yh-eyebrow--center { text-align: center; display: block; }

.yh-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ── Buttons ── */
.yh-btn-primary {
    display: inline-block;
    background: var(--black); color: var(--off-white);
    padding: 14px 28px; border-radius: 100px;
    font-size: 15px; font-weight: 500; text-decoration: none;
    transition: transform 0.15s, background 0.2s;
    font-family: var(--sans);
}
.yh-btn-primary:hover { transform: translateY(-1px); background: var(--slate); }

.yh-btn-secondary {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--black); font-size: 15px; text-decoration: none;
    border-bottom: 1px solid var(--black); padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.yh-btn-secondary:hover { color: var(--mid); border-color: var(--mid); }

/* ── Navigation ── */
.yh-nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--off-white);
    border-bottom: 1px solid var(--light);
    padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}

.yh-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--serif); font-size: 20px;
    text-decoration: none; color: var(--black);
}
.yh-logo-mark {
    width: 32px; height: 32px;
    background: var(--yellow); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-style: italic; font-size: 16px; color: var(--black);
    flex-shrink: 0;
}

.yh-nav-links {
    display: flex; gap: 32px; list-style: none;
    font-size: 14px; color: var(--slate);
}
.yh-nav-links a {
    text-decoration: none; color: inherit;
    transition: color 0.2s; position: relative;
    padding-bottom: 2px;
}
.yh-nav-links a::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: -2px;
    height: 2px; background: var(--yellow);
    transform: scaleX(0); transition: transform 0.2s;
    border-radius: 1px;
}
.yh-nav-links a:hover { color: var(--black); }
.yh-nav-links a:hover::after { transform: scaleX(1); }

.yh-nav-cta {
    background: var(--black); color: var(--off-white);
    padding: 10px 22px; border-radius: 100px;
    font-size: 14px; font-weight: 500; text-decoration: none;
    transition: background 0.2s;
}
.yh-nav-cta:hover { background: var(--slate); }

.yh-nav-mobile-toggle {
    display: none; background: none; border: none; cursor: pointer;
    color: var(--black); padding: 4px;
}

/* ── Hero ── */
.yh-hero {
    background: var(--off-white);
    min-height: calc(100vh - 64px);
}
.yh-hero-inner {
    max-width: 1200px; margin: 0 auto; padding: 80px 48px;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 60px;
}
.yh-hero-text { max-width: 560px; }
.yh-hero-sub {
    font-size: 18px; color: var(--slate); font-weight: 300;
    line-height: 1.65; margin-bottom: 40px; max-width: 460px;
}
.yh-hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.yh-hero-visual {
    display: flex; align-items: center; justify-content: center; padding-left: 40px;
}

/* Hero fade-in */
@keyframes yh-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.yh-hero-text > * { opacity: 0; animation: yh-fade-up 0.6s ease forwards; }
.yh-eyebrow       { animation-delay: 0.1s; }
.yh-hero-text h1  { animation-delay: 0.2s; }
.yh-hero-sub      { animation-delay: 0.3s; }
.yh-hero-actions  { animation-delay: 0.4s; }
.yh-hero-visual   { opacity: 0; animation: yh-fade-up 0.6s ease 0.5s forwards; }

/* ── Audit Card ── */
.yh-audit-card {
    background: var(--black); color: var(--off-white);
    border-radius: var(--radius-xl); padding: 36px; width: 320px;
}
.yh-audit-card-label {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--mid); margin-bottom: 20px;
}
.yh-audit-score {
    font-family: var(--serif); font-size: 80px;
    color: var(--yellow); line-height: 1; margin-bottom: 4px;
}
.yh-audit-score-label { font-size: 13px; color: var(--mid); margin-bottom: 28px; }
.yh-audit-items { display: flex; flex-direction: column; gap: 12px; }
.yh-audit-item {
    display: flex; align-items: center; justify-content: space-between; font-size: 13px;
}
.yh-audit-item-name { color: #c8c5be; }
.yh-audit-status {
    padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 500;
}
.yh-status--fail { background: #3d1515; color: #f09595; }
.yh-status--warn { background: #3d2e00; color: #f5c842; }
.yh-status--pass { background: #0d2e1a; color: #5DCAA5; }
.yh-audit-card-footer {
    margin-top: 28px; padding-top: 20px;
    border-top: 1px solid #2a2a27;
    font-size: 12px; color: var(--mid);
}
.yh-audit-card-footer strong.yh-yellow { color: var(--yellow); }

/* ── Proof Strip ── */
.yh-proof-strip {
    border-top: 2px solid var(--yellow);
    border-bottom: 1px solid var(--light);
    padding: 20px 48px;
    display: flex; align-items: center; gap: 40px;
    background: var(--white); overflow: hidden;
}
.yh-proof-label {
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--mid); white-space: nowrap; font-weight: 500; flex-shrink: 0;
}
.yh-proof-items { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.yh-proof-item { font-size: 14px; color: var(--slate); white-space: nowrap; }
.yh-proof-item strong { color: var(--black); font-weight: 500; }

/* ── Sections ── */
.yh-section { padding: 100px 0; }

/* ── Problem Section ── */
.yh-problem-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start; margin-top: 60px;
}
.yh-problem-statement { font-size: 18px; color: var(--slate); font-weight: 300; line-height: 1.7; }
.yh-problem-statement p { margin-bottom: 20px; }
.yh-problem-statement strong { color: var(--black); font-weight: 500; }
.yh-problem-list { display: flex; flex-direction: column; gap: 14px; }
.yh-problem-item {
    padding: 18px 20px 18px 24px;
    background: var(--white); border-radius: var(--radius-md);
    border: 1px solid var(--light);
    border-left: 3px solid var(--yellow);
    font-size: 15px; color: var(--slate); line-height: 1.55;
    transition: transform 0.15s, border-left-color 0.2s;
}
.yh-problem-item:hover { transform: translateX(3px); border-left-color: var(--yellow-deep); }

/* ── Services Section ── */
.yh-services-section {
    background: var(--black); padding: 100px 0;
}
.yh-services-section .yh-section-inner { padding-bottom: 0; }
.yh-heading--light { color: var(--off-white); }
.yh-services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 48px;
}
.yh-service-card {
    background: #1a1a17; border: 1px solid #2a2a27;
    border-radius: var(--radius-lg); padding: 32px;
    display: flex; flex-direction: column;
    transition: border-color 0.2s; position: relative; overflow: hidden;
}
.yh-service-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: transparent; transition: background 0.2s;
}
.yh-service-card:hover { border-color: #4a4a42; }
.yh-service-card:hover::after { background: var(--yellow); }
.yh-service-card--featured {
    background: var(--yellow); border-color: var(--yellow);
}
.yh-service-card--featured::after { background: var(--yellow-deep) !important; }
.yh-service-tag {
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    font-weight: 500; margin-bottom: 24px; color: #6b6b62;
}
.yh-service-card--featured .yh-service-tag { color: rgba(0,0,0,0.5); }
.yh-service-price {
    font-family: var(--serif); font-size: 42px;
    color: var(--off-white); line-height: 1; margin-bottom: 4px;
}
.yh-service-price span { font-size: 20px; color: #6b6b62; }
.yh-service-card--featured .yh-service-price { color: var(--black); }
.yh-service-card--featured .yh-service-price span { color: rgba(0,0,0,0.45); }
.yh-service-price-note { font-size: 13px; color: #6b6b62; margin-bottom: 24px; }
.yh-service-card--featured .yh-service-price-note { color: rgba(0,0,0,0.5); }
.yh-service-name { font-size: 20px; font-weight: 500; color: var(--off-white); margin-bottom: 10px; }
.yh-service-card--featured .yh-service-name { color: var(--black); }
.yh-service-desc { font-size: 14px; color: #8a8a80; line-height: 1.6; flex: 1; margin-bottom: 24px; }
.yh-service-card--featured .yh-service-desc { color: rgba(0,0,0,0.65); }
.yh-service-items { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.yh-service-item {
    font-size: 13px; color: #8a8a80;
    display: flex; gap: 10px; align-items: flex-start;
}
.yh-service-item::before { content: '→'; color: var(--yellow); font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.yh-service-card--featured .yh-service-item { color: rgba(0,0,0,0.7); }
.yh-service-card--featured .yh-service-item::before { color: var(--black); }
.yh-service-cta {
    display: block; padding: 12px 24px; border-radius: 100px;
    font-size: 14px; font-weight: 500; text-decoration: none; text-align: center;
    background: #2a2a27; color: var(--off-white); transition: background 0.2s;
}
.yh-service-cta:hover { background: #3a3a35; }
.yh-service-card--featured .yh-service-cta { background: var(--black); color: var(--yellow); }
.yh-service-card--featured .yh-service-cta:hover { background: #1a1a17; }

/* ── Why Section ── */
.yh-why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin-top: 48px;
}
.yh-why-card {
    padding: 32px; border-radius: var(--radius-lg);
    border: 1px solid var(--light); background: var(--white);
    transition: border-color 0.2s, transform 0.15s;
}
.yh-why-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.yh-why-number {
    font-family: var(--serif); font-size: 48px; color: var(--yellow);
    line-height: 1; margin-bottom: 14px;
}
.yh-why-title { font-size: 18px; font-weight: 500; margin-bottom: 10px; color: var(--black); }
.yh-why-card p { font-size: 15px; color: var(--slate); line-height: 1.65; }

/* ── Chatbot Demo Section ── */
.yh-chatbot-section {
    background: var(--white);
    border-top: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
    padding: 100px 0;
}
.yh-chatbot-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.yh-chatbot-text h2 { margin-bottom: 16px; }
.yh-chatbot-text p { font-size: 17px; color: var(--slate); line-height: 1.7; font-weight: 300; margin-bottom: 16px; }
.yh-chatbot-sub { font-size: 15px !important; color: var(--mid) !important; }

.yh-chat-preview {
    background: var(--off-white); border: 1px solid var(--light);
    border-radius: var(--radius-xl); overflow: hidden;
}
.yh-chat-preview-header {
    background: var(--black); padding: 16px 20px;
    display: flex; align-items: center; gap: 10px;
}
.yh-chat-preview-avatar {
    width: 30px; height: 30px; background: var(--yellow); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--black);
    flex-shrink: 0;
}
.yh-chat-preview-name { font-size: 14px; color: var(--off-white); font-weight: 500; }
.yh-chat-preview-status {
    font-size: 12px; color: #6b6b62;
    display: flex; align-items: center; gap: 5px;
}
.yh-status-dot {
    width: 6px; height: 6px; background: var(--green); border-radius: 50%;
    animation: yh-pulse 2s ease-in-out infinite;
}
@keyframes yh-pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.yh-chat-preview-messages { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.yh-chat-msg {
    max-width: 85%; font-size: 14px; line-height: 1.55;
    padding: 11px 14px; border-radius: 14px;
}
.yh-chat-msg--bot {
    background: var(--white); border: 1px solid var(--light);
    color: var(--slate); border-bottom-left-radius: 3px; align-self: flex-start;
}
.yh-chat-msg--user {
    background: var(--black); color: var(--off-white);
    border-bottom-right-radius: 3px; align-self: flex-end;
}
.yh-chat-preview-input {
    margin: 0 20px 20px;
    display: flex; align-items: center; justify-content: space-between;
    background: var(--white); border: 1px solid var(--light);
    border-radius: 100px; padding: 9px 9px 9px 16px;
}
.yh-chat-preview-placeholder { font-size: 14px; color: var(--mid); }
.yh-chat-preview-send {
    width: 30px; height: 30px; background: var(--yellow);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: var(--black); font-weight: 500;
}

/* ── CTA Section ── */
.yh-cta-section { padding: 120px 48px; }
.yh-cta-inner {
    max-width: 680px; margin: 0 auto; text-align: center;
}
.yh-cta-inner h2 { margin-bottom: 16px; }
.yh-cta-inner p { font-size: 18px; color: var(--slate); font-weight: 300; line-height: 1.65; margin-bottom: 40px; }
.yh-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.yh-footer {
    background: var(--black); color: var(--off-white);
    padding: 40px 48px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
    gap: 20px;
}
.yh-footer .yh-logo { color: var(--off-white); }
.yh-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.yh-footer-links a { color: #6b6b62; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.yh-footer-links a:hover { color: var(--off-white); }
.yh-footer-legal { font-size: 12px; color: #4a4a42; }

/* ── Default Page ── */
.yh-page-content { padding: 80px 0; }
.yh-page-body { font-size: 17px; line-height: 1.75; color: var(--slate); max-width: 720px; }
.yh-page-body p { margin-bottom: 20px; }
.yh-page-body h2 { margin: 40px 0 16px; }
.yh-page-body a { color: var(--yellow-deep); text-decoration: underline; }

/* ── Scorecard Page ── */
.yh-scorecard-wrap { min-height: calc(100vh - 64px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .yh-hero-inner { grid-template-columns: 1fr; gap: 48px; min-height: auto; padding: 60px 32px; }
    .yh-hero-visual { padding-left: 0; justify-content: flex-start; }
    .yh-services-grid { grid-template-columns: 1fr 1fr; }
    .yh-chatbot-inner { grid-template-columns: 1fr; gap: 48px; }
    .yh-audit-card { width: 100%; max-width: 360px; }
}

@media (max-width: 768px) {
    .yh-nav { padding: 0 20px; }
    .yh-nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--off-white); border-bottom: 1px solid var(--light); padding: 20px; gap: 16px; }
    .yh-nav-links.open { display: flex; }
    .yh-nav-mobile-toggle { display: block; }
    .yh-nav-cta { display: none; }
    .yh-section-inner { padding: 0 20px; }
    .yh-hero-inner { padding: 48px 20px; }
    .yh-services-grid { grid-template-columns: 1fr; }
    .yh-why-grid { grid-template-columns: 1fr; }
    .yh-problem-grid { grid-template-columns: 1fr; gap: 40px; }
    .yh-proof-strip { padding: 16px 20px; flex-wrap: wrap; gap: 16px; }
    .yh-proof-items { gap: 16px; }
    .yh-footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
    .yh-cta-section { padding: 80px 20px; }
    .yh-section { padding: 72px 0; }
    .yh-services-section { padding: 72px 0; }
}

/* ============================================================
   Page-specific styles — service pages, about, contact, scorecard
   ============================================================ */

/* ── Shared page hero (dark) ── */
.yh-page-hero {
    background: var(--black);
    padding: 80px 48px;
    border-bottom: 0;
}
.yh-page-hero-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 420px;
    gap: 60px; align-items: center;
}
.yh-breadcrumb {
    font-size: 12px; color: #6b6b62; margin-bottom: 20px;
    display: flex; align-items: center; gap: 8px;
}
.yh-breadcrumb a { color: #6b6b62; transition: color .2s; }
.yh-breadcrumb a:hover { color: #c8c5be; }
.yh-breadcrumb span { color: #4a4a42; }
.yh-page-hero h1 {
    font-family: var(--serif); font-size: clamp(36px,4vw,56px);
    font-weight: 400; color: var(--off-white); line-height: 1.1; margin-bottom: 20px;
}
.yh-page-hero h1 em { font-style: italic; color: var(--yellow); }
.yh-page-hero-sub {
    font-size: 18px; color: #8a8a80; font-weight: 300;
    line-height: 1.65; margin-bottom: 36px; max-width: 500px;
}
.yh-hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.yh-btn-yellow {
    display: inline-block; background: var(--yellow); color: var(--black);
    padding: 14px 28px; border-radius: 100px; font-size: 15px; font-weight: 500;
    transition: all .15s;
}
.yh-btn-yellow:hover { background: var(--yellow-deep); transform: translateY(-1px); }
.yh-btn-ghost-dark {
    font-size: 15px; color: #8a8a80;
    border-bottom: 1px solid #4a4a42; padding-bottom: 2px; transition: all .15s;
}
.yh-btn-ghost-dark:hover { color: var(--off-white); border-color: #8a8a80; }

/* ── Price card (audit hero) ── */
.yh-price-card {
    background: #1a1a17; border: 1px solid #2a2a27;
    border-radius: var(--radius-xl); padding: 36px;
}
.yh-price-card-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #6b6b62; margin-bottom: 16px; }
.yh-price-card-amount { font-family: var(--serif); font-size: 72px; color: var(--yellow); line-height: 1; margin-bottom: 4px; }
.yh-price-card-note { font-size: 13px; color: #6b6b62; margin-bottom: 28px; }
.yh-price-card-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.yh-price-card-item { font-size: 13px; color: #c8c5be; display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.yh-price-card-item::before { content: '→'; color: var(--yellow); flex-shrink: 0; font-size: 12px; margin-top: 1px; }
.yh-price-card-cta {
    display: block; background: var(--yellow); color: var(--black);
    padding: 14px; border-radius: 100px; font-size: 15px; font-weight: 500;
    text-align: center; transition: all .15s;
}
.yh-price-card-cta:hover { background: var(--yellow-deep); }

/* ── Scope card (implementation hero) ── */
.yh-page-hero--yellow { background: var(--yellow); }
.yh-page-hero--yellow h1 { color: var(--black); }
.yh-page-hero--yellow h1 em { color: rgba(0,0,0,0.55); }
.yh-page-hero--yellow .yh-page-hero-sub { color: rgba(0,0,0,0.6); }
.yh-page-hero--yellow .yh-breadcrumb,
.yh-page-hero--yellow .yh-breadcrumb a { color: rgba(0,0,0,0.45); }
.yh-page-hero--yellow .yh-btn-ghost-dark { color: rgba(0,0,0,0.55); border-color: rgba(0,0,0,0.25); }
.yh-page-hero--yellow .yh-btn-ghost-dark:hover { color: var(--black); border-color: var(--black); }
.yh-page-hero--yellow .yh-hero-eyebrow { background: var(--black); color: var(--yellow); }
.yh-scope-card {
    background: #1a1a17; border: 1px solid #2a2a27; border-radius: var(--radius-xl); padding: 36px;
}
.yh-scope-card-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #6b6b62; margin-bottom: 8px; }
.yh-scope-card-price { font-family: var(--serif); font-size: 52px; color: var(--yellow); line-height: 1; margin-bottom: 4px; }
.yh-scope-card-note { font-size: 13px; color: #6b6b62; margin-bottom: 24px; }
.yh-scope-card-body { font-size: 14px; color: #8a8a80; line-height: 1.7; margin-bottom: 24px; }
.yh-scope-card-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.yh-scope-card-item { font-size: 13px; color: #c8c5be; display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.yh-scope-card-item::before { content: '→'; color: var(--yellow); flex-shrink: 0; font-size: 12px; margin-top: 1px; }
.yh-scope-card-cta {
    display: block; background: var(--yellow); color: var(--black);
    padding: 14px; border-radius: 100px; font-size: 15px; font-weight: 500;
    text-align: center; transition: all .15s;
}
.yh-scope-card-cta:hover { background: var(--yellow-deep); }

/* ── Retainer pricing tiers ── */
.yh-page-hero--dark { background: var(--black); border-bottom: 3px solid var(--yellow); }
.yh-pricing-stack { display: flex; flex-direction: column; gap: 12px; }
.yh-pricing-tier {
    background: #1a1a17; border: 1px solid #2a2a27;
    border-radius: var(--radius-lg); padding: 24px 28px; transition: border-color .2s;
}
.yh-pricing-tier:hover { border-color: #4a4a42; }
.yh-pricing-tier--featured { background: var(--yellow); border-color: var(--yellow); }
.yh-tier-label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; margin-bottom: 12px; color: #6b6b62; }
.yh-pricing-tier--featured .yh-tier-label { color: rgba(0,0,0,0.5); }
.yh-tier-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.yh-tier-amount { font-family: var(--serif); font-size: 40px; color: var(--off-white); line-height: 1; }
.yh-pricing-tier--featured .yh-tier-amount { color: var(--black); }
.yh-tier-period { font-size: 14px; color: #6b6b62; }
.yh-pricing-tier--featured .yh-tier-period { color: rgba(0,0,0,0.5); }
.yh-tier-desc { font-size: 13px; color: #6b6b62; line-height: 1.5; }
.yh-pricing-tier--featured .yh-tier-desc { color: rgba(0,0,0,0.6); }

/* ── Shared section styles ── */
.yh-section-lead {
    font-size: 18px; color: var(--slate); font-weight: 300;
    line-height: 1.7; max-width: 640px; margin-bottom: 48px;
}
.yh-section-title-light { color: var(--off-white); }

/* ── Included cards (audit) ── */
.yh-included-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.yh-included-card {
    background: var(--white); border: 1px solid var(--light);
    border-radius: var(--radius-lg); padding: 28px;
    border-top: 3px solid var(--yellow); transition: transform .15s;
}
.yh-included-card:hover { transform: translateY(-2px); }
.yh-included-icon {
    width: 36px; height: 36px; background: var(--yellow); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 16px;
}
.yh-included-title { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.yh-included-body { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ── Process steps (dark bg) ── */
.yh-process-section { background: var(--black); padding: 80px 48px; }
.yh-process-inner { max-width: 1100px; margin: 0 auto; }
.yh-process-steps {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 20px; margin-top: 48px; position: relative;
}
.yh-process-steps::before {
    content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
    height: 1px; background: #2a2a27;
}
.yh-process-step { text-align: center; }
.yh-step-num {
    width: 56px; height: 56px; background: var(--yellow); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 22px; color: var(--black);
    margin: 0 auto 20px; position: relative; z-index: 1;
}
.yh-step-title { font-size: 15px; font-weight: 500; color: var(--off-white); margin-bottom: 8px; }
.yh-step-body { font-size: 13px; color: #6b6b62; line-height: 1.6; }
.yh-step-time {
    display: inline-block; margin-top: 10px; font-size: 11px; color: var(--yellow);
    background: #1a1a17; border: 1px solid #2a2a27;
    padding: 3px 10px; border-radius: 100px;
}

/* ── Who it's for ── */
.yh-for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.yh-for-card {
    background: var(--white); border: 1px solid var(--light);
    border-radius: var(--radius-md); padding: 24px;
    display: flex; gap: 16px;
}
.yh-for-dot { width: 10px; height: 10px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.yh-for-title { font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.yh-for-body { font-size: 14px; color: var(--slate); line-height: 1.55; }
.yh-not-for {
    background: #fafaf8; border: 1px solid var(--light);
    border-radius: var(--radius-lg); padding: 28px; margin-top: 20px;
}
.yh-not-for h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 16px; color: var(--mid); }
.yh-not-for-items { display: flex; flex-direction: column; gap: 8px; }
.yh-not-for-item { font-size: 14px; color: var(--mid); display: flex; gap: 10px; line-height: 1.5; }
.yh-not-for-item::before { content: '✕'; color: var(--light); font-size: 12px; margin-top: 1px; flex-shrink: 0; }

/* ── Deliverables (implementation) ── */
.yh-deliverables-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.yh-deliverable {
    background: var(--white); border: 1px solid var(--light);
    border-radius: var(--radius-md); padding: 24px 28px;
    display: flex; gap: 16px; align-items: flex-start;
    border-left: 3px solid var(--yellow); transition: transform .15s;
}
.yh-deliverable:hover { transform: translateX(3px); }
.yh-del-num { font-family: var(--serif); font-size: 28px; color: var(--yellow); line-height: 1; flex-shrink: 0; width: 32px; }
.yh-del-title { font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.yh-del-body { font-size: 13px; color: var(--slate); line-height: 1.6; }

/* ── Before/After compare ── */
.yh-compare-section { background: var(--black); padding: 80px 48px; }
.yh-compare-inner { max-width: 1100px; margin: 0 auto; }
.yh-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.yh-compare-col { border-radius: var(--radius-lg); padding: 32px; }
.yh-compare-col--before { background: #1a0a0a; border: 1px solid #3d1515; }
.yh-compare-col--after  { background: #0a1a12; border: 1px solid #1a3d28; }
.yh-compare-header { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; margin-bottom: 20px; }
.yh-compare-col--before .yh-compare-header { color: #f09595; }
.yh-compare-col--after  .yh-compare-header { color: #5DCAA5; }
.yh-compare-items { display: flex; flex-direction: column; gap: 12px; }
.yh-compare-item { font-size: 14px; line-height: 1.5; display: flex; gap: 10px; align-items: flex-start; }
.yh-compare-col--before .yh-compare-item { color: #c8a0a0; }
.yh-compare-col--after  .yh-compare-item { color: #8ad4b8; }
.yh-compare-col--before .yh-compare-item::before { content: '✕'; color: #f09595; flex-shrink: 0; margin-top: 1px; }
.yh-compare-col--after  .yh-compare-item::before { content: '✓'; color: #5DCAA5; flex-shrink: 0; margin-top: 1px; }

/* ── Process list (vertical, implementation) ── */
.yh-process-list { display: flex; flex-direction: column; gap: 0; margin-top: 48px; position: relative; }
.yh-process-list::before { content: ''; position: absolute; left: 27px; top: 56px; bottom: 56px; width: 1px; background: var(--light); }
.yh-process-item { display: flex; gap: 24px; align-items: flex-start; padding-bottom: 40px; position: relative; }
.yh-process-item:last-child { padding-bottom: 0; }
.yh-p-num {
    width: 56px; height: 56px; background: var(--yellow); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 20px; color: var(--black);
    flex-shrink: 0; position: relative; z-index: 1;
}
.yh-p-content { padding-top: 12px; }
.yh-p-title { font-size: 17px; font-weight: 500; margin-bottom: 8px; }
.yh-p-body { font-size: 15px; color: var(--slate); line-height: 1.65; }
.yh-p-duration {
    display: inline-block; margin-top: 10px; font-size: 11px; color: var(--mid);
    background: var(--off-white); border: 1px solid var(--light);
    padding: 3px 12px; border-radius: 100px;
}

/* ── Retainer table ── */
.yh-includes-table { width: 100%; border-collapse: collapse; margin-top: 40px; }
.yh-includes-table th {
    text-align: left; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
    color: var(--mid); font-weight: 500; padding: 12px 16px;
    border-bottom: 2px solid var(--yellow);
}
.yh-includes-table td { padding: 16px; border-bottom: 1px solid var(--light); font-size: 15px; vertical-align: top; }
.yh-includes-table tr:last-child td { border-bottom: none; }
.yh-includes-table tr:hover td { background: var(--white); }
.yh-feature-name { font-weight: 500; color: var(--black); margin-bottom: 4px; }
.yh-feature-detail { font-size: 13px; color: var(--mid); line-height: 1.5; }
.yh-check { color: var(--yellow-deep); font-weight: 500; font-size: 16px; }

/* ── Retainer compare ── */
.yh-retainer-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.yh-retainer-compare-col {
    background: var(--white); border: 1px solid var(--light);
    border-radius: var(--radius-lg); padding: 28px;
}
.yh-retainer-compare-col--highlight { border-color: var(--yellow); }
.yh-compare-title { font-size: 16px; font-weight: 500; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--light); }
.yh-retainer-compare-col--highlight .yh-compare-title { color: var(--yellow-deep); }
.yh-compare-item-good::before { content: '✓'; color: var(--yellow-deep); font-weight: 500; flex-shrink: 0; }
.yh-compare-item-bad::before  { content: '✕'; color: #c8a0a0; flex-shrink: 0; }

/* ── Proof quote (retainer) ── */
.yh-proof-quote-section { background: var(--yellow); padding: 60px 48px; }
.yh-proof-quote-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.yh-proof-quote-text {
    font-family: var(--serif); font-size: clamp(22px,3vw,32px);
    font-weight: 400; line-height: 1.4; color: var(--black); margin-bottom: 20px;
}
.yh-proof-quote-text em { font-style: italic; }
.yh-proof-attr { font-size: 14px; color: rgba(0,0,0,0.55); }

/* ── FAQ ── */
.yh-faq-section {
    background: var(--white);
    border-top: 1px solid var(--light);
    padding: 80px 48px;
}
.yh-faq-inner { max-width: 760px; margin: 0 auto; }
.yh-faq-item { border-bottom: 1px solid var(--light); padding: 24px 0; }
.yh-faq-item:last-child { border-bottom: none; }
.yh-faq-q {
    font-size: 17px; font-weight: 500; margin-bottom: 0; cursor: pointer;
    display: flex; justify-content: space-between; align-items: start; gap: 16px;
    list-style: none; user-select: none;
}
.yh-faq-q::after { content: '+'; font-size: 22px; color: var(--mid); flex-shrink: 0; font-weight: 300; line-height: 1; }
.yh-faq-q.is-open::after { content: '−'; }
.yh-faq-a { font-size: 15px; color: var(--slate); line-height: 1.7; display: none; padding-top: 14px; }
.yh-faq-q.is-open + .yh-faq-a { display: block; }

/* ── About page ── */
.yh-about-hero { padding: 100px 48px 80px; }
.yh-about-hero-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: start;
}
.yh-about-lead { font-size: 20px; color: var(--slate); font-weight: 300; line-height: 1.7; margin-bottom: 24px; }
.yh-about-body { font-size: 16px; color: var(--slate); line-height: 1.8; }
.yh-about-body p { margin-bottom: 20px; }
.yh-about-body strong { color: var(--black); font-weight: 500; }
.yh-profile-card {
    background: var(--black); border-radius: var(--radius-xl);
    padding: 36px; position: sticky; top: 80px;
}
.yh-profile-name { font-family: var(--serif); font-size: 28px; color: var(--off-white); margin-bottom: 4px; }
.yh-profile-title { font-size: 14px; color: #6b6b62; margin-bottom: 24px; }
.yh-profile-stats { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; border-top: 1px solid #2a2a27; padding-top: 24px; }
.yh-profile-stat { display: flex; justify-content: space-between; align-items: center; }
.yh-stat-label { font-size: 12px; color: #6b6b62; }
.yh-stat-value { font-size: 15px; color: var(--off-white); font-weight: 500; }
.yh-profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.yh-profile-tag {
    background: #1a1a17; border: 1px solid #2a2a27;
    border-radius: 100px; padding: 5px 12px; font-size: 12px; color: #8a8a80;
}
.yh-profile-cta {
    display: block; background: var(--yellow); color: var(--black);
    padding: 12px; border-radius: 100px; font-size: 14px; font-weight: 500;
    text-align: center; transition: all .15s;
}
.yh-profile-cta:hover { background: var(--yellow-deep); }
.yh-values-section { padding: 80px 48px; background: var(--white); border-top: 1px solid var(--light); }
.yh-values-inner { max-width: 1100px; margin: 0 auto; }
.yh-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.yh-value-card { border: 1px solid var(--light); border-radius: var(--radius-lg); padding: 28px; border-top: 3px solid var(--yellow); }
.yh-value-title { font-size: 17px; font-weight: 500; margin-bottom: 10px; }
.yh-value-body { font-size: 14px; color: var(--slate); line-height: 1.65; }
.yh-expertise-section { padding: 80px 48px; }
.yh-expertise-inner { max-width: 1100px; margin: 0 auto; }
.yh-expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; align-items: start; }
.yh-expertise-list { display: flex; flex-direction: column; gap: 12px; }
.yh-expertise-item {
    background: var(--white); border: 1px solid var(--light);
    border-radius: var(--radius-md); padding: 18px 20px 18px 24px;
    border-left: 3px solid var(--yellow); font-size: 15px; color: var(--slate); line-height: 1.5;
}
.yh-expertise-item strong { color: var(--black); font-weight: 500; display: block; margin-bottom: 3px; }
.yh-projects-col h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; margin-bottom: 20px; }
.yh-project-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--light); align-items: flex-start; }
.yh-project-item:last-child { border-bottom: none; }
.yh-project-dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.yh-project-name { font-size: 15px; font-weight: 500; margin-bottom: 3px; }
.yh-project-desc { font-size: 13px; color: var(--mid); line-height: 1.5; }
.yh-about-cta-section { background: var(--black); padding: 80px 48px; border-top: 3px solid var(--yellow); }
.yh-about-cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.yh-about-cta-inner h2 { color: var(--off-white); margin-bottom: 16px; }
.yh-about-cta-inner p { font-size: 17px; color: #8a8a80; font-weight: 300; line-height: 1.7; margin-bottom: 36px; }

/* ── Contact page ── */
.yh-contact-wrap { max-width: 1100px; margin: 0 auto; padding: 80px 48px; display: grid; grid-template-columns: 1fr 440px; gap: 80px; align-items: start; }
.yh-contact-lead { font-size: 18px; color: var(--slate); font-weight: 300; line-height: 1.7; margin-bottom: 48px; max-width: 480px; }
.yh-guidance { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }
.yh-guidance-item { display: flex; gap: 14px; align-items: flex-start; }
.yh-guidance-num {
    width: 28px; height: 28px; background: var(--yellow); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 500; color: var(--black); flex-shrink: 0; margin-top: 1px;
}
.yh-guidance-text { font-size: 15px; color: var(--slate); line-height: 1.55; }
.yh-guidance-text strong { color: var(--black); font-weight: 500; }
.yh-direct-contact { border-top: 1px solid var(--light); padding-top: 32px; }
.yh-direct-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); font-weight: 500; margin-bottom: 16px; }
.yh-direct-email {
    font-family: var(--serif); font-size: 24px; color: var(--black);
    border-bottom: 2px solid var(--yellow); display: inline-block;
    padding-bottom: 3px; transition: color .2s;
}
.yh-direct-email:hover { color: var(--yellow-deep); }
.yh-direct-note { font-size: 13px; color: var(--mid); margin-top: 10px; }
.yh-contact-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.yh-contact-badge {
    display: flex; align-items: center; gap: 7px;
    background: var(--white); border: 1px solid var(--light);
    border-radius: 100px; padding: 7px 14px; font-size: 13px; color: var(--slate);
}
.yh-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); }
.yh-form-card {
    background: var(--white); border: 1px solid var(--light);
    border-radius: var(--radius-xl); padding: 40px; position: sticky; top: 80px;
}
.yh-form-card h2 { font-family: var(--serif); font-size: 26px; font-weight: 400; margin-bottom: 6px; }
.yh-form-card-sub { font-size: 14px; color: var(--mid); margin-bottom: 28px; }
.yh-form-group { margin-bottom: 18px; }
.yh-form-label { display: block; font-size: 13px; font-weight: 500; color: var(--black); margin-bottom: 6px; }
.yh-form-label span { color: var(--yellow-deep); margin-left: 2px; }
.yh-form-input, .yh-form-select, .yh-form-textarea {
    width: 100%; border: 1.5px solid var(--light); border-radius: 10px;
    padding: 11px 14px; font-size: 15px; font-family: var(--sans);
    color: var(--black); background: var(--off-white);
    transition: border-color .2s; outline: none; appearance: none;
}
.yh-form-input:focus, .yh-form-select:focus, .yh-form-textarea:focus { border-color: var(--yellow-deep); background: var(--white); }
.yh-form-input.has-error, .yh-form-textarea.has-error { border-color: #e05252; }
.yh-form-textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.yh-form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b62' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}
.yh-form-error { font-size: 12px; color: #e05252; margin-top: 5px; display: none; }
.yh-form-error.is-visible { display: block; }
.yh-form-submit {
    width: 100%; background: var(--black); color: var(--off-white);
    border: none; border-radius: 100px; padding: 15px;
    font-size: 16px; font-weight: 500; cursor: pointer;
    font-family: var(--sans); transition: all .15s; margin-top: 8px;
}
.yh-form-submit:hover { background: var(--slate); transform: translateY(-1px); }
.yh-form-submit:disabled { opacity: .6; cursor: wait; }
.yh-form-privacy { font-size: 12px; color: var(--mid); text-align: center; margin-top: 12px; }
.yh-form-success { display: none; text-align: center; padding: 20px 0; }
.yh-form-success.is-visible { display: block; }
.yh-success-icon {
    width: 56px; height: 56px; background: var(--yellow); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 24px;
}
.yh-success-title { font-family: var(--serif); font-size: 24px; margin-bottom: 8px; }
.yh-success-body { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* ── Scorecard page ── */
.yh-scorecard-page { min-height: calc(100vh - 64px); background: var(--off-white); }
#scorecard-root { max-width: 1200px; margin: 0 auto; padding: 60px 24px 100px; }
.yh-sc-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--yellow); color: var(--black); padding: 5px 14px;
    border-radius: 100px; font-size: 11px; font-weight: 500;
    letter-spacing: .07em; text-transform: uppercase; margin-bottom: 28px;
    box-shadow: 0 0 0 4px rgba(245,200,66,0.2);
}
.yh-sc-badge::before { content: ''; width: 5px; height: 5px; background: var(--black); border-radius: 50%; }
.yh-sc-title { font-family: var(--serif); font-size: clamp(38px,6vw,58px); line-height: 1.1; font-weight: 400; margin-bottom: 20px; }
.yh-sc-title em { font-style: italic; color: var(--mid); }
.yh-sc-sub { font-size: 18px; color: var(--slate); font-weight: 300; line-height: 1.65; max-width: 520px; margin: 0 auto 40px; }
.yh-sc-meta { display: flex; gap: 32px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.yh-sc-meta-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--mid); }
.yh-sc-meta-dot { width: 6px; height: 6px; background: var(--yellow-deep); border-radius: 50%; }
.yh-sc-btn-start {
    display: inline-block; background: var(--black); color: var(--off-white);
    padding: 16px 36px; border-radius: 100px; font-size: 16px; font-weight: 500;
    cursor: pointer; border: none; font-family: var(--sans); transition: all .15s;
}
.yh-sc-btn-start:hover { transform: translateY(-1px); background: var(--slate); }
.yh-progress-wrap { background: var(--light); height: 6px; border-radius: 100px; margin-bottom: 48px; overflow: hidden; }
.yh-progress-fill { height: 100%; background: var(--yellow); border-radius: 100px; transition: width .5s ease; box-shadow: 0 0 8px rgba(245,200,66,.5); }
.yh-q-counter {
    font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
    color: var(--yellow-deep); font-weight: 500; margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.yh-q-counter::before { content: ''; display: inline-block; width: 20px; height: 3px; background: var(--yellow); border-radius: 2px; }
.yh-q-text { font-family: var(--serif); font-size: clamp(24px,4vw,36px); line-height: 1.2; font-weight: 400; margin-bottom: 8px; }
.yh-q-why { font-size: 14px; color: var(--mid); margin-bottom: 36px; font-style: italic; }
.yh-answers { display: flex; flex-direction: column; gap: 12px; }
.yh-answer-btn {
    background: var(--white); border: 1.5px solid var(--light); border-radius: 12px;
    padding: 18px 24px; font-size: 16px; color: var(--slate); cursor: pointer;
    text-align: left; font-family: var(--sans); font-weight: 400;
    transition: all .15s; display: flex; align-items: center; gap: 14px; position: relative;
}
.yh-answer-btn:hover { border-color: var(--yellow-deep); background: #fffbef; color: var(--black); transform: translateX(3px); }
.yh-answer-btn.is-selected { border-color: var(--yellow-deep); background: #fffbef; color: var(--black); border-left: 3px solid var(--yellow); }
.yh-answer-btn.is-selected::after { content: '✓'; position: absolute; right: 20px; color: var(--yellow-deep); font-weight: 500; }
.yh-answer-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--light); flex-shrink: 0; transition: all .15s; }
.yh-answer-btn:hover .yh-answer-radio,
.yh-answer-btn.is-selected .yh-answer-radio { border-color: var(--yellow-deep); background: var(--yellow); }
.yh-q-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.yh-btn-prev { background: none; border: none; cursor: pointer; font-size: 14px; color: var(--mid); font-family: var(--sans); display: flex; align-items: center; gap: 5px; transition: color .2s; padding: 8px 0; }
.yh-btn-prev:hover { color: var(--black); }
.yh-btn-prev:disabled { opacity: .3; cursor: default; }
.yh-btn-next { background: var(--black); color: var(--off-white); border: none; border-radius: 100px; padding: 12px 28px; font-size: 15px; font-weight: 500; cursor: pointer; font-family: var(--sans); transition: all .15s; opacity: .4; pointer-events: none; }
.yh-btn-next.is-active { opacity: 1; pointer-events: all; }
.yh-btn-next.is-active:hover { background: var(--slate); transform: translateY(-1px); }
.yh-email-card { background: var(--white); border: 1px solid var(--light); border-radius: var(--radius-xl); padding: 48px 40px; max-width: 520px; margin: 0 auto; }
.yh-email-card h2 { font-family: var(--serif); font-size: 32px; font-weight: 400; margin-bottom: 12px; line-height: 1.2; }
.yh-email-card p { font-size: 15px; color: var(--slate); margin-bottom: 28px; line-height: 1.65; }
.yh-preview-scores { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.yh-preview-score { background: var(--off-white); border-radius: 10px; padding: 14px; text-align: left; }
.yh-preview-score-label { font-size: 11px; color: var(--mid); margin-bottom: 4px; }
.yh-preview-score-val { font-family: var(--serif); font-size: 24px; color: var(--black); }
.yh-preview-score-val--blur { filter: blur(5px); user-select: none; }
.yh-email-form { display: flex; flex-direction: column; gap: 12px; }
.yh-email-input, .yh-name-input {
    border: 1.5px solid var(--light); border-radius: 10px; padding: 14px 18px;
    font-size: 15px; font-family: var(--sans); color: var(--black);
    background: var(--off-white); transition: border-color .2s; outline: none; width: 100%;
}
.yh-email-input:focus, .yh-name-input:focus { border-color: var(--yellow-deep); }
.yh-btn-reveal {
    background: var(--black); color: var(--off-white); border: none;
    border-radius: 100px; padding: 15px; font-size: 16px; font-weight: 500;
    cursor: pointer; font-family: var(--sans); transition: all .15s; width: 100%;
}
.yh-btn-reveal:hover { background: var(--slate); }
.yh-btn-reveal:disabled { opacity: .6; cursor: wait; }
.yh-email-privacy { font-size: 12px; color: var(--mid); margin-top: 8px; }
.yh-results-header { text-align: center; margin-bottom: 48px; }
.yh-score-ring-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
.yh-score-ring { width: 160px; height: 160px; position: relative; }
.yh-score-ring svg { transform: rotate(-90deg); }
.yh-score-number { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.yh-score-num { font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--black); }
.yh-score-denom { font-size: 13px; color: var(--mid); }
.yh-score-label { font-family: var(--serif); font-size: 28px; margin-bottom: 8px; }
.yh-score-sublabel { font-size: 16px; color: var(--slate); }
.yh-category-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 40px; }
.yh-cat-card { background: var(--white); border: 1px solid var(--light); border-radius: var(--radius-md); padding: 20px 22px; }
.yh-cat-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.yh-cat-name { font-size: 13px; font-weight: 500; color: var(--black); }
.yh-cat-pill { font-size: 12px; font-weight: 500; padding: 3px 10px; border-radius: 100px; }
.yh-cat-pill--red   { background: #fce8e8; color: #c03030; }
.yh-cat-pill--amber { background: #fef5d6; color: #9a6500; }
.yh-cat-pill--green { background: #e0f5ec; color: #1a7a4a; }
.yh-cat-bar-wrap { background: var(--off-white); height: 6px; border-radius: 100px; overflow: hidden; }
.yh-cat-bar { height: 100%; border-radius: 100px; transition: width 1.2s ease; }
.yh-cat-bar--red   { background: #e05252; }
.yh-cat-bar--amber { background: #d48f00; }
.yh-cat-bar--green { background: #2d9e6b; }
.yh-analysis-section { background: var(--black); border-radius: var(--radius-xl); padding: 36px; margin-bottom: 28px; color: var(--off-white); }
.yh-analysis-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 16px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.yh-analysis-label::before { content: ''; width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; }
.yh-analysis-text { font-size: 16px; line-height: 1.75; color: #c8c5be; }
.yh-analysis-text p { margin-bottom: 12px; }
.yh-analysis-text p:last-child { margin-bottom: 0; }
.yh-typing-cursor { display: inline-block; width: 2px; height: 16px; background: var(--yellow); margin-left: 2px; animation: yh-blink .7s step-end infinite; vertical-align: middle; }
@keyframes yh-blink { 50% { opacity: 0; } }
.yh-priorities-section { margin-bottom: 28px; }
.yh-priorities-section h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 16px; }
.yh-priority-item { background: var(--white); border: 1px solid var(--light); border-radius: 12px; padding: 18px 20px; margin-bottom: 10px; display: flex; gap: 14px; align-items: flex-start; }
.yh-priority-tag { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; padding: 3px 9px; border-radius: 100px; flex-shrink: 0; margin-top: 1px; }
.yh-tag--high  { background: #fce8e8; color: #c03030; }
.yh-tag--med   { background: #fef5d6; color: #9a6500; }
.yh-tag--low   { background: #e0f5ec; color: #1a7a4a; }
.yh-priority-title { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.yh-priority-body  { font-size: 13px; color: var(--mid); line-height: 1.55; }
.yh-sc-cta-card { background: var(--yellow); border-radius: var(--radius-xl); padding: 40px; text-align: center; }
.yh-sc-cta-card h2 { font-family: var(--serif); font-size: 30px; font-weight: 400; margin-bottom: 12px; line-height: 1.2; }
.yh-sc-cta-card p { font-size: 15px; color: var(--slate); margin-bottom: 28px; line-height: 1.65; }
.yh-sc-loading { text-align: center; padding: 48px 0; }
.yh-sc-spinner { width: 36px; height: 36px; border: 3px solid var(--light); border-top-color: var(--yellow-deep); border-radius: 50%; animation: yh-spin .8s linear infinite; margin: 0 auto 16px; }
@keyframes yh-spin { to { transform: rotate(360deg); } }
.yh-sc-loading-text { font-size: 15px; color: var(--mid); }

/* ── Responsive additions ── */
@media (max-width: 900px) {
    .yh-page-hero { padding: 60px 20px; }
    .yh-page-hero-inner { grid-template-columns: 1fr; }
    .yh-included-grid { grid-template-columns: 1fr 1fr; }
    .yh-process-steps { grid-template-columns: 1fr 1fr; }
    .yh-process-steps::before { display: none; }
    .yh-for-grid, .yh-deliverables-grid, .yh-compare-grid, .yh-retainer-compare-grid { grid-template-columns: 1fr; }
    .yh-about-hero { padding: 48px 20px 60px; }
    .yh-about-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .yh-profile-card { position: static; }
    .yh-values-section, .yh-expertise-section { padding: 60px 20px; }
    .yh-values-grid { grid-template-columns: 1fr; }
    .yh-expertise-grid { grid-template-columns: 1fr; }
    .yh-faq-section { padding: 60px 20px; }
    .yh-process-section { padding: 60px 20px; }
    .yh-compare-section { padding: 60px 20px; }
    .yh-proof-quote-section { padding: 48px 20px; }
    .yh-contact-wrap { padding: 48px 20px; grid-template-columns: 1fr; gap: 48px; }
    .yh-form-card { position: static; }
    .yh-about-cta-section { padding: 60px 20px; }
}
@media (max-width: 600px) {
    .yh-included-grid { grid-template-columns: 1fr; }
    .yh-process-steps { grid-template-columns: 1fr; }
    .yh-category-grid { grid-template-columns: 1fr; }
    .yh-preview-scores { grid-template-columns: 1fr 1fr; }
    #scorecard-root { padding: 40px 16px 80px; }
}

/* ── Stripe booking form (audit page) ── */
.yh-book-form { display:flex; flex-direction:column; gap:10px; max-width:420px; }
.yh-book-name, .yh-book-email {
    border:1.5px solid var(--light); border-radius:10px;
    padding:12px 16px; font-size:15px; font-family:var(--sans);
    background:var(--off-white); outline:none; width:100%;
    transition:border-color .2s;
}
.yh-page-hero--dark .yh-book-name,
.yh-page-hero--dark .yh-book-email { background:#1a1a17; border-color:#2a2a27; color:var(--off-white); }
.yh-page-hero--dark .yh-book-name::placeholder,
.yh-page-hero--dark .yh-book-email::placeholder { color:#6b6b62; }
.yh-book-name:focus, .yh-book-email:focus { border-color:var(--yellow-deep); }
.yh-book-note { font-size:12px; color:#6b6b62; margin:0; }
.yh-page-hero .yh-book-note { color:#4a4a42; }

/* ── Process grid (3-col × 2-row) ──────────────────────────────────────── */
.yh-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.yh-process-card {
    background: var(--card);
    border: 1px solid var(--light);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.yh-process-card .yh-p-num {
    width: 36px;
    height: 36px;
    background: var(--yellow);
    color: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}
.yh-process-card .yh-p-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
}
.yh-process-card .yh-p-body {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.6;
    flex: 1;
}
.yh-process-card .yh-p-duration {
    font-size: 12px;
    color: var(--mid);
    font-weight: 500;
    background: var(--bg);
    border: 1px solid var(--light);
    border-radius: 4px;
    padding: 3px 8px;
    display: inline-block;
    width: fit-content;
}
@media (max-width: 768px) {
    .yh-process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
    .yh-process-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════
   SCORECARD — Glamour snapshot + What list
   ══════════════════════════════════════════════════════════════════ */

.yh-sc-snapshot {
    margin: 32px auto 0;
    max-width: 560px;
    position: relative;
}
.yh-sc-snap-card {
    background: var(--off-white);
    border: 1px solid #ddd9ce;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,.08);
}
.yh-sc-snap-header {
    background: var(--black);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.yh-sc-snap-title { color: var(--off-white); font-size: 13px; font-weight: 600; }
.yh-sc-snap-site  { color: #666; font-size: 11px; font-family: var(--mono, monospace); }

.yh-sc-snap-score-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}
.yh-sc-snap-dial {
    position: relative;
    flex-shrink: 0;
    width: 90px;
    height: 90px;
}
.yh-sc-snap-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 22px;
    color: var(--black);
}
.yh-sc-snap-num span { font-size: 11px; color: var(--mid); margin-left: 1px; }

.yh-sc-snap-cats { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.yh-sc-snap-cat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--black);
}
.yh-sc-snap-cat-name { flex: 0 0 130px; font-size: 11px; color: #555; }
.yh-sc-snap-cat-bar {
    flex: 1;
    height: 5px;
    background: #e2e0d8;
    border-radius: 10px;
    overflow: hidden;
}
.yh-sc-snap-cat-bar span {
    display: block;
    height: 100%;
    background: var(--yellow-deep);
    border-radius: 10px;
}
.yh-sc-snap-cat-bar--critical span { background: #c0392b; }
.yh-sc-snap-cat-pct { font-size: 11px; color: #888; width: 28px; text-align: right; }

.yh-sc-snap-actions { padding: 0 20px 16px; display: flex; flex-direction: column; gap: 8px; }
.yh-sc-snap-action {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--black);
    line-height: 1.4;
}
.yh-sc-snap-do {
    flex-shrink: 0;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    background: rgba(192,57,43,.1);
    color: #c0392b;
    padding: 2px 7px;
    border-radius: 20px;
    margin-top: 1px;
}
.yh-sc-snap-do--next { background: rgba(184,147,10,.1); color: #b8930a; }

.yh-sc-snap-blur-cta {
    text-align: center;
    padding: 10px 20px 16px;
    font-size: 12px;
    color: #888;
    border-top: 1px solid #e2e0d8;
    font-style: italic;
}

/* What list */
.yh-sc-what-list {
    max-width: 480px;
    margin: 36px auto 0;
    text-align: left;
}
.yh-sc-what-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--mid);
    margin-bottom: 16px;
    text-align: center;
}
.yh-sc-what-items { display: flex; flex-direction: column; gap: 11px; }
.yh-sc-what-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}
.yh-sc-what-icon {
    color: var(--yellow-deep);
    font-size: 8px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Scorecard URL input */
.yh-url-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #ddd9ce;
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--sans);
    background: var(--off-white);
    color: var(--black);
    outline: none;
    transition: border-color .18s;
    box-sizing: border-box;
}
.yh-url-input:focus { border-color: var(--yellow-deep); }

/* ══════════════════════════════════════════════════════════════════
   AUDIT PAGE — Report glamour snapshots
   ══════════════════════════════════════════════════════════════════ */

.yh-report-snaps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .yh-report-snaps { grid-template-columns: 1fr; } }

.yh-rsnap-card {
    background: #111;
    border: 1px solid #2a2a27;
    border-radius: 14px;
    overflow: hidden;
}
.yh-rsnap-label {
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #666;
    border-bottom: 1px solid #2a2a27;
}
.yh-rsnap-body { padding: 16px; }

/* Snap 1: score dial + cats */
.yh-rsnap-score-row { display: flex; align-items: flex-start; gap: 14px; }
.yh-rsnap-dial { position: relative; flex-shrink: 0; width: 80px; height: 80px; }
.yh-rsnap-num {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 20px; color: #b8933a;
}
.yh-rsnap-num span { font-size: 10px; color: #555; margin-left: 1px; }
.yh-rsnap-cats { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.yh-rsnap-cat { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: #ccc; }

/* Severity badges (dark version for report snaps) */
.yh-rsnap-badge {
    font-size: 9px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .05em; padding: 2px 8px; border-radius: 20px;
}
.yh-rsnap-badge--critical { background: rgba(192,57,43,.2);  color: #e5665a; }
.yh-rsnap-badge--high     { background: rgba(212,98,26,.2);  color: #e8885a; }
.yh-rsnap-badge--medium   { background: rgba(184,147,10,.2); color: #d4b040; }
.yh-rsnap-badge--low      { background: rgba(37,99,235,.2);  color: #7aabf0; }
.yh-rsnap-badge--pass     { background: rgba(26,122,72,.2);  color: #4ade80; }

/* Snap 2: findings */
.yh-rsnap-body--findings { display: flex; flex-direction: column; gap: 12px; }
.yh-rsnap-finding { padding-bottom: 12px; border-bottom: 1px solid #2a2a27; }
.yh-rsnap-finding:last-child { border-bottom: none; padding-bottom: 0; }
.yh-rsnap-finding-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; }
.yh-rsnap-finding-title { font-size: 12px; font-weight: 600; color: #e0ded8; }
.yh-rsnap-finding-text { font-size: 11px; color: #888; line-height: 1.5; margin: 0; }

/* Snap 3: priorities */
.yh-rsnap-body--priorities { display: flex; flex-direction: column; gap: 12px; }
.yh-rsnap-priority { display: flex; gap: 10px; align-items: flex-start; }
.yh-rsnap-do {
    flex-shrink: 0; margin-top: 2px;
    font-size: 8px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    padding: 3px 7px; border-radius: 20px;
}
.yh-rsnap-do--first { background: rgba(192,57,43,.15); color: #e5665a; }
.yh-rsnap-do--next  { background: rgba(184,147,10,.15); color: #d4b040; }
.yh-rsnap-p-title { font-size: 12px; font-weight: 600; color: #e0ded8; margin-bottom: 3px; }
.yh-rsnap-p-body  { font-size: 11px; color: #888; line-height: 1.5; }

/* Scorecard tagline */
.yh-sc-tagline {
    font-size: 14px;
    color: var(--mid);
    margin: -8px 0 20px;
    font-style: italic;
}

/* Homepage FAQ */
#faq .yh-faq-item { border-bottom: 1px solid var(--light); padding-bottom: 18px; margin-bottom: 18px; }
#faq .yh-faq-item:last-child { border-bottom: none; }

/* ── Plugin callout (homepage) ─────────────────────────────────────────────── */
.yh-plugin-callout {
    margin-top: 36px;
    background: #fff;
    border: 1px solid #e2e0d8;
    border-left: 4px solid var(--yellow-deep);
    border-radius: 0 10px 10px 0;
    padding: 0;
}
.yh-plugin-callout-inner {
    display: flex;
    gap: 20px;
    padding: 22px 26px;
    align-items: flex-start;
}
.yh-plugin-callout-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.yh-plugin-callout-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    font-family: var(--serif);
}
.yh-plugin-callout-body {
    font-size: 14px;
    color: #4a4a45;
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 600px) {
    .yh-plugin-callout-inner { flex-direction: column; gap: 12px; }
}

/* ══════════════════════════════════════════════════════════════════
   GLOBAL FIX — Double underline on ghost links
   ══════════════════════════════════════════════════════════════════ */
.yh-btn-ghost-dark,
.yh-btn-ghost-dark:link,
.yh-btn-ghost-dark:visited { text-decoration: none; }

/* ══════════════════════════════════════════════════════════════════
   NAVIGATION — Updated labels
   ══════════════════════════════════════════════════════════════════ */
/* nav label styles already handled by .yh-nav-links a — no new CSS needed */

/* ══════════════════════════════════════════════════════════════════
   IMPLEMENTATION HERO — Dark variant + H1 accent
   ══════════════════════════════════════════════════════════════════ */
.yh-page-hero--dark { background: var(--black); }
.yh-page-hero--dark h1 { color: var(--off-white); }
.yh-page-hero--dark .yh-h1-accent { font-style: italic; color: #8a8a80; }
.yh-page-hero--dark .yh-page-hero-sub { color: #6b6b62; }
.yh-page-hero--dark .yh-breadcrumb,
.yh-page-hero--dark .yh-breadcrumb a { color: #4a4a42; }
.yh-page-hero--dark .yh-hero-eyebrow { color: var(--yellow); background: transparent; border: 1px solid #2a2a27; }
.yh-page-hero--dark .yh-btn-primary { background: var(--yellow); color: var(--black); }
.yh-page-hero--dark .yh-btn-primary:hover { background: var(--yellow-deep); }
.yh-page-hero--dark .yh-btn-ghost-dark { color: #6b6b62; border-color: #2a2a27; }
.yh-page-hero--dark .yh-btn-ghost-dark:hover { color: var(--off-white); border-color: #6b6b62; }

/* Scope card items list (implementation) */
.yh-scope-card-items { display: flex; flex-direction: column; gap: 8px; }
.yh-scope-card-item {
    font-size: 12px; color: #c8c5be;
    display: flex; gap: 8px; align-items: flex-start; line-height: 1.5;
}
.yh-scope-card-item::before { content: '→'; color: var(--yellow); flex-shrink: 0; font-size: 11px; margin-top: 1px; }

/* ══════════════════════════════════════════════════════════════════
   HOMEPAGE — Social proof / testimonial section
   ══════════════════════════════════════════════════════════════════ */
.yh-social-proof {
    background: #fff;
    border-top: 1px solid #e8e5de;
    border-bottom: 1px solid #e8e5de;
    padding: 56px 40px;
}
.yh-social-proof-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.yh-proof-quote-mark {
    font-family: var(--serif);
    font-size: 72px;
    line-height: .6;
    color: var(--yellow-deep);
    margin-bottom: 16px;
    opacity: .6;
}
.yh-proof-quote {
    font-family: var(--serif);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.5;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 28px;
    font-style: italic;
}
.yh-proof-attribution {
    display: flex;
    align-items: center;
    gap: 14px;
}
.yh-proof-avatar {
    width: 44px; height: 44px;
    background: var(--black);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 14px; color: var(--yellow);
    flex-shrink: 0;
}
.yh-proof-name { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.yh-proof-role { font-size: 12px; color: var(--mid); }
.yh-proof-stats {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 48px;
    border-left: 1px solid #e8e5de;
}
.yh-proof-stat-num {
    font-family: var(--serif);
    font-size: 36px;
    color: var(--black);
    line-height: 1;
    margin-bottom: 4px;
}
.yh-proof-stat-label { font-size: 13px; color: var(--mid); line-height: 1.45; }
@media (max-width: 760px) {
    .yh-social-proof-inner { grid-template-columns: 1fr; gap: 32px; }
    .yh-social-proof { padding: 40px 24px; }
    .yh-proof-stats { border-left: none; border-top: 1px solid #e8e5de; padding-left: 0; padding-top: 28px; flex-direction: row; flex-wrap: wrap; gap: 24px; }
}

/* ══════════════════════════════════════════════════════════════════
   HOMEPAGE — Plugin callout (redesigned)
   ══════════════════════════════════════════════════════════════════ */
.yh-plugin-callout {
    margin-top: 36px;
    background: #fff;
    border: 1px solid #e2e0d8;
    border-left: 4px solid var(--yellow-deep);
    border-radius: 0 12px 12px 0;
    overflow: hidden;
}
.yh-plugin-callout-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.yh-plugin-callout-left {
    padding: 28px 32px;
    border-right: 1px solid #e8e5de;
}
.yh-plugin-callout-right {
    padding: 24px 28px;
    background: #faf9f6;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}
.yh-plugin-callout-title {
    font-family: var(--serif);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 14px;
    line-height: 1.2;
}
.yh-plugin-callout-body {
    font-size: 14px;
    color: #4a4a45;
    line-height: 1.7;
    margin: 0 0 10px;
}
.yh-plugin-callout-body:last-child { margin-bottom: 0; }
.yh-plugin-gap-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    color: #4a4a45;
    line-height: 1.45;
}
.yh-plugin-gap-item strong { display: block; color: var(--black); font-weight: 600; margin-bottom: 1px; }
.yh-plugin-gap-item span { color: var(--mid); font-size: 12px; }
.yh-plugin-gap-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: rgba(212,168,0,.1);
    border: 1px solid rgba(212,168,0,.25);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: var(--yellow-deep);
    margin-top: 1px;
}
@media (max-width: 760px) {
    .yh-plugin-callout-inner { grid-template-columns: 1fr; }
    .yh-plugin-callout-left { border-right: none; border-bottom: 1px solid #e8e5de; }
}

/* ══════════════════════════════════════════════════════════════════
   AUDIT PAGE — Booking form in hero
   ══════════════════════════════════════════════════════════════════ */
.yh-audit-book-form { display: flex; flex-direction: column; gap: 10px; max-width: 420px; }
.yh-audit-form-fields { display: flex; flex-direction: column; gap: 10px; }
.yh-audit-input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #2a2a27;
    border-radius: 8px;
    background: #1a1a17;
    color: var(--off-white);
    font-size: 15px;
    font-family: var(--sans);
    transition: border-color .15s;
}
.yh-audit-input::placeholder { color: #555; }
.yh-audit-input:focus { outline: none; border-color: var(--yellow-deep); }
.yh-audit-submit {
    display: block; width: 100%;
    padding: 14px; border-radius: 100px;
    background: var(--yellow); color: var(--black);
    font-size: 15px; font-weight: 600;
    border: none; cursor: pointer; font-family: var(--sans);
    transition: background .15s, transform .15s;
}
.yh-audit-submit:hover { background: var(--yellow-deep); transform: translateY(-1px); }
.yh-audit-scorecard-link {
    font-size: 13px; color: #6b6b62;
    text-decoration: underline; text-underline-offset: 3px;
    text-align: center;
}
.yh-audit-scorecard-link:hover { color: var(--off-white); }

/* ══════════════════════════════════════════════════════════════════
   AUDIT PAGE — Report section (distinct background)
   ══════════════════════════════════════════════════════════════════ */
.yh-report-section {
    background: linear-gradient(160deg, #141412 0%, #0f0f0d 60%, #171714 100%);
    border-top: 1px solid #1e1e1b;
    border-bottom: 1px solid #1e1e1b;
}
/* Make cards slightly larger and more impactful */
.yh-report-section .yh-report-snaps {
    gap: 16px;
}
.yh-report-section .yh-rsnap-card {
    background: #141412;
    border: 1px solid #262623;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    transform: translateY(0);
    transition: transform .2s, box-shadow .2s;
}
.yh-report-section .yh-rsnap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.yh-report-section .yh-rsnap-label {
    background: #0f0f0d;
    border-bottom: 1px solid #262623;
    padding: 14px 20px;
    font-size: 10px;
    letter-spacing: .1em;
    color: var(--yellow-deep);
}
.yh-report-section .yh-rsnap-body { padding: 20px; }

/* ══════════════════════════════════════════════════════════════════
   AUDIT PAGE — Included cards (icon redesign, inspired by ref image)
   ══════════════════════════════════════════════════════════════════ */
.yh-inc-icon {
    width: 44px; height: 44px;
    border: 1px solid #e2e0d8;
    border-radius: 10px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    color: var(--black);
    flex-shrink: 0;
    transition: background .15s, border-color .15s;
}
.yh-included-card:hover .yh-inc-icon {
    background: var(--yellow);
    border-color: var(--yellow-deep);
}
/* Subtle icon accent colours */
.yh-inc-icon--robot  { color: #1a1a17; }
.yh-inc-icon--tag    { color: #1a1a17; }
.yh-inc-icon--eye    { color: #1a1a17; }
.yh-inc-icon--bolt   { color: #1a1a17; }
.yh-inc-icon--doc    { color: #1a1a17; }
.yh-inc-icon--report { color: #1a1a17; }

/* ══════════════════════════════════════════════════════════════════
   SCORECARD — Two-column hero
   ══════════════════════════════════════════════════════════════════ */
.yh-sc-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 40px 56px;
}
.yh-sc-hero-left { text-align: left; }
.yh-sc-hero-left .yh-sc-title { font-size: clamp(32px, 4.5vw, 52px); }
.yh-sc-hero-left .yh-sc-sub { margin: 0 0 28px; max-width: 100%; text-align: left; }
.yh-sc-hero-left .yh-sc-meta { justify-content: flex-start; }
.yh-sc-hero-left .yh-sc-btn-start { margin: 0; }
.yh-sc-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.yh-sc-hero-right .yh-sc-snapshot {
    margin: 0;
    max-width: 100%;
    width: 100%;
}
/* Original centred layout used when hero not present */
#sc-intro:not(.yh-sc-hero *) { padding: 56px 40px 0; }
@media (max-width: 900px) {
    .yh-sc-hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 24px 32px;
    }
    .yh-sc-hero-left { text-align: center; }
    .yh-sc-hero-left .yh-sc-meta { justify-content: center; }
    .yh-sc-hero-right { display: none; }
}

/* ══════════════════════════════════════════════════════════════════
   SINGLE.PHP — Blog post template
   ══════════════════════════════════════════════════════════════════ */

/* Hero */
.yh-post-hero {
    background: var(--off-white);
    padding: 56px 40px 0;
    border-bottom: 1px solid var(--border, #e2e0d8);
}
.yh-post-hero-inner { max-width: 1100px; margin: 0 auto; }
.yh-post-breadcrumb {
    display: flex; gap: 8px; align-items: center;
    font-size: 13px; color: var(--mid);
    margin-bottom: 24px;
}
.yh-post-breadcrumb a { color: var(--mid); text-decoration: none; }
.yh-post-breadcrumb a:hover { color: var(--gold, #b8933a); }
.yh-post-breadcrumb span { opacity: .4; }
.yh-post-category {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--gold, #b8933a);
    border: 1.5px solid var(--gold, #b8933a);
    padding: 3px 10px; border-radius: 20px;
    margin-bottom: 20px;
    text-decoration: none;
}
.yh-post-category:hover { background: var(--gold, #b8933a); color: #fff; }
.yh-post-title {
    font-family: var(--serif);
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.08;
    font-weight: 400;
    color: var(--black);
    max-width: 820px;
    margin-bottom: 20px;
}
.yh-post-intro {
    font-size: 19px; color: var(--mid);
    line-height: 1.65; max-width: 680px;
    margin-bottom: 32px;
}
.yh-post-meta {
    display: flex; align-items: center; gap: 18px;
    padding-bottom: 32px;
}
.yh-post-author-avatar {
    width: 40px; height: 40px;
    background: var(--black); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 14px; color: var(--yellow);
    flex-shrink: 0;
}
.yh-post-meta-author { font-weight: 600; color: var(--black); font-size: 14px; display: block; margin-bottom: 2px; }
.yh-post-meta-date { font-size: 12px; color: var(--mid); }
.yh-post-meta-divider { width: 1px; height: 28px; background: #e2e0d8; flex-shrink: 0; }
.yh-post-read-time { font-size: 13px; color: var(--mid); display: flex; align-items: center; gap: 5px; }

/* Layout */
.yh-post-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 72px;
    align-items: start;
}

/* Article body */
.yh-post-body { padding-top: 48px; }
.yh-post-body h2 {
    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 400; line-height: 1.2;
    color: var(--black);
    margin: 52px 0 16px;
    scroll-margin-top: 80px;
}
.yh-post-body h2:first-child { margin-top: 0; }
.yh-post-body h3 {
    font-size: 17px; font-weight: 700;
    color: var(--black); margin: 32px 0 12px;
}
.yh-post-body p { font-size: 17px; line-height: 1.8; color: #2a2a25; margin-bottom: 20px; }
.yh-post-body strong { font-weight: 600; color: var(--black); }
.yh-post-body a { color: var(--gold, #b8933a); text-decoration: underline; text-underline-offset: 3px; }
.yh-post-body a:hover { color: var(--yellow-deep); }
.yh-post-body ul, .yh-post-body ol { padding-left: 24px; margin-bottom: 20px; }
.yh-post-body li { font-size: 16px; line-height: 1.75; color: #2a2a25; margin-bottom: 6px; }
.yh-post-body code {
    font-family: 'Courier New', monospace; font-size: 13px;
    background: #f0efe8; border: 1px solid #e2e0d8;
    padding: 2px 6px; border-radius: 4px; color: var(--black);
}
.yh-post-body blockquote {
    border-left: 4px solid var(--yellow);
    padding: 18px 24px; margin: 32px 0;
    background: #fff; border-radius: 0 8px 8px 0;
    font-family: var(--serif); font-size: 20px;
    line-height: 1.5; color: var(--black); font-style: italic;
}

/* In-article CTA */
.yh-post-cta {
    background: var(--yellow);
    border-radius: 16px;
    padding: 36px 40px;
    margin: 52px 0 0;
    text-align: center;
}
.yh-post-cta-eyebrow {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: rgba(0,0,0,.45); margin-bottom: 10px;
}
.yh-post-cta h3 {
    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 400; color: var(--black);
    margin-bottom: 10px; line-height: 1.2;
}
.yh-post-cta p { font-size: 15px; color: rgba(0,0,0,.55); margin-bottom: 22px; line-height: 1.6; }
.yh-post-cta .yh-btn-primary { display: inline-block; background: var(--black); color: var(--off-white); }
.yh-post-cta-ghost {
    display: inline-block; font-size: 13px; color: rgba(0,0,0,.55);
    text-decoration: underline; text-underline-offset: 3px;
    margin-left: 16px;
}

/* Tags */
.yh-post-tags {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-top: 36px; padding-top: 28px;
    border-top: 1px solid #e2e0d8;
}
.yh-post-tag {
    font-size: 12px; color: var(--mid);
    background: #fff; border: 1px solid #e2e0d8;
    padding: 4px 12px; border-radius: 20px;
    text-decoration: none; transition: all .15s;
}
.yh-post-tag:hover { border-color: var(--gold, #b8933a); color: var(--gold, #b8933a); }

/* Author card */
.yh-post-author-card {
    display: flex; gap: 16px; align-items: flex-start;
    background: #fff; border: 1px solid #e2e0d8;
    border-radius: 12px; padding: 24px;
    margin-top: 32px;
}
.yh-post-author-card-avatar {
    width: 48px; height: 48px; flex-shrink: 0;
    background: var(--black); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 16px; color: var(--yellow);
}
.yh-post-author-card-name { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.yh-post-author-card-bio { font-size: 13px; color: var(--mid); line-height: 1.6; margin: 0; }

/* Sidebar */
.yh-post-sidebar { padding-top: 48px; }
.yh-post-sidebar-sticky {
    position: sticky;
    top: 84px;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Hide scrollbar visually but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.yh-post-sidebar-sticky::-webkit-scrollbar { display: none; }

/* TOC */
.yh-post-toc {
    background: #fff; border: 1px solid #e2e0d8;
    border-radius: 12px; padding: 22px;
}
.yh-post-toc-title {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--mid); margin-bottom: 14px;
}
.yh-post-toc ol { list-style: none; counter-reset: toc; }
.yh-post-toc li {
    counter-increment: toc;
    display: flex; gap: 10px; align-items: flex-start;
    margin-bottom: 10px;
}
.yh-post-toc li::before {
    content: counter(toc);
    flex-shrink: 0; width: 20px; height: 20px;
    background: var(--off-white); border-radius: 4px;
    font-size: 11px; font-weight: 700; color: var(--mid);
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}
.yh-post-toc a { font-size: 13px; color: var(--mid); text-decoration: none; line-height: 1.45; }
.yh-post-toc a:hover { color: var(--gold, #b8933a); }

/* Sidebar CTA */
.yh-post-sidebar-cta {
    background: var(--black); border-radius: 12px; padding: 22px;
}
.yh-post-sidebar-cta-label {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--yellow); margin-bottom: 8px;
}
.yh-post-sidebar-cta h4 {
    font-family: var(--serif); font-size: 19px; font-weight: 400;
    color: #fff; margin-bottom: 8px; line-height: 1.25;
}
.yh-post-sidebar-cta p { font-size: 13px; color: #888; margin-bottom: 14px; line-height: 1.55; }
.yh-post-sidebar-cta-btn {
    display: block; text-align: center;
    background: var(--yellow); color: var(--black);
    padding: 11px 16px; border-radius: 8px;
    font-size: 14px; font-weight: 700;
    text-decoration: none; transition: background .15s;
}
.yh-post-sidebar-cta-btn:hover { background: var(--yellow-deep); }

/* Share */
.yh-post-share-title {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--mid); margin-bottom: 10px;
}
.yh-post-share-links { display: flex; gap: 8px; }
.yh-post-share-btn {
    flex: 1; padding: 9px 6px; border-radius: 8px;
    border: 1px solid #e2e0d8; background: #fff;
    font-size: 11px; font-weight: 600; color: var(--mid);
    text-align: center; cursor: pointer;
    text-decoration: none; font-family: var(--sans);
    transition: all .15s;
}
.yh-post-share-btn:hover { border-color: var(--gold, #b8933a); color: var(--gold, #b8933a); }

/* Related posts */
.yh-post-related { max-width: 1100px; margin: 0 auto; padding: 0 40px 80px; }
.yh-post-related-inner { border-top: 1px solid #e2e0d8; padding-top: 56px; }
.yh-post-related-label {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--mid); margin-bottom: 6px;
}
.yh-post-related h2 {
    font-family: var(--serif); font-size: 28px; font-weight: 400;
    color: var(--black); margin-bottom: 28px;
}
.yh-post-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.yh-post-card {
    background: #fff; border: 1px solid #e2e0d8;
    border-radius: 12px; padding: 22px;
    text-decoration: none; display: block;
    transition: border-color .15s, transform .15s;
}
.yh-post-card:hover { border-color: var(--gold, #b8933a); transform: translateY(-2px); }
.yh-post-card-cat {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--gold, #b8933a); margin-bottom: 8px;
}
.yh-post-card-title {
    font-family: var(--serif); font-size: 17px; font-weight: 400;
    color: var(--black); line-height: 1.3; margin-bottom: 8px;
}
.yh-post-card-excerpt { font-size: 13px; color: var(--mid); line-height: 1.55; margin-bottom: 14px; }
.yh-post-card-read { font-size: 12px; color: var(--gold, #b8933a); font-weight: 600; }

/* Responsive: single post */
@media (max-width: 900px) {
    .yh-post-layout { grid-template-columns: 1fr; gap: 0; padding: 0 24px 56px; }
    .yh-post-hero { padding: 36px 24px 0; }
    .yh-post-sidebar { padding-top: 0; }
    .yh-post-sidebar-sticky { position: static; }
    .yh-post-toc { display: none; }
    .yh-post-related { padding: 0 24px 56px; }
    .yh-post-related-grid { grid-template-columns: 1fr; gap: 14px; }
    .yh-post-related-inner { padding-top: 36px; }
}

/* ── Post body: pull quote ── */
.yh-post-body .wp-block-quote,
.yh-post-body blockquote {
    border-left: 4px solid var(--yellow);
    padding: 20px 28px;
    margin: 36px 0;
    background: #fff;
    border-radius: 0 8px 8px 0;
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.45;
    color: var(--black);
    font-style: italic;
    border-right: none; border-top: none; border-bottom: none;
}
.yh-post-body .wp-block-quote p,
.yh-post-body blockquote p {
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.45;
    color: var(--black);
    margin: 0;
}
.yh-post-body .wp-block-quote cite { font-size: 13px; font-style: normal; color: var(--mid); }

/* ── Post body: code blocks ── */
.yh-post-body pre,
.yh-post-body .wp-block-code {
    background: var(--black);
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
    overflow-x: auto;
}
.yh-post-body pre code,
.yh-post-body .wp-block-code code {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    background: none;
    border: none;
    padding: 0;
    color: var(--yellow);
    line-height: 1.7;
}

/* ── Post callout box (dark) ── */
.post-callout {
    background: var(--black);
    border-radius: 10px;
    padding: 24px 28px;
    margin: 32px 0;
}
.post-callout-label {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--yellow); margin-bottom: 10px;
}
.post-callout p {
    color: #ccc !important;
    font-size: 14px !important;
    margin-bottom: 10px !important;
    line-height: 1.6 !important;
}
.post-callout p:last-child { margin-bottom: 0 !important; }
.post-callout strong { color: #fff !important; }
.post-callout code {
    font-family: 'Courier New', monospace !important;
    font-size: 13px !important;
    background: rgba(255,255,255,.1) !important;
    border: none !important;
    padding: 2px 7px !important;
    border-radius: 4px !important;
    color: var(--yellow) !important;
}

/* ── Post step list (numbered circles) ── */
.post-steps { list-style: none !important; padding-left: 0 !important; margin: 20px 0 28px !important; }
.post-steps li {
    display: flex !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    color: #2a2a25 !important;
    align-items: flex-start !important;
}
.post-steps li strong { color: var(--black) !important; }
.step-num {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    color: var(--black);
    margin-top: 1px;
}

/* ── Post diagnostic check cards ── */
.post-checks { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.post-check {
    background: #fff;
    border: 1px solid #e2e0d8;
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
}
.post-check-name { font-weight: 600; color: var(--black); margin-bottom: 2px; }
.post-check-detail { color: var(--mid); font-size: 13px; }
.post-check-badge {
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
    white-space: nowrap; flex-shrink: 0;
}
.badge-critical { background: rgba(192,57,43,.1); color: #c0392b; }
.badge-pass     { background: rgba(26,122,72,.1);  color: #1a7a48; }
.badge-warn     { background: rgba(184,147,58,.12); color: #92680a; }

/* ── WordPress block editor neutralisation inside post body ── */
.yh-post-body .wp-block-paragraph { margin-bottom: 20px; }
.yh-post-body .wp-block-heading { }
.yh-post-body .wp-block-list { padding-left: 24px; margin-bottom: 20px; }
.yh-post-body .wp-block-list li { font-size: 16px; line-height: 1.75; color: #2a2a25; margin-bottom: 6px; }
.yh-post-body .wp-block-separator { border: none; border-top: 1px solid #e2e0d8; margin: 40px 0; }
.yh-post-body figure.wp-block-image { margin: 32px 0; }
.yh-post-body figure.wp-block-image img { border-radius: 8px; max-width: 100%; height: auto; }
.yh-post-body .wp-block-image figcaption { font-size: 13px; color: var(--mid); text-align: center; margin-top: 8px; }
/* Kill WP default blue link colour inside post body */
.yh-post-body a { color: var(--gold, #b8933a) !important; }
