/* NEXORA — Platform presentation (light elegant theme) */

:root {
    --pres-ink: #1e293b;
    --pres-ink-soft: #334155;
    --pres-muted: #64748b;
    --pres-bg: #f1f5f9;
    --pres-surface: #ffffff;
    --pres-surface-soft: #f8fafc;
    --pres-gold: #d4a012;
    --pres-gold-bright: #f5b800;
    --pres-gold-soft: #fff9eb;
    --pres-gold-border: #fde68a;
    --pres-navy: #2d3436;
    --pres-navy-soft: #475569;
    --pres-border: #e2e8f0;
    --pres-border-strong: #cbd5e1;
    --pres-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --pres-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
    --pres-slide-w: 297mm;
    --pres-radius: 14px;
    --pres-radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

.pres-body {
    margin: 0;
    background: var(--pres-bg);
    color: var(--pres-ink);
    font-family: 'Cairo', 'Inter', system-ui, sans-serif;
    line-height: 1.5;
}

[dir='ltr'] .pres-body,
[dir='ltr'] .pres-deck {
    font-family: 'Inter', 'Cairo', system-ui, sans-serif;
}

/* —— Toolbar —— */
.pres-toolbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
    padding: 0.85rem 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--pres-border);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pres-toolbar__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--pres-navy);
}

.pres-toolbar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-inline-start: auto;
}

.pres-toolbar__hint {
    width: 100%;
    margin: 0;
    font-size: 0.75rem;
    color: var(--pres-muted);
}

.pres-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--pres-border-strong);
    background: var(--pres-surface);
    color: var(--pres-ink-soft);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.pres-btn:hover {
    border-color: var(--pres-gold-bright);
    color: var(--pres-gold);
    box-shadow: var(--pres-shadow);
}

.pres-btn--primary {
    background: linear-gradient(135deg, var(--pres-gold-bright), #e5a800);
    border-color: transparent;
    color: var(--pres-navy);
    box-shadow: 0 4px 14px rgba(245, 184, 0, 0.35);
}

.pres-btn--primary:hover {
    color: var(--pres-navy);
    filter: brightness(1.05);
}

.pres-btn--ghost {
    background: transparent;
}

.pres-locale-switch {
    position: fixed;
    bottom: 1rem;
    inset-inline-start: 1rem;
    display: flex;
    gap: 0.25rem;
    padding: 0.25rem;
    border-radius: 999px;
    background: var(--pres-surface);
    border: 1px solid var(--pres-border);
    box-shadow: var(--pres-shadow-lg);
}

.pres-locale-switch a {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pres-muted);
    text-decoration: none;
}

.pres-locale-switch a.is-active {
    background: var(--pres-gold-soft);
    color: #92400e;
}

/* —— Deck preview —— */
.pres-body--preview .pres-deck {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem 1rem 4rem;
}

/* —— Slide shell —— */
.pres-slide {
    position: relative;
    width: min(100%, var(--pres-slide-w));
    aspect-ratio: 297 / 210;
    max-height: 85vh;
    overflow: hidden;
    border-radius: var(--pres-radius);
    border: 1px solid var(--pres-border);
    background: var(--pres-surface);
    box-shadow: var(--pres-shadow-lg);
}

.pres-slide__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pres-slide__bg--cover {
    background:
        radial-gradient(ellipse 90% 70% at 100% 0%, rgba(245, 184, 0, 0.12), transparent 50%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(148, 163, 184, 0.12), transparent 55%),
        linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
}

.pres-slide__bg--closing {
    background:
        linear-gradient(135deg, var(--pres-gold-soft) 0%, #fff 45%, #f8fafc 100%);
}

.pres-cover-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(245, 184, 0, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.pres-cover-card {
    padding: 2rem 2.5rem;
    border-radius: calc(var(--pres-radius) + 4px);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--pres-border);
    box-shadow: var(--pres-shadow);
    max-width: 34rem;
}

/* Top frame */
.pres-frame {
    position: absolute;
    top: 0;
    inset-inline: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1.5rem 0;
    pointer-events: none;
}

.pres-frame__bar {
    display: flex;
    height: 3px;
    flex: 1;
    max-width: 55%;
    border-radius: 999px;
    overflow: hidden;
    margin-inline-end: 1rem;
}

.pres-frame__bar-gold {
    flex: 0 0 28%;
    background: linear-gradient(90deg, var(--pres-gold-bright), #fcd34d);
}

.pres-frame__bar-navy {
    flex: 1;
    background: linear-gradient(90deg, #94a3b8, transparent);
    opacity: 0.35;
}

.pres-frame__logo {
    height: 1.35rem;
    width: auto;
    opacity: 0.9;
}

.pres-slide--cover .pres-frame,
.pres-slide--divider .pres-frame {
    display: none;
}

.pres-slide__inner {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 2.35rem 2rem 2.85rem;
    display: flex;
    flex-direction: column;
}

.pres-slide:not(.pres-slide--cover) .pres-slide__inner {
    padding-top: 2.1rem;
}

.pres-slide__inner--center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pres-slide--cover .pres-slide__inner {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pres-cover-logo {
    height: 4rem;
    width: auto;
    margin-bottom: 1rem;
}

.pres-cover-logo--sm {
    height: 2.75rem;
}

.pres-eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pres-gold);
}

.pres-cover-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--pres-navy);
}

.pres-cover-sub {
    margin: 0.65rem 0 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--pres-muted);
}

.pres-cover-tag {
    margin: 1rem 0 0;
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: var(--pres-gold-soft);
    border: 1px solid var(--pres-gold-border);
    font-size: 0.78rem;
    font-weight: 700;
    color: #92400e;
}

/* —— Head block —— */
.pres-head {
    margin-bottom: 0.85rem;
}

.pres-head__main {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.pres-head__icon-wrap {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--pres-gold-soft);
    border: 1px solid var(--pres-gold-border);
}

.pres-head__icon {
    height: 1.5rem;
    width: auto;
}

.pres-label {
    display: inline-block;
    margin: 0 0 0.4rem;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #92400e;
    background: var(--pres-gold-soft);
    border: 1px solid var(--pres-gold-border);
}

.pres-h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--pres-navy);
}

.pres-accent {
    display: block;
    margin-top: 0.15rem;
    color: var(--pres-gold);
}

[dir='ltr'] .pres-accent {
    display: inline;
    margin-top: 0;
    margin-inline-start: 0.35rem;
}

.pres-lead {
    margin: 0 0 0.85rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--pres-muted);
    max-width: 44rem;
}

.pres-lead--sm {
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
}

.pres-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.pres-chips li {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--pres-border);
    background: var(--pres-surface-soft);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--pres-ink-soft);
}

/* —— Cards —— */
.pres-cards {
    display: grid;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
    align-content: start;
}

.pres-cards--2 {
    grid-template-columns: repeat(2, 1fr);
}

.pres-cards--4 {
    grid-template-columns: repeat(4, 1fr);
}

.pres-card {
    position: relative;
    padding: 0.75rem 0.85rem 0.75rem 1rem;
    border-radius: var(--pres-radius-sm);
    border: 1px solid var(--pres-border);
    background: var(--pres-surface-soft);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.pres-card__mark {
    position: absolute;
    top: 0.65rem;
    bottom: 0.65rem;
    inset-inline-start: 0;
    width: 3px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(180deg, var(--pres-gold-bright), #fcd34d);
}

[dir='ltr'] .pres-card__mark {
    border-radius: 4px 0 0 4px;
}

.pres-card h3 {
    margin: 0 0 0.3rem;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--pres-navy);
}

.pres-card p {
    margin: 0;
    font-size: 0.68rem;
    line-height: 1.5;
    color: var(--pres-muted);
}

.pres-card--compact {
    padding: 0.6rem 0.65rem;
    text-align: center;
    background: var(--pres-surface);
}

.pres-card--compact h3 {
    font-size: 0.72rem;
}

.pres-card--compact p {
    font-size: 0.62rem;
}

/* —— Modules —— */
.pres-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    flex: 1;
}

.pres-module {
    padding: 0.55rem 0.65rem;
    border-radius: var(--pres-radius-sm);
    border: 1px solid var(--pres-border);
    background: var(--pres-surface);
}

.pres-module h3 {
    margin: 0 0 0.35rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--pres-border);
    font-size: 0.72rem;
    font-weight: 800;
}

.pres-module ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pres-module li {
    font-size: 0.6rem;
    color: var(--pres-muted);
    padding: 0.12rem 0;
    position: relative;
    padding-inline-start: 0.65rem;
}

.pres-module li::before {
    content: '•';
    position: absolute;
    inset-inline-start: 0;
    color: var(--pres-gold);
}

.pres-module--navy h3 {
    color: var(--pres-navy);
    border-color: #94a3b8;
}
.pres-module--gold {
    background: var(--pres-gold-soft);
    border-color: var(--pres-gold-border);
}
.pres-module--gold h3 {
    color: #92400e;
    border-color: var(--pres-gold-bright);
}
.pres-module--emerald {
    background: #ecfdf5;
    border-color: #a7f3d0;
}
.pres-module--emerald h3 {
    color: #047857;
    border-color: #6ee7b7;
}
.pres-module--blue {
    background: #eff6ff;
    border-color: #bfdbfe;
}
.pres-module--blue h3 {
    color: #1d4ed8;
    border-color: #93c5fd;
}
.pres-module--violet {
    background: #f5f3ff;
    border-color: #ddd6fe;
}
.pres-module--violet h3 {
    color: #6d28d9;
    border-color: #c4b5fd;
}
.pres-module--amber {
    background: #fffbeb;
    border-color: #fde68a;
}
.pres-module--amber h3 {
    color: #b45309;
    border-color: #fcd34d;
}

/* —— Workflow —— */
.pres-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1rem;
    flex: 1;
    align-items: stretch;
}

.pres-bullets {
    margin: 0;
    padding: 0.75rem 0.85rem;
    list-style: none;
    border-radius: var(--pres-radius-sm);
    background: var(--pres-surface-soft);
    border: 1px solid var(--pres-border);
}

.pres-bullets li {
    position: relative;
    padding-inline-start: 1rem;
    margin-bottom: 0.45rem;
    font-size: 0.74rem;
    line-height: 1.5;
    color: var(--pres-ink-soft);
}

.pres-bullets li:last-child {
    margin-bottom: 0;
}

.pres-bullets li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pres-gold-bright);
}

.pres-workflow-panel {
    padding: 0.65rem 0.75rem;
    border-radius: var(--pres-radius-sm);
    border: 1px solid var(--pres-gold-border);
    background: var(--pres-gold-soft);
}

.pres-workflow-panel__title {
    margin: 0 0 0.5rem;
    font-size: 0.68rem;
    font-weight: 800;
    color: #92400e;
}

.pres-workflow-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pres-workflow-steps li {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.4rem 0.55rem;
    margin-bottom: 0.3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: var(--pres-surface);
    font-size: 0.68rem;
    color: var(--pres-ink-soft);
}

.pres-step-sla {
    color: var(--pres-gold);
    font-weight: 700;
    white-space: nowrap;
    font-size: 0.62rem;
}

/* —— Timeline —— */
.pres-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.55rem;
    flex: 1;
    align-items: stretch;
}

.pres-timeline__item {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.7rem;
    border-radius: var(--pres-radius-sm);
    border: 1px solid var(--pres-border);
    background: var(--pres-surface-soft);
    position: relative;
}

.pres-timeline__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.35rem;
    inset-inline-end: -0.35rem;
    width: 0.5rem;
    height: 2px;
    background: var(--pres-gold-border);
}

.pres-timeline__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pres-gold-bright), #e5a800);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(245, 184, 0, 0.35);
}

.pres-timeline__item h3 {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--pres-navy);
}

.pres-timeline__item p {
    margin: 0;
    font-size: 0.65rem;
    color: var(--pres-muted);
    line-height: 1.45;
}

/* —— Numbered steps —— */
.pres-numbered {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
}

.pres-numbered li {
    display: flex;
    gap: 0.55rem;
    padding: 0.5rem 0.6rem;
    border-radius: var(--pres-radius-sm);
    border: 1px solid var(--pres-border);
    background: var(--pres-surface-soft);
}

.pres-numbered__n {
    flex-shrink: 0;
    width: 1.45rem;
    height: 1.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--pres-gold-soft);
    color: #92400e;
    font-size: 0.68rem;
    font-weight: 800;
    border: 1px solid var(--pres-gold-border);
}

.pres-numbered h3 {
    margin: 0 0 0.15rem;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--pres-navy);
}

.pres-numbered p {
    margin: 0;
    font-size: 0.64rem;
    color: var(--pres-muted);
    line-height: 1.4;
}

.pres-muted {
    font-size: 0.58rem !important;
    margin-top: 0.2rem !important;
    color: var(--pres-muted) !important;
}

/* —— Journeys —— */
.pres-journeys {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    flex: 1;
}

.pres-journey {
    padding: 0.55rem 0.6rem;
    border-radius: var(--pres-radius-sm);
    border: 1px solid var(--pres-border);
    font-size: 0.62rem;
    background: var(--pres-surface);
}

.pres-journey--executive {
    background: linear-gradient(180deg, #f8fafc, #fff);
    border-color: #cbd5e1;
}
.pres-journey--pm {
    background: linear-gradient(180deg, #ecfdf5, #fff);
    border-color: #a7f3d0;
}
.pres-journey--commercial {
    background: linear-gradient(180deg, #fff9eb, #fff);
    border-color: var(--pres-gold-border);
}

.pres-journey__tab {
    display: inline-block;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    background: var(--pres-gold-soft);
    color: #92400e;
    font-weight: 800;
    font-size: 0.55rem;
    margin-bottom: 0.3rem;
}

.pres-journey h3 {
    margin: 0 0 0.2rem;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--pres-navy);
}

.pres-journey__headline {
    margin: 0 0 0.4rem;
    color: var(--pres-muted);
    line-height: 1.35;
    font-size: 0.6rem;
}

.pres-journey ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pres-journey li {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.3rem 0;
    border-top: 1px solid var(--pres-border);
}

.pres-journey em {
    font-style: normal;
    font-size: 0.55rem;
    color: var(--pres-gold);
    font-weight: 700;
}

/* —— Architecture layers —— */
.pres-layers {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.pres-layer {
    position: relative;
    padding: 0.5rem 0.7rem;
    border-radius: var(--pres-radius-sm);
    border: 1px solid var(--pres-border);
    background: var(--pres-surface-soft);
}

.pres-layer--core {
    border-color: var(--pres-gold-bright);
    background: var(--pres-gold-soft);
    box-shadow: inset 0 0 0 1px rgba(245, 184, 0, 0.15);
}

.pres-layer__badge {
    position: absolute;
    top: 0.45rem;
    inset-inline-end: 0.55rem;
    font-size: 0.52rem;
    font-weight: 800;
    color: #92400e;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.7);
}

.pres-layer h3 {
    margin: 0 0 0.15rem;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--pres-navy);
}

.pres-layer p {
    margin: 0 0 0.3rem;
    font-size: 0.65rem;
    color: var(--pres-muted);
}

.pres-layer__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pres-layer__tags li {
    font-size: 0.55rem;
    font-weight: 600;
    padding: 0.12rem 0.4rem;
    border-radius: 4px;
    background: var(--pres-surface);
    border: 1px solid var(--pres-border);
    color: var(--pres-ink-soft);
}

.pres-layer--core .pres-layer__tags li {
    background: #fff;
}

/* —— AI layers —— */
.pres-ai-layers {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.pres-ai-layers li {
    display: grid;
    grid-template-columns: 1.5rem 8.5rem 1fr;
    gap: 0.6rem;
    align-items: center;
    padding: 0.45rem 0.6rem;
    border-radius: var(--pres-radius-sm);
    border: 1px solid var(--pres-border);
    background: var(--pres-surface-soft);
    font-size: 0.68rem;
}

.pres-ai-layers__idx {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 6px;
    background: var(--pres-gold-soft);
    color: #92400e;
    font-size: 0.6rem;
    font-weight: 800;
}

.pres-ai-layers strong {
    color: var(--pres-navy);
    font-weight: 800;
}

.pres-ai-layers span:last-child {
    color: var(--pres-muted);
}

[dir='rtl'] .pres-ai-layers li {
    grid-template-columns: 1.5rem 9.5rem 1fr;
}

/* —— Tags slides —— */
.pres-slide--tags .pres-tags {
    margin-top: 0.5rem;
}

.pres-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
    align-content: center;
}

.pres-tags li {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--pres-border);
    background: var(--pres-surface-soft);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--pres-ink-soft);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

/* —— Roadmap —— */
.pres-roadmap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
    flex: 1;
}

.pres-roadmap article {
    position: relative;
    padding: 0.55rem 0.55rem 0.55rem 0.65rem;
    border-radius: var(--pres-radius-sm);
    border: 1px solid var(--pres-border);
    background: var(--pres-surface);
}

.pres-roadmap__phase-num {
    position: absolute;
    top: 0.45rem;
    inset-inline-end: 0.45rem;
    font-size: 0.55rem;
    font-weight: 800;
    color: var(--pres-gold);
    opacity: 0.9;
}

.pres-roadmap h3 {
    margin: 0 0 0.35rem;
    padding-inline-end: 1.25rem;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--pres-navy);
    line-height: 1.35;
}

.pres-roadmap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pres-roadmap li {
    font-size: 0.56rem;
    color: var(--pres-muted);
    padding: 0.1rem 0;
    padding-inline-start: 0.5rem;
    position: relative;
}

.pres-roadmap li::before {
    content: '—';
    position: absolute;
    inset-inline-start: 0;
    color: var(--pres-gold);
    font-size: 0.5rem;
}

/* —— Stats —— */
.pres-slide--stats .pres-stats {
    margin-top: 0.5rem;
}

.pres-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    width: 100%;
}

.pres-stat {
    text-align: center;
    padding: 1rem 0.5rem;
    border-radius: var(--pres-radius-sm);
    background: var(--pres-surface-soft);
    border: 1px solid var(--pres-border);
}

.pres-stat__value {
    display: block;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--pres-gold);
    line-height: 1.1;
}

.pres-stat__label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--pres-muted);
    line-height: 1.35;
}

/* —— Closing —— */
.pres-closing-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.25rem;
    flex: 1;
    align-items: center;
}

.pres-closing-icon {
    height: 2.25rem;
    margin-bottom: 0.5rem;
}

.pres-closing-bullets {
    margin: 0.5rem 0 0;
    padding: 0;
    list-style: none;
}

.pres-closing-bullets li {
    position: relative;
    padding-inline-start: 1rem;
    margin-bottom: 0.4rem;
    font-size: 0.78rem;
    color: var(--pres-ink-soft);
}

.pres-closing-bullets li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: var(--pres-gold-bright);
    transform: rotate(45deg);
}

.pres-closing-aside {
    padding: 1rem 1.1rem;
    border-radius: var(--pres-radius);
    background: var(--pres-surface);
    border: 1px solid var(--pres-gold-border);
    box-shadow: var(--pres-shadow);
    font-size: 0.75rem;
    color: var(--pres-muted);
    line-height: 1.55;
}

.pres-closing-aside__title {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--pres-navy);
}

.pres-contact {
    margin: 0.75rem 0 0;
    padding-top: 0.65rem;
    border-top: 1px dashed var(--pres-border);
    color: var(--pres-gold);
    font-weight: 800;
    font-size: 0.8rem;
}

/* —— Footer —— */
.pres-slide-foot {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.45rem 1.25rem;
    border-top: 1px solid var(--pres-border);
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.58rem;
    font-weight: 600;
    color: var(--pres-muted);
}

.pres-slide-foot__start {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pres-slide-foot__icon {
    height: 0.75rem;
    width: auto;
}

.pres-slide-foot__dot {
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pres-gold-bright), transparent);
}

.pres-slide--divider {
    background: var(--pres-surface);
}

.pres-slide--dense .pres-slide__inner {
    padding: 1.85rem 1.65rem 2.75rem;
}

.pres-slide--dense:not(.pres-slide--cover) .pres-slide__inner {
    padding-top: 1.65rem;
}

/* —— Print —— */
@media print {
    .no-print {
        display: none !important;
    }

    @page {
        size: A4 landscape;
        margin: 0;
    }

    .pres-body--print {
        background: #fff;
    }

    .pres-body--print .pres-deck {
        display: block;
    }

    .pres-body--print .pres-slide {
        width: 100%;
        max-height: none;
        height: 210mm;
        aspect-ratio: auto;
        border-radius: 0;
        border: none;
        box-shadow: none;
        page-break-after: always;
        break-after: page;
    }

    .pres-lang-break {
        page-break-before: always;
        break-before: page;
    }

    .pres-deck--print .pres-slide:last-child {
        page-break-after: auto;
    }
}

.pres-body--print .pres-slide {
    width: 100%;
    max-height: none;
    aspect-ratio: auto;
    min-height: 210mm;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
}

@media (max-width: 900px) {
    .pres-cards--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pres-modules,
    .pres-journeys,
    .pres-roadmap,
    .pres-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .pres-numbered {
        grid-template-columns: 1fr;
    }

    .pres-split,
    .pres-closing-layout {
        grid-template-columns: 1fr;
    }
}
