/* ═══════════════════════════════════════════════════════════════
   periscop.ch — Site vitrine marketing
   Design custom, palette Periscop.
   Préfixes : .p-* pour éviter toute collision avec l'app.
   ═══════════════════════════════════════════════════════════════ */

:root {
    --p-primary:       #0B1437;
    --p-primary-mid:   #1a2555;
    --p-accent:        #22D3EE;
    --p-accent-dark:   #0ea5c9;
    --p-accent-light:  rgba(34, 211, 238, 0.10);
    --p-accent-glow:   rgba(34, 211, 238, 0.25);

    --p-text:          #0F172A;
    --p-text-muted:    #64748B;
    --p-text-light:    #94A3B8;
    --p-text-on-dark:  rgba(255, 255, 255, 0.85);
    --p-text-on-dark-muted: rgba(255, 255, 255, 0.6);
    --p-bg:            #FFFFFF;
    --p-bg-soft:       #F8FAFC;
    --p-bg-section:    #F1F5F9;
    --p-border:        #E2E8F0;
    --p-border-strong: #CBD5E1;

    --p-success: #10B981;
    --p-error:   #EF4444;
    --p-warning: #F59E0B;

    --p-radius-sm:  6px;
    --p-radius:    12px;
    --p-radius-lg: 16px;
    --p-radius-xl: 24px;
    --p-shadow-sm:  0 1px 2px rgba(15, 23, 42, 0.04);
    --p-shadow:     0 4px 16px rgba(15, 23, 42, 0.06);
    --p-shadow-lg:  0 12px 32px rgba(15, 23, 42, 0.08);
    --p-shadow-xl:  0 24px 64px rgba(11, 20, 55, 0.18);

    --p-gradient-primary: linear-gradient(135deg, #0B1437 0%, #1a2555 50%, #0d2847 100%);
    --p-gradient-accent:  linear-gradient(135deg, #22D3EE 0%, #06B6D4 100%);
    --p-gradient-soft:    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    --p-gradient-glow:    linear-gradient(135deg, #0B1437 0%, #162044 50%, #0d2847 100%);

    --p-font-display: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --p-font-heading: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --p-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --p-font-mono:    'JetBrains Mono', 'Fira Code', monospace;

    --p-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --p-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.p-page {
    margin: 0;
    font-family: var(--p-font-body);
    color: var(--p-text);
    background: var(--p-bg);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.p-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 600px) { .p-container { padding: 0 16px; } }

/* ─────── Typo ─────── */
.p-page h1, .p-page h2, .p-page h3, .p-page h4 { font-family: var(--p-font-display); margin: 0 0 .5em; line-height: 1.15; letter-spacing: -0.02em; color: var(--p-text); }
.p-page h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
.p-page h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
.p-page h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 700; }
.p-page p  { margin: 0 0 1em; color: var(--p-text); }
.p-page a:not(.p-btn)  { color: var(--p-accent-dark); text-decoration: none; transition: color .15s var(--p-ease); }
.p-page a:not(.p-btn):hover { color: var(--p-accent); }

/* ─────── Header ─────── */
.p-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--p-border);
}
.p-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
}
.p-logo {
    display: inline-flex; align-items: baseline; gap: 0;
    font-family: var(--p-font-display); font-weight: 800; font-size: 1.4rem;
    color: var(--p-primary); letter-spacing: -0.025em; text-decoration: none;
}
.p-logo-dot  { color: var(--p-accent); margin-right: 2px; }
.p-logo:hover { color: var(--p-primary); opacity: 0.85; }
.p-nav { display: flex; align-items: center; gap: 28px; }
.p-nav a { color: var(--p-text); font-weight: 500; font-size: 0.95rem; text-decoration: none; transition: color .15s var(--p-ease); }
.p-nav a:hover { color: var(--p-accent-dark); }
.p-nav a.p-btn { color: var(--p-primary); }
.p-nav a.p-btn:hover { color: var(--p-primary); }
.p-burger { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; flex-direction: column; gap: 4px; }
.p-burger span { display: block; width: 22px; height: 2px; background: var(--p-text); border-radius: 1px; transition: all .2s var(--p-ease); }

@media (max-width: 720px) {
    .p-nav { display: none; }
    .p-burger { display: flex; }
    .p-nav.is-open {
        display: flex; flex-direction: column; align-items: stretch; gap: 16px;
        position: absolute; top: 68px; left: 0; right: 0;
        background: #fff; padding: 24px;
        border-bottom: 1px solid var(--p-border);
        box-shadow: var(--p-shadow);
    }
    .p-nav.is-open a { padding: 10px 0; font-size: 1rem; min-height: 44px; display: flex; align-items: center; }
    .p-nav.is-open .p-btn { width: 100%; justify-content: center; min-height: 44px; }
}

/* ─────── Boutons ─────── */
.p-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px;
    font-family: var(--p-font-body); font-weight: 600; font-size: 0.95rem;
    border: 1px solid transparent; border-radius: var(--p-radius);
    cursor: pointer; text-decoration: none;
    transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s cubic-bezier(0.22, 1, 0.36, 1), background .3s ease, border-color .3s ease, color .2s ease;
    white-space: nowrap;
    position: relative; overflow: hidden;
}
.p-btn-sm { padding: 8px 16px; font-size: 0.875rem; border-radius: var(--p-radius-sm); }
.p-btn-lg { padding: 16px 32px; font-size: 1.05rem; }

.p-btn-primary {
    background: var(--p-gradient-primary); color: #fff;
    box-shadow: 0 4px 16px rgba(11, 20, 55, 0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}
.p-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(11, 20, 55, 0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.p-btn-primary:active { transform: translateY(0); transition-duration: .1s; box-shadow: 0 4px 12px rgba(11, 20, 55, 0.35); }

.p-btn-accent {
    background: var(--p-gradient-accent); color: var(--p-primary);
    box-shadow: 0 4px 20px var(--p-accent-glow), inset 0 1px 0 rgba(255,255,255,0.3);
    font-weight: 700;
}
.p-btn-accent:hover {
    color: var(--p-primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(34, 211, 238, 0.45), 0 0 0 1px rgba(34, 211, 238, 0.2), inset 0 1px 0 rgba(255,255,255,0.3);
}
.p-btn-accent:active { transform: translateY(0); transition-duration: .1s; box-shadow: 0 4px 16px var(--p-accent-glow); }

.p-page a.p-btn-ghost-light,
.p-btn-ghost-light {
    background: rgba(255,255,255,0.06); color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
}
.p-page a.p-btn-ghost-light:hover,
.p-btn-ghost-light:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.08);
}
.p-btn-ghost-light:active { transform: translateY(0); transition-duration: .1s; }

.p-btn-secondary {
    background: #fff; color: var(--p-text); border-color: var(--p-border-strong);
}
.p-btn-secondary:hover { background: var(--p-bg-soft); border-color: var(--p-text); color: var(--p-text); transform: translateY(-2px); }

.p-btn-ghost { background: transparent; color: var(--p-text); border: 1px solid var(--p-border); }
.p-btn-ghost:hover { background: var(--p-bg-soft); color: var(--p-text); transform: translateY(-2px); }

/* ─────── Sections ─────── */
.p-section { padding: 96px 0; }
.p-section-soft { background: var(--p-bg-soft); }
.p-section-tight { padding: 64px 0; }
@media (max-width: 720px) { .p-section { padding: 64px 0; } }

.p-section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.p-section-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 16px;
    background: var(--p-accent-light); color: var(--p-accent-dark);
    font-size: 0.8rem; font-weight: 600; border-radius: 999px;
    margin-bottom: 16px; letter-spacing: 0.02em;
    border: 1px solid rgba(34, 211, 238, 0.15);
}
.p-section-head p { color: var(--p-text-muted); font-size: 1.1rem; }

/* ─────── Hero ─────── */
.p-hero {
    position: relative;
    padding: 88px 0 96px;
    background: var(--p-gradient-glow);
    color: #fff;
    overflow: hidden;
}
.p-hero::before {
    content: '';
    position: absolute; top: -200px; right: -150px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 65%);
    pointer-events: none;
    animation: p-glow-drift 8s ease-in-out infinite alternate;
}
.p-hero::after {
    content: '';
    position: absolute; bottom: -250px; left: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 65%);
    pointer-events: none;
    animation: p-glow-drift 10s ease-in-out 2s infinite alternate-reverse;
}
@keyframes p-glow-drift {
    from { transform: translate(0, 0); }
    to { transform: translate(30px, -20px); }
}

.p-hero-grid {
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center;
    position: relative; z-index: 1;
}
@media (max-width: 880px) {
    .p-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .p-hero { padding: 56px 0 64px; }
}
.p-hero h1 { color: #fff; margin-bottom: 20px; }
.p-hero h1 .p-h-accent { color: var(--p-accent); }
.p-hero-sub { font-size: 1.15rem; color: var(--p-text-on-dark); margin-bottom: 32px; max-width: 540px; line-height: 1.7; }
.p-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.p-hero-trust { color: var(--p-text-on-dark-muted); font-size: 0.9rem; }
.p-hero-trust i { color: var(--p-accent); margin-right: 6px; }

/* Mockup hero */
.p-hero-mockup {
    background: rgba(255,255,255,0.05); border-radius: var(--p-radius-lg); padding: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: rotate(-1deg);
    box-shadow: 0 24px 64px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}
.p-hero-mockup-head { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.p-hero-mockup-head .dot { width: 10px; height: 10px; border-radius: 50%; }
.p-hero-mockup-head .dot.r { background: #FCA5A5; }
.p-hero-mockup-head .dot.y { background: #FCD34D; }
.p-hero-mockup-head .dot.g { background: #86EFAC; }
.p-hero-mockup-head .label { margin-left: 12px; font-size: 0.8rem; color: var(--p-text-on-dark-muted); }
.p-hero-mock-cards { display: grid; gap: 10px; }
.p-hero-mock-card {
    border: 1px solid rgba(255,255,255,0.08); border-radius: var(--p-radius-sm);
    padding: 14px 16px; display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.03);
    transition: background .2s var(--p-ease), border-color .2s var(--p-ease);
    animation: p-float-in .6s var(--p-ease) backwards;
}
.p-hero-mock-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); }
.p-hero-mock-card:nth-child(1) { animation-delay: 0.1s; }
.p-hero-mock-card:nth-child(2) { animation-delay: 0.25s; }
.p-hero-mock-card:nth-child(3) { animation-delay: 0.4s; }
.p-hero-mock-card:nth-child(4) { animation-delay: 0.55s; }
.p-hero-mock-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.p-hero-mock-icon.chatgpt { background: #10a37f; }
.p-hero-mock-icon.claude  { background: #d4a574; }
.p-hero-mock-icon.gemini  { background: #4285f4; }
.p-hero-mock-icon.perplexity { background: #6366f1; }
.p-hero-mock-text { font-size: 0.85rem; color: var(--p-text-on-dark); flex-grow: 1; }
.p-hero-mock-text strong { display: block; font-size: 0.78rem; color: var(--p-text-on-dark-muted); margin-bottom: 4px; font-weight: 600; }
.p-hero-mock-status { font-size: 0.72rem; display: flex; align-items: center; gap: 4px; flex-shrink: 0; font-weight: 600; }
.p-hero-mock-status.mentioned { color: var(--p-accent); }
.p-hero-mock-status.not-mentioned { color: rgba(255,255,255,0.3); }

@keyframes p-float-in {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─────── Providers band (dark background context) ─────── */
.p-providers { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.p-providers span { font-size: 0.9rem; font-weight: 600; color: var(--p-text-muted); letter-spacing: 0.01em; opacity: 0.6; transition: opacity .2s var(--p-ease); }
.p-providers span:hover { opacity: 1; }

/* ─────── Feature grid ─────── */
.p-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .p-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .p-feature-grid { grid-template-columns: 1fr; } }

.p-feature-card {
    background: #fff;
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius-lg);
    padding: 28px;
    transition: all .3s var(--p-ease);
    position: relative;
}
.p-feature-card::before {
    content: '';
    position: absolute; inset: -1px; border-radius: inherit;
    background: linear-gradient(135deg, var(--p-accent), transparent 60%);
    opacity: 0; transition: opacity .3s var(--p-ease);
    z-index: -1;
}
.p-feature-card:hover {
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(34, 211, 238, 0.1), var(--p-shadow);
}
.p-feature-card:hover::before { opacity: 1; }
.p-feature-icon {
    width: 48px; height: 48px; border-radius: var(--p-radius);
    background: var(--p-accent-light); color: var(--p-accent-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 18px;
    transition: all .3s var(--p-ease);
}
.p-feature-card:hover .p-feature-icon {
    background: var(--p-gradient-accent); color: var(--p-primary);
    box-shadow: 0 4px 16px var(--p-accent-glow);
    transform: scale(1.08);
}
.p-feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.p-feature-card p { color: var(--p-text-muted); font-size: 0.95rem; margin: 0; }

/* ─────── Steps ─────── */
.p-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: step; }
@media (max-width: 720px) { .p-steps { grid-template-columns: 1fr; } }
.p-step { position: relative; padding-top: 64px; }
.p-step::before {
    counter-increment: step; content: counter(step);
    position: absolute; top: 0; left: 0;
    width: 48px; height: 48px;
    background: var(--p-gradient-primary); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--p-font-display); font-weight: 700; font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(11, 20, 55, 0.25);
    transition: all .3s var(--p-ease);
}
.p-step:hover::before {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(11, 20, 55, 0.35);
}
.p-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.p-step p { color: var(--p-text-muted); font-size: 0.95rem; margin: 0; }

/* ─────── CTA bandeau ─────── */
.p-cta-band {
    background: var(--p-gradient-primary);
    color: #fff;
    border-radius: var(--p-radius-xl);
    padding: 72px 48px;
    text-align: center;
    position: relative; overflow: hidden;
}
.p-cta-band::before {
    content: ''; position: absolute; top: -40%; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.18) 0%, transparent 65%);
    animation: p-glow-drift 6s ease-in-out infinite alternate;
}
.p-cta-band::after {
    content: ''; position: absolute; bottom: -40%; left: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 65%);
}
.p-cta-band h2 { color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.p-cta-band p { color: var(--p-text-on-dark); margin-bottom: 32px; font-size: 1.1rem; position: relative; z-index: 1; }
.p-cta-band .p-btn { position: relative; z-index: 1; }

/* ─────── Footer ─────── */
.p-footer { background: var(--p-primary); color: var(--p-text-on-dark); padding: 64px 0 32px; }
.p-footer p { color: var(--p-text-on-dark-muted); }
.p-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
@media (max-width: 720px) { .p-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .p-footer-grid { grid-template-columns: 1fr; } }
.p-footer h6 { color: #fff; font-family: var(--p-font-body); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.p-footer ul { list-style: none; padding: 0; margin: 0; }
.p-footer li { margin-bottom: 10px; }
.p-footer a { color: var(--p-text-on-dark-muted); font-size: 0.92rem; text-decoration: none; transition: color .15s var(--p-ease); }
.p-footer a:hover { color: #fff; }
.p-footer-tagline { color: rgba(255, 255, 255, 0.45); font-size: 0.92rem; margin: 12px 0 16px; }
.p-footer-swiss { display: inline-flex; align-items: center; gap: 8px; color: var(--p-text-on-dark-muted); font-size: 0.85rem; }
.p-footer-bottom { padding-top: 24px; color: rgba(255, 255, 255, 0.35); font-size: 0.85rem; }

/* ─────── Flash messages ─────── */
.p-flash {
    max-width: 720px; margin: 16px auto 0;
    padding: 14px 20px;
    border-radius: var(--p-radius);
    font-size: 0.95rem; font-weight: 500;
    display: flex; align-items: center; gap: 10px;
}
.p-flash-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.p-flash-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ─────── Forms ─────── */
.p-form-wrap {
    max-width: 520px; margin: 80px auto; padding: 40px;
    background: #fff; border-radius: var(--p-radius-lg);
    border: 1px solid var(--p-border);
    box-shadow: var(--p-shadow-lg);
}
.p-form-wrap h1 { font-size: 1.8rem; margin-bottom: 8px; text-align: center; }
.p-form-wrap > p { text-align: center; color: var(--p-text-muted); margin-bottom: 32px; }
.p-form-group { margin-bottom: 20px; }
.p-form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--p-text); margin-bottom: 6px; }
.p-input, .p-textarea {
    width: 100%; padding: 12px 14px; font-family: var(--p-font-body); font-size: 1rem;
    border: 1px solid var(--p-border-strong); border-radius: var(--p-radius-sm); background: #fff;
    color: var(--p-text);
    transition: border-color .2s var(--p-ease), box-shadow .2s var(--p-ease);
}
.p-input:focus, .p-textarea:focus {
    outline: none; border-color: var(--p-accent);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15), 0 1px 2px rgba(0,0,0,0.04);
}
.p-textarea { min-height: 120px; resize: vertical; }

/* ─────── Scroll reveal ─────── */
.p-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--p-ease), transform .7s var(--p-ease); }
.p-reveal.is-visible { opacity: 1; transform: translateY(0); }
.p-reveal:nth-child(2) { transition-delay: .08s; }
.p-reveal:nth-child(3) { transition-delay: .16s; }
.p-reveal:nth-child(4) { transition-delay: .24s; }
.p-reveal:nth-child(5) { transition-delay: .32s; }
.p-reveal:nth-child(6) { transition-delay: .40s; }

/* ─────── FAQ ─────── */
.p-faq-item {
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius);
    margin-bottom: 12px;
    background: #fff;
    transition: border-color .2s var(--p-ease), box-shadow .2s var(--p-ease);
}
.p-faq-item[open] { border-color: var(--p-accent); box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.08); }
.p-faq-question {
    padding: 18px 22px;
    font-weight: 600; font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex; align-items: center; justify-content: space-between;
    color: var(--p-text);
    transition: color .15s var(--p-ease);
}
.p-faq-item[open] .p-faq-question { color: var(--p-accent-dark); }
.p-faq-question::-webkit-details-marker { display: none; }
.p-faq-question::after {
    content: '+'; font-size: 1.3rem; color: var(--p-text-light);
    transition: transform .2s var(--p-ease), color .2s var(--p-ease);
    flex-shrink: 0; margin-left: 16px;
}
.p-faq-item[open] .p-faq-question::after { content: '−'; color: var(--p-accent); }
.p-faq-answer {
    padding: 0 22px 18px;
    color: var(--p-text-muted); font-size: 0.95rem; line-height: 1.65;
}

/* ─────── Legal pages ─────── */
.p-legal { max-width: 760px; margin: 64px auto; }
.p-legal h1 { font-size: 2rem; margin-bottom: 32px; }
.p-legal h2 { font-size: 1.3rem; margin-top: 32px; margin-bottom: 12px; }

/* ─────── Dark context overrides ─────── */
.p-hero p,
.p-cta-band p { color: var(--p-text-on-dark); }
.p-hero h1, .p-hero h2, .p-hero h3,
.p-cta-band h1, .p-cta-band h2, .p-cta-band h3 { color: #fff; }

/* ─────── Mobile ─────── */
@media (max-width: 600px) {
    .p-cta-band { padding: 48px 24px; border-radius: var(--p-radius-lg); }
    .p-hero-mockup { padding: 18px; transform: none; }
    .p-hero-ctas .p-btn { width: 100%; }
    .p-hero-ctas { flex-direction: column; align-items: stretch; }
    .p-btn-lg { padding: 14px 24px; font-size: 1rem; }
}
