/* Global Styles */
:root {
    --primary-color: #F35E18;
    --bg-color: #050505;
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden;
    /* Hide scrollbars */
    height: 100vh;
}

#main-container {
    width: 100%;
    height: 100%;
    transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    /* Smooth eased transition */
}

/* Global Background */
#global-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: var(--bg-color);
}

.bg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 120%;
    /* Slightly larger for movement */
    height: 120%;
    position: absolute;
    top: -10%;
    left: -10%;
    opacity: 0.05;
    filter: grayscale(100%);
    mix-blend-mode: overlay;
    animation: zoomInBg 20s infinite alternate ease-in-out;
}

.bg-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes zoomInBg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Slide 01: Hero */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Left align */
    position: relative;
    text-align: left;
    padding-left: 10%;
    /* Add some padding from left */
    background-image: url('back1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Ensure text is readable if image is bright, though it looks dark */
}

/* Ensure global background doesn't interfere too much, maybe hide it for hero or overlay? */
/* The user asked for "back1.png" as background. */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    /* Larger based on image */
    line-height: 0.9;
    letter-spacing: -2px;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 2px;
    color: #cccccc;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Keyboard Navigation Indicator */
.keyboard-nav-indicator {
    position: fixed;
    bottom: 50px;
    left: 10%;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.keyboard-nav-indicator:hover {
    opacity: 1;
}

/* Global Page Counter */
.global-page-counter {
    position: fixed;
    top: 50px;
    right: 5%;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    mix-blend-mode: difference;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.global-page-counter:hover {
    opacity: 1;
}

#current-page {
    color: #fff;
    font-size: 1.2rem;
    display: inline-block;
    min-width: 25px;
    text-align: right;
}

.counter-divider {
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.counter-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    animation: sweepDivider 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes sweepDivider {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

#total-pages {
    font-size: 0.85rem;
}

.page-change-anim {
    animation: bumpCounter 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes bumpCounter {
    0% {
        transform: translateY(15px) scale(0.8);
        opacity: 0;
    }

    50% {
        transform: translateY(-5px) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.key-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.nav-key {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
}

.nav-key svg {
    width: 14px;
    height: 14px;
}

.down-key {
    animation: keyPressDown 2.5s infinite ease-out;
}

.up-key {
    animation: keyPressUp 2.5s infinite ease-out;
}

@keyframes keyPressDown {

    0%,
    20%,
    100% {
        transform: scale(1) translateY(0);
        background: rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.6);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    10% {
        transform: scale(0.9) translateY(2px);
        background: rgba(243, 94, 24, 0.15);
        color: #fff;
        border-color: var(--primary-color);
        box-shadow: 0 0 15px rgba(243, 94, 24, 0.4);
    }
}

@keyframes keyPressUp {

    0%,
    20%,
    40%,
    100% {
        transform: scale(1) translateY(0);
        background: rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.6);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    30% {
        transform: scale(0.9) translateY(2px);
        background: rgba(243, 94, 24, 0.15);
        color: #fff;
        border-color: var(--primary-color);
        box-shadow: 0 0 15px rgba(243, 94, 24, 0.4);
    }
}

.nav-text {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
}

.nav-text span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

/* Slide 02: Authority Split */
#authority {
    min-height: 100vh;
    background-color: transparent;
    /* Let global bg show through */
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.split-container {
    display: grid;
    grid-template-columns: 40% 60%;
    width: 100%;
    max-width: 1600px;
    /* Wider to accommodate team grid */
    margin: 0 auto;
    height: 100vh;
}

/* Leader Column */
.leader-col {
    position: relative;
    /* padding: 40px; Remove padding to let image fill */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    height: 100%;
}

.leader-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.leader-img,
.leader-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
}

.leader-video {
    opacity: 0;
    /* Hidden by default */
    z-index: 1;
}

/* Show video on hover (handled by JS for play/pause but CSS for visibility) */
.leader-col:hover .leader-video,
.leader-video.playing {
    opacity: 1;
}

/* Gradient Fade for Legibility */
.leader-media::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, transparent 100%);
    z-index: 2;
    /* Above video */
    pointer-events: none;
}

.leader-overlay {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 3;
    /* Above gradient */
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    pointer-events: none;
    /* Let hover pass through to container */
}

.leader-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    /* Large */
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-transform: uppercase;
}

.leader-role {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.leader-desc {
    color: #aaaaaa;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Team Column */
.team-col {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Removed duplicate team-grid and team-card styles */

.team-card img,
.team-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.team-card img {
    filter: grayscale(100%);
    z-index: 1;
}

.team-card video {
    z-index: 0;
    /* Behind image initially */
    opacity: 0;
}

/* Hover State for Team Card */
.team-card:hover img {
    opacity: 0;
    /* Hide image to show video */
}

.team-card:hover video {
    opacity: 1;
    z-index: 2;
    /* Bring to front */
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    /* Gradient overlay */
    backdrop-filter: none;
    border-top: none;
    transform: translateY(0);
    /* Always visible */
    z-index: 3;
    pointer-events: none;
}

.card-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #fff;
}

.card-info p {
    font-size: 0.75rem;
    /* Smaller role text */
    color: var(--primary-color);
    /* Orange role */
    font-weight: 600;
    text-transform: uppercase;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns for 4:5 ratio */
    gap: 15px;
    /* Slightly tighter gap */
    width: 100%;
    max-width: 1100px;
    /* Wider container to accommodate 3 cols */
}

.team-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
    /* Portrait ratio */
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: #111;
}

.team-card img,
.team-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.team-card img {
    filter: grayscale(100%);
    z-index: 1;
}

.team-card video {
    z-index: 0;
    /* Behind image initially */
    opacity: 0;
}

/* Premium Sweeping Light Overlay */
.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0.03),
            transparent);
    transform: skewX(-20deg);
    animation: premiumSweep 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes premiumSweep {
    0% {
        left: -100%;
    }

    25% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Immersive Animated Indicator */
.team-card::before {
    content: 'INTERAGIR';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 3px;
    z-index: 4;
    padding: 8px 16px;
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    animation: pulseBadge 3s infinite ease-in-out;
}

@keyframes pulseBadge {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        border-color: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: 0 4px 30px rgba(243, 94, 24, 0.3);
        border-color: rgba(243, 94, 24, 0.4);
        color: #fff;
        transform: translateX(-50%) translateY(-3px);
    }
}

/* Hover State for Team Card */
.team-card:hover img {
    opacity: 0;
    transform: scale(1.05);
    /* Slight scale on hover image */
}

.team-card img {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover::after,
.team-card:hover::before {
    opacity: 0;
    transform: scale(0.9) translateX(-50%);
    animation: none;
}

.team-card:hover video {
    opacity: 1;
    z-index: 2;
    /* Bring to front */
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    /* Gradient overlay */
    backdrop-filter: none;
    border-top: none;
    transform: translateY(0);
    /* Always visible */
    z-index: 3;
    pointer-events: none;
}

.card-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #fff;
}

.card-info p {
    font-size: 0.75rem;
    /* Smaller role text */
    color: var(--primary-color);
    /* Orange role */
    font-weight: 600;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .split-container {
        grid-template-columns: 1fr;
        height: auto;
        overflow-y: auto;
        /* Allow scroll within slide if content too tall */
    }

    .leader-col {
        height: 60vh;
        min-height: 400px;
    }

    .team-col {
        padding: 20px;
        height: auto;
        /* Allow natural height */
    }

    .team-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Slide 03: Transformation Journey */
#transformation {
    min-height: 100vh;
    background-color: #000;
    background-image: url('bg-slide3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

#transformation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Dark cinematic overlay */
    z-index: -1;
}

.trans-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100vh;
    padding: 0 40px;
}

/* Text Column */
.trans-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.trans-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    line-height: 0.9;
    color: #fff;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.trans-desc-wrapper {
    position: relative;
    height: 150px;
    /* Allocated space for text transition */
}

.trans-desc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.trans-desc.active {
    opacity: 1;
    transform: translateY(0);
}

.trans-state {
    font-size: 1.2rem;
    font-weight: 700;
    color: #888;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trans-state.highlight {
    color: var(--primary-color);
}

.trans-desc p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    max-width: 500px;
}

/* Mockup Column */
.trans-mockup-col {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-mockup.realistic-iphone {
    width: 340px;
    height: 680px;
    position: relative;
    border-radius: 45px;
    border: 12px solid #1a1a1a;
    box-shadow:
        inset 0 0 0 2px #333,
        inset 0 0 0 6px #000,
        0 30px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px #2a2a2a;
    background: #000;
    /* overflow removed to allow outer glow if needed */
}

.realistic-iphone .screen-content {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #111;
}

.dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 32px;
    background: #000;
    border-radius: 20px;
    z-index: 20;
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.1);
}

/* Glow Effect */
.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 120%;
    background: radial-gradient(circle, rgba(243, 94, 24, 0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.phone-mockup.glowing .glow-effect {
    opacity: 1;
}

.img-before {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.img-after-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /* Default */
    overflow: hidden;
    z-index: 2;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(243, 94, 24, 0.6);
    /* removed CSS transition to make JS dragging smoother */
}

.img-after {
    height: 656px;
    /* Match inner screen height (680 - 24 border) */
    width: 316px;
    /* Match inner screen width */
    object-fit: cover;
}

/* Slider Handle */
.slider-handle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.slider-handle svg {
    width: 24px;
    height: 24px;
    color: #fff;
    opacity: 0.9;
}

.slider-handle:hover {
    box-shadow: 0 4px 30px rgba(243, 94, 24, 0.8), inset 0 0 15px rgba(255, 255, 255, 0.4);
    border-color: rgba(243, 94, 24, 0.6);
}

.slider-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(0.95);
}

/* Drag Hint Overlay */
.drag-overlay-hint {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 15;
    pointer-events: none;
    transition: opacity 0.5s ease;
    background: rgba(10, 10, 10, 0.6);
    padding: 24px 30px;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.drag-overlay-hint.hidden {
    opacity: 0;
}

.hint-icon-wrapper {
    position: relative;
    width: 24px;
    height: 80px;
    margin-bottom: 16px;
}

.hint-line {
    position: absolute;
    left: 11px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.hint-dot {
    position: absolute;
    left: 4px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-color);
    animation: slideHint 2.5s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes slideHint {

    0%,
    100% {
        top: 0;
        transform: scale(0.8);
    }

    50% {
        top: 64px;
        transform: scale(1.1);
        box-shadow: 0 0 25px var(--primary-color);
    }
}

.hint-text-reveal {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .trans-container {
        grid-template-columns: 1fr;
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .trans-text-col {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
        align-items: center;
    }

    .trans-headline {
        font-size: 2.5rem;
    }
}


/* Slide 04: The Manifesto (Z-Axis) */
#manifesto {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
    background-image: url('bg-manifesto.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Start pure black */
    perspective: 1000px;
    /* Enable 3D space */
}

/* Immersive Scroll Hint */
.manifesto-scroll-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-align: center;
    opacity: 1;
    transition: opacity 1s ease;
}

.manifesto-scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

.ekg-monitor {
    width: 200px;
    height: 60px;
    margin-bottom: 20px;
}

.ekg-line {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: ekgPulse 3s infinite linear;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

@keyframes ekgPulse {
    0% {
        stroke-dashoffset: 200;
    }

    100% {
        stroke-dashoffset: -200;
    }
}

.manifesto-scroll-hint .hint-text {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    opacity: 0.8;
}

.manifesto-scroll-hint .hint-text strong {
    font-weight: 700;
    color: var(--primary-color);
}

.scroll-arrow-down {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    animation: bounceScroll 2s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: drop-shadow(0 0 8px rgba(243, 94, 24, 0.6));
}

@keyframes bounceScroll {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* Z-Axis Container */
.manifesto-z-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    z-index: 2;
    pointer-events: none;
    /* Let clicks pass through if needed, though mostly visual */
}

.z-phrase-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.z-phrase {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 40px;
    opacity: 0;
    transform: translateZ(-1000px);
    /* Start far away */
    transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1.5s ease, filter 1.5s ease;
    will-change: transform, opacity, filter;
}

/* States for Z-Axis Animation */
.z-phrase.incoming {
    opacity: 0;
    transform: translateZ(-500px);
    filter: blur(10px);
}

.z-phrase.active {
    opacity: 1;
    transform: translateZ(0);
    /* Center Stage */
    filter: blur(0);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.z-phrase.outgoing {
    opacity: 0;
    transform: translateZ(500px);
    /* Fly towards camera/past */
    filter: blur(20px);
}

.phrase-2 {
    font-size: 3rem;
    /* Emphasis */
    font-weight: 900;
}

.phrase-3 {
    font-size: 2rem;
    font-weight: 500;
}

/* Climax Layer (Refined for Levitation) */
.climax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.climax-layer.revealed {
    opacity: 1;
    visibility: visible;
}

.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.manifesto-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.4);
    /* Heavier cinematic blur and darkness */
    transform: scale(1);
    transition: transform 3s ease-out;
}

.climax-layer.revealed .manifesto-video {
    transform: scale(1.05);
    /* Slow zoom in */
}

.manifesto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* 85% opacity */
    z-index: 1;
}

/* Product Reveal Container */
.product-reveal-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    transform: translateY(100vh);
    /* Start below screen */
    transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.climax-layer.revealed .product-reveal-container {
    transform: translateY(0);
    /* Slide up to center */
}

/* Product Levitation */
@keyframes levitate {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.product-image {
    max-height: 50vh;
    /* Adjust based on image aspect ratio */
    width: auto;
    object-fit: contain;
    margin-bottom: 40px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8));
}

.product-image.floating {
    animation: levitate 6s ease-in-out infinite;
}

/* Product Glow Pulse */
@keyframes glowPulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }

    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
}

.product-glow {
    position: absolute;
    top: 40%;
    /* Behind image roughly */
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    filter: blur(60px);
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: opacity 2s ease;
}

.climax-layer.revealed .product-glow {
    animation: glowPulse 6s ease-in-out infinite;
}

/* Typography (No Cards) */
.climax-typography {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease 1s, transform 1s ease 1s;
    /* Delay for after product slide up */
}

.climax-layer.revealed .climax-typography {
    opacity: 1;
    transform: translateY(0);
}

.climax-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    /* Larger */
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.climax-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    /* Light */
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 2px;
    /* Elegant spacing */
}

/* Responsive */
@media (max-width: 768px) {
    .z-phrase {
        font-size: 1.5rem;
    }

    .phrase-2 {
        font-size: 2rem;
    }

    .climax-title {
        font-size: 2rem;
    }

    .product-image {
        max-height: 40vh;
    }
}

/* Slide 05: The Weight of Chaos */
#chaos {
    width: 100%;
    height: 100vh;
    background-color: #050505;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.chaos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-image: url('bg-slide5.png');
    background-size: cover;
    background-position: center;
}

.chaos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.85) 100%);
}

.chaos-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    transition: opacity 1s ease;
}

.chaos-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Initial State for Step 0 */
    transform: scale(1.5);
    transform-origin: center center;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1s ease;
}

.chaos-headline.minimized {
    transform: scale(1) translateY(0);
    /* Normal position */
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(220px, auto));
    gap: 20px;
    width: 100%;
}

/* Asymmetric Layout */
.item-time {
    grid-column: span 2;
}

.item-cost {
    grid-column: span 1;
}

.item-quality {
    grid-column: span 1;
}

.item-results {
    grid-column: span 1;
}

.item-management {
    grid-column: span 3;
}

.bento-item {
    position: relative;
    display: block;
    height: 100%;
    opacity: 0;
    /* Hidden initially */
    transform: translateY(50px);
    /* Start slightly below */
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.bento-inner {
    width: 100%;
    height: 100%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Frosted glass border */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    /* Slightly reduced padding */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    /* Prevent spill */
    /* Red-ish reflection simulation */
    box-shadow: inset 0 0 40px rgba(200, 50, 50, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;

    /* Float Animation */
    animation: floatChaos 6s ease-in-out infinite;
}

/* Float Delay Stagger */
.bento-item:nth-child(1) .bento-inner {
    animation-delay: 0s;
}

.bento-item:nth-child(2) .bento-inner {
    animation-delay: 1.2s;
}

.bento-item:nth-child(3) .bento-inner {
    animation-delay: 2.5s;
}

.bento-item:nth-child(4) .bento-inner {
    animation-delay: 0.5s;
}

.bento-item:nth-child(5) .bento-inner {
    animation-delay: 1.8s;
}

@keyframes floatChaos {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Hover Effects */
.bento-item:hover .bento-inner {
    transform: scale(1.02) translateY(-8px);
    /* Override animation transform temporarily */
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 40px rgba(255, 50, 50, 0.05), 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.bento-icon {
    font-size: 1.8rem;
    /* Slightly smaller */
    margin-bottom: 10px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.bento-item:hover .bento-icon {
    filter: grayscale(0%);
}

.bento-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    /* Adjusted for better fit */
    color: #eee;
    margin-bottom: 8px;
    transition: text-shadow 0.3s ease;
    line-height: 1.2;
}

.bento-item:hover .bento-title {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.bento-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
}

/* Fall Animation Class - used for final exit */
.bento-item.falling {
    transform: translateY(100vh) rotate(5deg) !important;
    opacity: 0 !important;
    transition: transform 1s cubic-bezier(0.5, 0, 1, 0.5), opacity 1s ease;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(220px, auto));
    gap: 20px;
    width: 100%;
}

/* Asymmetric Layout */
.item-time {
    grid-column: span 2;
}

.item-cost {
    grid-column: span 1;
}

.item-quality {
    grid-column: span 1;
}

.item-results {
    grid-column: span 1;
}

.item-management {
    grid-column: span 3;
}

.bento-item {
    position: relative;
    /* Visuals moved to inner to allow independent GSAP transform on parent */
    display: block;
    height: 100%;
}

.bento-inner {
    width: 100%;
    height: 100%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Frosted glass border */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    /* Red-ish reflection simulation */
    box-shadow: inset 0 0 40px rgba(200, 50, 50, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;

    /* Float Animation */
    animation: floatChaos 6s ease-in-out infinite;
}

.bento-item:nth-child(1) .bento-inner {
    animation-delay: 0s;
}

.bento-item:nth-child(2) .bento-inner {
    animation-delay: 1.2s;
}

.bento-item:nth-child(3) .bento-inner {
    animation-delay: 2.5s;
}

.bento-item:nth-child(4) .bento-inner {
    animation-delay: 0.5s;
}

.bento-item:nth-child(5) .bento-inner {
    animation-delay: 1.8s;
}

@keyframes floatChaos {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Hover Effects */
.bento-item:hover .bento-inner {
    transform: scale(1.02) translateY(-8px);
    /* Override animation transform temporarily */
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 40px rgba(255, 50, 50, 0.05), 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.bento-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.bento-item:hover .bento-icon {
    filter: grayscale(0%);
}

.bento-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #eee;
    margin-bottom: 10px;
    transition: text-shadow 0.3s ease;
}

.bento-item:hover .bento-title {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.bento-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
}

/* Fall Animation Class - Kept as fallback/noop */
.bento-item.falling {
    opacity: 0 !important;
}

/* Climax Question */
.chaos-climax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    /* Higher Z-index to ensure visibility */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: radial-gradient(circle, rgba(5, 5, 5, 0.95) 0%, #050505 100%);
    /* slight backdrop to ensure contrast */
}

/* We don't need .revealed class anymore as GSAP handles autoAlpha */

.final-question {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.q-line {
    display: block;
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
    opacity: 0;
    /* Hidden for GSAP stagger */
    transform: translateY(20px);
    line-height: 1.2;
}

.q-line.emphasis {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
    margin: 10px 0;
}

.q-line.small {
    font-size: 1.5rem;
    font-weight: 400;
    color: #888;
    margin-top: 20px;
}

.q-line.brand {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 60px rgba(243, 94, 24, 0.6);
    letter-spacing: -2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .item-time,
    .item-cost,
    .item-quality,
    .item-results,
    .item-management {
        grid-column: span 1;
    }

    .item-management {
        grid-column: span 2;
    }

    .q-line.emphasis {
        font-size: 2.5rem;
    }

    .q-line.brand {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        display: flex;
        flex-direction: column;
    }

    .chaos-headline {
        font-size: 1.8rem;
    }

    .q-line {
        font-size: 1.5rem;
    }

    .q-line.emphasis {
        font-size: 2rem;
    }

    .q-line.brand {
        font-size: 2.5rem;
    }
}

/* Slide 06: A Nossa Solução (Focus Scroll) - Refined Layout */
/* Slide 06: A Nossa Solução (Focus Scroll) - STRICT LAYOUT */
#solution {
    background-color: #050505;
    background-image: url('bg-slide4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    overflow-x: hidden;
    /* Critical Containment */
    box-sizing: border-box;
    z-index: 1;
}

#solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* lighter overlay */
    z-index: -1;
}

.solution-container {
    display: grid;
    grid-template-columns: 3.5fr 6fr;
    /* User requested 3.5fr 6fr */
    gap: 5vw;
    width: 100%;
    height: 100%;
    padding: 0 5vw;
    /* Lateral Padding 5vw */
    box-sizing: border-box;
    align-items: flex-start;
    /* Ensure sticky works by not stretching height implicitly if not needed */
}

/* Left Column (Sticky) */
.solution-left {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
    height: auto;
    min-height: 100vh;
    /* Ensure full height for sticky centering */
}

/* Navigation Controls */
.solution-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: scale(1.1);
}

.nav-counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    gap: 5px;
    align-items: center;
    min-width: 80px;
    justify-content: center;
}

.nav-divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

.nav-total {
    color: rgba(255, 255, 255, 0.5);
}

.solution-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    /* User requested Clamp and unbreakable line */
    font-size: clamp(2rem, 3.5vw, 4rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
    word-break: normal;
}

.solution-headline .highlight {
    color: var(--primary-color);
    /* Optional contrast */
    white-space: nowrap;
    /* Prevent slicing */
    display: inline-block;
    /* Helps with transforms/containment */
}

.solution-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9rem, 1vw, 1.2rem);
    color: #888;
    line-height: 1.6;
    max-width: 90%;
}

/* Right Column (Scroll List) */
.solution-right {
    height: 100vh;
    overflow: hidden;
    /* GSAP controls scroll inside */
    position: relative;
    width: 100%;
    /* Gradient Masks */
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.solution-list {
    padding-top: 40vh;
    /* Center start */
    padding-bottom: 60vh;
    /* Generous padding bottom */
    display: flex;
    flex-direction: column;
}

.solution-item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Inactive State */
    opacity: 0.2;
    transform: scale(0.95);
    transform-origin: left center;
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.5s ease;
    cursor: pointer;
}

.solution-item.active {
    opacity: 1;
    transform: scale(1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.s-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 2.5vw, 3rem);
    color: #fff;
    margin-bottom: 10px;
    transition: all 0.5s ease;
}

.solution-item.active .s-title {
    color: #fff;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

/* Accordion Animation (Amortecimento) */
.s-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #bbb;
    line-height: 1.5;
    max-width: 95%;

    /* Default State: Collapsed */
    height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;

    /* Smooth Transition */
    transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.5s ease 0.1s,
        margin 0.5s ease;
}

.solution-item.active .s-desc {
    height: auto;
    /* Fallback */
    /* If height auto is choppy, we can rely on GSAP or max-height */
    /* Let's use max-height technique as it is pure CSS safe */
}

/* Redeclare for override if needed, but actually let's use max-height for smoothness */
.s-desc {
    height: auto;
    max-height: 0;
}

.solution-item.active .s-desc {
    max-height: 300px;
    /* Safe limit for description */
    opacity: 1;
    margin-top: 15px;
}

/* Slide 07: The Value Anchor */
#anchor {
    min-height: 100vh;
    background-color: #050505;
    /* Deep Dark Mode */
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anchor-container {
    display: grid;
    grid-template-columns: 40% 60%;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100vh;
    padding: 0 40px;
    align-items: center;
}

/* Left Column: Operational Load */
/* --- Slide 07: Value Anchor (Batch Mode) --- */
#anchor {
    background-color: #050505;
    z-index: 10;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anchor-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 50/50 split */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100vh;
    align-items: center;
    gap: 60px;
}

/* Left Column */
.anchor-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.anchor-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1;
    color: #fff;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.anchor-sub {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #888;
    margin-bottom: 4rem;
    max-width: 480px;
}

.anchor-sub strong {
    color: #fff;
    font-weight: 700;
}

.anchor-prompt {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blink-icon {
    animation: blink 1.5s infinite;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Right Column: Bank Statement Card */
.anchor-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bank-statement-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    position: relative;
}

.statement-header {
    background: #1a1a1a;
    padding: 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.statement-header h3 {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 600;
}

.date-badge {
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.statement-body {
    height: 380px;
    /* Fixed height for scrolling */
    background: #0f0f0f;
    overflow-y: hidden;
    /* Programmatic scroll only */
    position: relative;
    padding: 20px;
}

/* JS injected items */
.statement-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #333;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
}

.statement-item:last-child {
    border-bottom: none;
}

.statement-item .name {
    color: #ccc;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.statement-item .price {
    color: #fff;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.statement-footer {
    background: #1a1a1a;
    padding: 25px 20px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    color: #666;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.total-wrapper {
    position: relative;
}

#statement-total {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    font-variant-numeric: tabular-nums;
}

.red-strike {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 0%;
    /* Animates to 120% */
    height: 3px;
    background: #ff3b30;
    transform: translateY(-50%) rotate(-3deg);
    transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

/* Final Message */
.final-message {
    margin-top: 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.final-message p {
    color: #888;
    font-size: 1rem;
    margin: 0;
}

.final-message strong {
    color: #fff;
    font-size: 1.2rem;
    display: block;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .anchor-container {
        grid-template-columns: 1fr;
        height: auto;
        padding: 40px 20px;
        gap: 40px;
    }

    .anchor-left {
        text-align: center;
        align-items: center;
    }

    .anchor-prompt {
        justify-content: center;
    }

    .bank-statement-card {
        max-width: 100%;
    }
}

/* =========================================
   Slide 08: Timeline (Cohesive & Premium)
   ========================================= */
#timeline {
    background-color: #050505;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.timeline-container {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Headline Area */
.timeline-header {
    position: absolute;
    top: 15vh;
    left: 5vw;
    z-index: 10;
}

.timeline-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 3.5vw, 4rem);
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1.5px;
}

.timeline-headline .highlight {
    color: var(--primary-color);
}

/* Timeline Track */
.timeline-track {
    position: relative;
    width: 100%;
    height: 300px;
    /* Sufficient height for nodes */
    display: flex;
    align-items: center;
    margin-top: 10vh;
}

/* The Base Line */
.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
    z-index: 1;
}

/* The Progress Line */
.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    transition: width 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Nodes */
.timeline-node {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 20px;
    height: 20px;
    cursor: pointer;
    /* Positioning calculated via calc() based on index, or flex? 
       Using absolute layout for precise control over the line.
       0: 0%, 1: 18%, 2: 36%, 3: 54%, 4: 72%, 5: 90% */
}

/* Dynamic Positioning for 6 Nodes */
.timeline-node[data-node="0"] {
    left: 0%;
}

.timeline-node[data-node="1"] {
    left: 18%;
}

.timeline-node[data-node="2"] {
    left: 36%;
}

.timeline-node[data-node="3"] {
    left: 54%;
}

.timeline-node[data-node="4"] {
    left: 72%;
}

.timeline-node[data-node="5"] {
    left: 90%;
}

/* Visual Dot */
.node-dot {
    width: 16px;
    height: 16px;
    background: #111;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(243, 94, 24, 0);
}

/* Visual States */
.timeline-node.revealed .node-dot {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.timeline-node.pulse .node-dot {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    transform: scale(1.3);
    animation: pulseNode 2s infinite;
}

@keyframes pulseNode {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 94, 24, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(243, 94, 24, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(243, 94, 24, 0);
    }
}

/* Time Label (Above Line) */
.node-time {
    position: absolute;
    bottom: 25px;
    /* Above dot */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    opacity: 0;
    transition: all 0.5s ease;
    letter-spacing: 1px;
}

.timeline-node.revealed .node-time {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.timeline-node.pulse .node-time {
    color: var(--primary-color);
}

/* Content (Title/Desc) - Below Line */
.node-content {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 200px;
    text-align: center;
    opacity: 0;
    transition: all 0.5s ease 0.2s;
    pointer-events: none;
    /* Don't block hover on close items */
}

.timeline-node.revealed .node-content {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.node-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.node-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    color: #888;
    line-height: 1.4;
}

/* Tooltip (Hover State) */
.node-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    width: 280px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.node-tooltip p {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

/* Active Hover Interaction */
.timeline-node.revealed:hover .node-dot {
    transform: scale(1.5);
    background: #fff;
    border-color: #fff;
    cursor: help;
}

.timeline-node.revealed:hover .node-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

/* Exit Transition */
.timeline-node.fading {
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .timeline-container {
        overflow-x: auto;
        /* Horizontal Scroll for tablet */
        justify-content: flex-start;
        padding-top: 25vh;
        /* create visual space below headline */
    }

    .timeline-track {
        width: 1200px;
        /* Force width to enable scroll */
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    #timeline {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
        justify-content: flex-start;
        padding-bottom: 50px;
    }

    .timeline-container {
        height: auto;
        padding: 100px 20px 50px 20px;
        /* Top pad for headline */
        overflow: visible;
    }

    .timeline-header {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 40px;
        text-align: left;
    }

    .timeline-headline {
        font-size: 2rem;
    }

    /* Vertical Transformation */
    .timeline-track {
        flex-direction: column;
        width: 100%;
        height: auto;
        margin-top: 0;
        border-left: 2px solid rgba(255, 255, 255, 0.1);
        align-items: flex-start;
        padding-left: 30px;
    }

    .timeline-line,
    .timeline-line-progress {
        display: none;
        /* Hide horiz line */
    }

    /* Use Border Left as Vertical Line */
    .timeline-node {
        position: relative;
        top: auto;
        transform: none;
        left: auto !important;
        /* Reset manual positions */
        width: 100%;
        height: auto;
        margin-bottom: 40px;
        opacity: 0.3;
        transition: opacity 0.5s ease;
        display: flex;
        align-items: center;
    }

    .timeline-node.revealed {
        opacity: 1;
    }

    .node-dot {
        position: absolute;
        left: -39px;
        /* Align with border (-30px padding - 9px half dot) */
        top: 5px;
    }

    .node-time {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        text-align: left;
        display: block;
        margin-bottom: 5px;
        color: var(--primary-color);
        opacity: 1;
    }

    .node-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        text-align: left;
        opacity: 1;
        padding-left: 10px;
    }

    .node-title {
        font-size: 1.1rem;
    }

    .node-desc {
        font-size: 0.9rem;
    }

    .node-tooltip {
        display: none;
        /* Disable hover on mobile */
    }
}


/* =========================================================
   SLIDE 09 — O DOSSIÊ DE RESULTADOS (Cases de Sucesso)
   ========================================================= */

/* Container */
.cases-container {
    width: 100vw;
    height: 100vh;
    background: #050505;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    /* Film Grain Texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* Header */
.cases-header {
    text-align: center;
    margin-bottom: 30px;
    z-index: 2;
}

.cases-headline {
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.cases-headline .highlight {
    color: var(--primary-color, #F35E18);
}

.cases-sub {
    font-weight: 400;
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

/* Dossier Grid */
.dossier-grid {
    width: min(94%, 1300px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 16px;
    z-index: 2;
    height: 62vh;
    transition: filter 600ms ease, opacity 600ms ease, transform 600ms ease;
}

/* When verdict is active, grid blurs */
.cases-container.active-verdict .dossier-grid {
    filter: blur(12px) grayscale(100%);
    opacity: 0.15;
    transform: scale(0.95);
    pointer-events: none;
}

/* Dossier Card */
.dossier-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.dossier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    border-color: rgba(243, 94, 24, 0.4);
    z-index: 5;
}

/* Client Photo Background */
.dossier-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.dossier-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.5) contrast(1.2);
    transition: filter 400ms ease, transform 6s ease;
    transform: scale(1);
}

/* Hover: Photo gains color and life */
.dossier-card:hover .dossier-bg img {
    filter: grayscale(0%) brightness(0.85) contrast(1.05);
    transform: scale(1.08);
}

/* Dark Gradient Overlay */
.dossier-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

/* Case Tag (Top Right) */
.dossier-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Info Bar (Bottom Left) */
.dossier-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 300ms ease, opacity 300ms ease;
}

/* Evidence Type Icon */
.dossier-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 300ms ease, color 300ms ease, transform 300ms ease;
}

/* Hover icon colors by type */
.dossier-card:hover .dossier-icon.whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #000;
    transform: scale(1.1);
}

.dossier-card:hover .dossier-icon.chart {
    background: #FFD700;
    border-color: #FFD700;
    color: #000;
    transform: scale(1.1);
}

.dossier-card:hover .dossier-icon.play {
    background: #FF0000;
    border-color: #FF0000;
    color: #fff;
    transform: scale(1.1);
}

/* Meta Text */
.dossier-meta {
    display: flex;
    flex-direction: column;
}

.dossier-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    font-weight: 600;
}

.dossier-desc {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 700;
}

/* Hover Action Button */
.dossier-action {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 300ms ease;
}

.dossier-card:hover .dossier-action {
    opacity: 1;
}

.dossier-action span {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transform: translateY(20px);
    transition: transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dossier-card:hover .dossier-action span {
    transform: translateY(0);
}

/* ---- PROOF MODAL ---- */
.proof-modal {
    position: absolute;
    inset: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.proof-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.proof-modal-card {
    width: min(90%, 1000px);
    max-height: 90vh;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9);
    transform: scale(0.95);
    transition: transform 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.proof-modal.active .proof-modal-card {
    transform: scale(1);
}

.proof-modal-topbar {
    height: 60px;
    background: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-shrink: 0;
}

.proof-modal-title {
    color: #eee;
    font-weight: 700;
    font-size: 1rem;
}

.proof-modal-actions button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-left: 10px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s;
}

.proof-modal-actions button:hover {
    background: #fff;
    color: #000;
}

.proof-modal-actions button.primary {
    background: var(--primary-color, #F35E18);
    border-color: var(--primary-color, #F35E18);
    color: #fff;
}

.proof-modal-actions button.primary:hover {
    filter: brightness(1.2);
}

.proof-modal-content {
    flex: 1;
    overflow: auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    min-height: 300px;
}

.proof-modal-content img,
.proof-modal-content video {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ---- VERDICT CONTROL ---- */
.verdict-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #111;
    border: 1px solid #333;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 55;
    transition: all 0.3s ease;
}

.verdict-control:hover {
    border-color: var(--primary-color, #F35E18);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.verdict-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color, #F35E18);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color, #F35E18);
    animation: verdictPulse 2s ease-in-out infinite;
}

@keyframes verdictPulse {

    0%,
    100% {
        box-shadow: 0 0 10px var(--primary-color, #F35E18);
    }

    50% {
        box-shadow: 0 0 20px var(--primary-color, #F35E18), 0 0 40px rgba(243, 94, 24, 0.3);
    }
}

.verdict-control span {
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

/* ---- VERDICT OVERLAY ---- */
.verdict-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 40;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cases-container.active-verdict .verdict-overlay {
    opacity: 1;
    transform: scale(1);
}

.verdict-question {
    text-align: center;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 0.95;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 20px 50px rgba(0, 0, 0, 1);
}

.verdict-question .highlight {
    color: var(--primary-color, #F35E18);
    display: block;
}

.verdict-bar {
    width: 0;
    height: 8px;
    background: var(--primary-color, #F35E18);
    margin-top: 40px;
    border-radius: 4px;
    box-shadow: 0 0 30px var(--primary-color, #F35E18);
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

/* =========================================================
   SLIDE 10 — INVESTMENT REVEAL (Quanto Custa)
   ========================================================= */

#investment {
    background-color: #181616;
    position: relative;
    overflow: hidden;
    height: 100vh;
    /* Enforce full height */
    width: 100%;
    /* Radial gradient specific for this slide to highlight center */
    background: radial-gradient(circle at center, #242424 0%, #181616 70%);
}

.investment-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* ATO 1: Header & Tags */
.investment-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.inv-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #FFFDDB;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.inv-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
}

.inv-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 253, 219, 0.8);
    background: rgba(255, 253, 219, 0.05);
    border: 1px solid rgba(255, 253, 219, 0.15);
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    backdrop-filter: blur(4px);
}

/* Stacked Slide Logic */
.stacked-slide {
    position: sticky;
    top: 0;
    height: 100vh;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.8);
    /* Shadow from top to show separation */
    transition: transform 0.5s ease-out;
    /* Smooth stack movement */
}

/* ATO 2: O Card (Sealed Envelope / Pot of Gold) */
.investment-card.pot-of-gold {
    position: relative;
    width: min(90%, 800px);
    /* Slightly wider */
    padding: 60px 40px;
    /* More breathing room */
    background: rgba(24, 22, 22, 0.85);
    /* Deeper Griflan dark */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    /* Immersive 3d Effect Wrapper */
    transform-style: preserve-3d;
    perspective: 1000px;
    text-align: center;
    margin-bottom: 30px;
    /* Separation from CTA */
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 230, 118, 0.15);
    /* Subtle Positive Green glow */
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.investment-card.pot-of-gold .card-glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    transform: translateZ(-20px);
    /* 3d depth */
}

/* Positive Green Border Animation */
.card-border {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(45deg, transparent, #00E676, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.card-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255, 253, 219, 0.6);
    text-transform: uppercase;
    margin-bottom: 20px;
    transform: translateZ(30px);
    /* 3d pop */
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    line-height: 1;
    margin-bottom: 20px;
    color: #00E676;
    text-shadow: 0 0 30px rgba(0, 230, 118, 0.3);
    transform: translateZ(50px);
    /* Strong 3d pop */
}

.currency {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-top: 10px;
    margin-right: 5px;
    opacity: 0.8;
}

.price-value {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(4rem, 8vw, 7rem);
    /* Bigger impact */
    font-weight: 900;
    /* Maximum bold */
    color: #00E676;
    /* Pure Positive Green */
    line-height: 1;
    letter-spacing: -3px;
    text-shadow: 0 0 50px rgba(0, 230, 118, 0.6);
    /* Stronger glow */
}

.installments-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
}

.installment-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFDDB;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-installments-mono {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-installments-mono.highlight {
    color: #fff;
    font-weight: 700;
}

.start-checklist {
    list-style: none;
}

.installment-text .highlight-gold {
    color: #00E676;
    font-weight: 800;
}

.installment-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 253, 219, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-installments {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ATO 3: Deal Closer */
.investment-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
}

.scarcity-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #00E676;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Interactive Deal Button */
.deal-btn {
    position: relative;
    background: transparent;
    border: 1px solid rgba(212, 168, 67, 0.3);
    color: #fff;
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.deal-btn:hover {
    border-color: #D4A843;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.2);
    transform: translateY(-2px);
}

.btn-fill {
    position: absolute;
    inset: 0;
    background: #D4A843;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

.deal-btn:hover .btn-fill {
    transform: scaleX(1);
}

.btn-text {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

/* Interactive Deal Button Neon Orange (Legacy) */
.deal-btn.neon-orange {
    border: 2px solid var(--primary-color);
    background: rgba(243, 94, 24, 0.1);
    box-shadow: 0 0 20px rgba(243, 94, 24, 0.2);
    color: #fff;
    font-size: 1.1rem;
    padding: 18px 45px;
}

.deal-btn.neon-orange:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 40px rgba(243, 94, 24, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.deal-btn.neon-orange .btn-text {
    color: #fff;
}

/* Premium Griflan Button (Positive variant) */
.deal-btn.griflan-glass {
    border: 1px solid rgba(0, 230, 118, 0.4);
    background: rgba(0, 230, 118, 0.05);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.1), inset 0 0 10px rgba(0, 230, 118, 0.05);
    color: #00E676;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 1.1rem;
    padding: 18px 45px;
    border-radius: 8px;
    /* Softer radius per Griflan style ~0.5rem */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.deal-btn.griflan-glass .btn-fill {
    background: linear-gradient(90deg, #00c853, #00E676);
}

.deal-btn.griflan-glass:hover {
    box-shadow: 0 10px 40px rgba(0, 230, 118, 0.4), inset 0 0 15px rgba(0, 230, 118, 0.2);
    border-color: rgba(0, 230, 118, 0.8);
    transform: translateY(-3px) scale(1.02);
}

.deal-btn.griflan-glass:hover .btn-text {
    color: #FFFDDB;
    text-shadow: none;
}

/* Premium Background Elements */
.premium-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(ellipse at center, rgba(0, 230, 118, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
    animation: slowGlow 8s infinite alternate ease-in-out;
}

@keyframes slowGlow {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Success Message */
.deal-success-msg {
    position: absolute;
    bottom: -40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(10px);
}

.deal-success-msg.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ---- RESPONSIVE (Slide 09 & 10) ---- */
@media (max-width: 1024px) {

    /* Slide 09 */
    .dossier-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        height: 65vh;
    }

    .cases-headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    /* Slide 09 */
    .dossier-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        height: 60vh;
        gap: 10px;
    }

    .cases-header {
        margin-bottom: 20px;
    }

    .cases-headline {
        font-size: 1.8rem;
    }

    .cases-sub {
        font-size: 0.8rem;
    }

    .verdict-question {
        font-size: 2rem;
    }

    .verdict-control {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
    }

    .verdict-control span {
        font-size: 0.7rem;
    }

    .dossier-tag {
        font-size: 0.6rem;
        padding: 3px 6px;
    }

    .dossier-info {
        bottom: 12px;
        left: 12px;
        gap: 8px;
    }

    .dossier-icon {
        width: 28px;
        height: 28px;
    }

    .dossier-label {
        font-size: 0.55rem;
    }

    .dossier-desc {
        font-size: 0.75rem;
    }

    /* Slide 10 Adjustments */
    .investment-card {
        padding: 30px 20px;
        width: 100%;
    }

    .price-value {
        font-size: 3.5rem;
    }

    .inv-headline {
        font-size: 2.5rem;
    }

    .deal-btn {
        padding: 14px 24px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {

    /* Slide 09 */
    .dossier-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        max-height: 70vh;
        overflow-y: auto;
    }

    .dossier-card {
        min-height: 180px;
    }
}


/* =========================================
   SLIDE 11: BONUS ANCHOR (Plan B)
   ========================================= */

#bonus-anchor {
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    position: relative;
    overflow: hidden;
    height: 100vh;
    /* Enforce full height */
    width: 100%;
}

/* Scarcity Theme Override */
#bonus-anchor.scarcity-theme {
    background: radial-gradient(circle at center, #111 0%, #050505 100%);
}

#bonus-anchor.scarcity-theme::before {
    background: radial-gradient(circle, rgba(160, 120, 0, 0.05) 0%, transparent 60%);
    /* Darker, brownish gold */
}

/* Background Effect (Subtle Spotlight) */
#bonus-anchor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120vw;
    height: 120vh;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.bonus-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Header */
.bonus-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonus-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 30%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin: 0;
}

.bonus-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffd700;
    /* Gold */
    opacity: 0.9;
    margin: 0;
}

/* Grid for Bonus Cards */
.bonus-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    margin: 20px 0;
    flex-wrap: wrap;
}

.bonus-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    /* Darker premium gradient */
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px 30px;
    /* More inner space */
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bonus-card::after {
    /* Top Gold Accent Line */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.6);
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.1);
}

.bonus-card:hover::after {
    opacity: 1;
}

.bonus-card.selected {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15), inset 0 0 20px rgba(255, 215, 0, 0.05);
    transform: scale(1.05);
    /* Slightly bigger */
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bonus-card.selected {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

/* Checkmark indicator for selected state */
.bonus-check {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.bonus-card.selected .bonus-check {
    background: #ffd700;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.bonus-card.selected .bonus-check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 14px;
    font-weight: bold;
}

.bonus-icon {
    color: #fff;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Manual Pulse Logic */
.bonus-icon.manual-pulse {
    animation: iconPulse 2s infinite ease-in-out;
}

.bonus-icon.manual-pulse.delay-1 {
    animation-delay: 0.6s;
}

.bonus-icon.manual-pulse.delay-2 {
    animation-delay: 1.2s;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0);
        color: #fff;
    }

    50% {
        transform: scale(1.15);
        color: #ffd700;
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0);
        color: #fff;
    }
}

.bonus-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.bonus-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

/* Footer Section */
.bonus-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.bonus-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #aaa;
    text-transform: uppercase;
    margin: 0;
}

.bonus-price-box {
    display: flex;
    align-items: flex-start;
    color: #fff;
    line-height: 1;
}

.bonus-currency {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 5px;
    margin-right: 5px;
    color: #ffd700;
}

.bonus-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.bonus-cta {
    background: #ffd700;
    color: #000;
    border: none;
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.bonus-cta:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.bonus-obs {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* Small Installment Text */
.installment-text.small {
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: -10px;
    margin-bottom: 5px;
}

/* Responsiveness for Slide 11 */
@media (max-width: 1024px) {
    .bonus-headline {
        font-size: 2.8rem;
    }

    .bonus-value {
        font-size: 3.5rem;
    }

    .bonus-card {
        width: 250px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    #bonus-anchor {
        padding: 40px 0;
        height: auto;
        min-height: 100vh;
    }

    .bonus-container {
        gap: 30px;
    }

    .bonus-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .bonus-card {
        width: 100%;
        max-width: 320px;
        flex-direction: row;
        /* Horizontal cards on mobile */
        justify-content: flex-start;
        text-align: left;
        padding: 15px 20px;
    }

    .bonus-check {
        margin-left: auto;
        position: static;
    }

    .bonus-title,
    .bonus-desc {
        text-align: left;
    }

    .bonus-desc {
        display: none;
        /* Hide desc on mobile to save space if needed */
    }

    .bonus-headline {
        font-size: 2rem;
    }

    .bonus-sub {
        font-size: 0.8rem;
    }

    .bonus-value {
        font-size: 3rem;
    }
}


/* =========================================
   SLIDE 12: VALOR PROTAGONISTA (Plan C)
   ========================================= */

#protagonist {
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%;
}

/* Protagonist Theme Override (Slate Grey) */
#protagonist.protagonist-theme {
    background: radial-gradient(circle at center, #263344 0%, #161f2b 100%);
    /* Slate Grey / Blue Grey */
}

/* Subtle Background Texture */
#protagonist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjMDAwIiAvPgo8cmVjdCB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSIjMzMzIiAvPgo8L3N2Zz4=');
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.protagonist-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
}

/* Header */
.protagonist-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.protagonist-narrative {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #aaa;
    margin: 0;
}

.protagonist-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Cards Container */
.protagonist-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: stretch;
    width: 100%;
    margin-top: 20px;
}

/* Card Styling */
.protagonist-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.protagonist-card.plan-c {
    /* Slightly less prominent */
    opacity: 0.8;
}

.protagonist-card:hover {
    transform: translateY(-5px);
    opacity: 1;
}

/* Header inside card */
.p-card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.p-card-header p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888;
}

/* Price Styling */
.p-card-price {
    display: flex;
    align-items: flex-start;
    color: #fff;
    line-height: 1;
    margin: 10px 0;
}

.p-card-price .currency {
    font-size: 1.2rem;
    margin-top: 8px;
    margin-right: 4px;
    color: #666;
}

.p-card-price .value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -2px;
}

.p-card-price .cents {
    font-size: 1.2rem;
    margin-top: 8px;
    color: #666;
}

/* List for Plan C */
.p-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.p-card-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 10px;
}

/* SPECIAL: Risk Shared Card */
.protagonist-card.risk-shared {
    border: 2px solid var(--primary-color);
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    box-shadow: 0 0 30px rgba(243, 94, 24, 0.2);
    /* Pulsing Logic */
    animation: cardPulse 3s infinite ease-in-out;
}

@keyframes cardPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(243, 94, 24, 0.2);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 50px rgba(243, 94, 24, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(243, 94, 24, 0.2);
    }
}



.risk-shared .p-card-price .value {
    color: #4facfe;
    /* Cyan/Blue pop for Shared Risk */
    text-shadow: 0 0 20px rgba(79, 172, 254, 0.4);
}

.card-installments-small {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
    font-weight: 500;
}

.card-installments-small.highlight {
    color: #fff;
    font-weight: 700;
}

.p-card-success-fee {
    background: rgba(79, 172, 254, 0.1);
    color: #4facfe;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

.p-card-success-fee .plus {
    font-size: 1.2rem;
}

/* Corner Ribbon */
.corner-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    position: absolute;
    top: 20px;
    right: -30px;
    background: #4facfe;
    color: #000;
    transform: rotate(45deg);
    padding: 5px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.protagonist-cta {
    background: #fff;
    color: #000;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.protagonist-cta:hover {
    background: #4facfe;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

/* Footer */
.protagonist-footer p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Responsiveness Slide 12 */
@media (max-width: 1024px) {
    .protagonist-cards {
        gap: 20px;
    }

    .protagonist-card {
        padding: 30px 20px;
    }

    .p-card-price .value {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    #protagonist {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }

    .protagonist-headline {
        font-size: 2.2rem;
    }

    .protagonist-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .protagonist-card {
        width: 100%;
        max-width: 340px;
    }

    .protagonist-narrative {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* Slide 13: Eleve Start (Industrial / The Foundation) */
#eleve-start {
    background-color: #121212;
    /* Deep matte grey */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 100vh;
    /* Force viewport height */
}

#eleve-start.industrial-theme {
    background-color: #121212;
    /* Deep matte grey */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    /* Technical Grid */
}

/* Scanline Effect */
#eleve-start::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.start-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    justify-content: center;
}

.start-header {
    margin-bottom: 2rem;
    /* Reduced from 3rem */
}

.start-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    /* Reduced from 3.5rem */
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 0.2rem;
}

.start-sub {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    /* Reduced from 1.2rem */
    color: #666;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

/* The Industrial Card */
.start-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    /* Reduced from 40px */
    border-radius: 4px;
    width: 100%;
    max-width: 440px;
    /* Slimmer */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.start-price-box {
    margin-bottom: 0.8rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.start-price-box .currency {
    font-size: 1.2rem;
    font-weight: 400;
    vertical-align: top;
    color: #888;
}

.start-price-box .value {
    font-size: 3.5rem;
    /* Reduced from 4rem */
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -2px;
}

.start-price-box .cents {
    font-size: 1.2rem;
    font-weight: 400;
    color: #888;
}

.start-desc {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Features List */
.start-features {
    text-align: left;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Tighter gap */
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    /* Smaller font */
    padding: 3px 0;
}

.feature-item.included {
    color: #ddd;
}

.feature-item.included .check {
    color: #fff;
    font-weight: 700;
}

/* Excluded Items Styling */
.feature-item.excluded {
    color: #666;
    /* Visible grey */
    text-decoration: line-through;
}

.feature-item.excluded .cross {
    color: #666;
    font-weight: 700;
}

/* CTA Button - Industrial Style */
.start-cta {
    width: 100%;
    padding: 15px;
    /* Compact */
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.start-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
    z-index: 0;
}

.start-cta:hover::before {
    transform: translateX(100%);
}

.start-cta:hover {
    color: #000;
}

.start-footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #555;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .start-headline {
        font-size: 2rem;
    }

    .start-card {
        padding: 20px;
    }

    .start-price-box .value {
        font-size: 2.8rem;
    }
}

/* Subtle Noise Texture Overlay */
#eleve-start::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.start-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.start-header {
    margin-bottom: 3rem;
}

.start-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: #e0e0e0;
    /* Off-white */
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.start-sub {
    font-family: 'Courier New', Courier, monospace;
    /* Industrial/Tech font */
    font-size: 1.2rem;
    color: #666;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

/* The Industrial Card */
.start-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 4px;
    /* Sharp corners */
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.start-price-box {
    margin-bottom: 1rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.start-price-box .currency {
    font-size: 1.5rem;
    font-weight: 400;
    vertical-align: top;
    color: #888;
}

.start-price-box .value {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -2px;
}

.start-price-box .cents {
    font-size: 1.5rem;
    font-weight: 400;
    color: #888;
}

.start-desc {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Features List */
.start-features {
    text-align: left;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    padding: 5px 0;
}

.feature-item.included {
    color: #ddd;
}

.feature-item.included .check {
    color: #fff;
    font-weight: 700;
}

/* Excluded Items Styling */
.feature-item.excluded {
    color: #444;
    /* Dark grey for "missing" feel */
    text-decoration: line-through;
}

.feature-item.excluded .cross {
    color: #444;
    font-weight: 700;
}

/* CTA Button - Industrial Style */
.start-cta {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.start-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
    z-index: 0;
}

.start-cta:hover::before {
    transform: translateX(100%);
}

.start-cta:hover {
    color: #000;
}

.start-footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #555;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .start-headline {
        font-size: 2.5rem;
    }

    .start-card {
        padding: 25px;
    }

    .start-price-box .value {
        font-size: 3rem;
    }
}

/* =========================================================================
   GLOBAL MOBILE RESPONSIVENESS OVERRIDES
   ========================================================================= */

/* Desktop Fix for Timeline */
@media (min-width: 769px) {
    .timeline-line-progress {
        height: 100% !important;
    }
}

@media (max-width: 768px) {

    /* Global Nav & Counters */
    .keyboard-nav-indicator {
        display: none !important;
        /* Fast touch scroll */
    }

    .global-page-counter {
        top: 20px;
        right: 20px;
        font-size: 0.9rem;
    }

    #current-page {
        font-size: 1rem;
    }

    /* Slide 01: Hero */
    #hero {
        padding-left: 20px;
        padding-right: 20px;
        align-items: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    /* Slide 02: Authority Split */
    .split-container {
        grid-template-columns: 1fr !important;
        /* override the 40/60 */
        height: auto;
        padding-top: 60px;
    }

    .leader-col {
        height: 50vh !important;
        min-height: 350px;
    }

    .leader-title {
        font-size: 2.5rem;
    }

    .team-col {
        padding: 20px;
        height: auto;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .card-info {
        padding: 10px;
    }

    .team-card::before {
        font-size: 0.5rem;
        padding: 6px 12px;
        top: 10px;
    }

    /* Slide 03: Transformation Journey */
    .trans-container {
        grid-template-columns: 1fr;
        height: 100vh;
        padding: 60px 20px 20px 20px;
        gap: 20px;
    }

    .trans-text-col {
        padding-right: 0;
        text-align: center;
        justify-content: flex-start;
    }

    .trans-headline {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .trans-desc-wrapper {
        min-height: 100px;
    }

    .trans-desc {
        position: relative;
        transform: none !important;
        opacity: 1 !important;
        display: none;
    }

    .trans-desc.active {
        display: block;
    }

    .trans-mockup-col {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        height: calc(100vh - 250px);
    }

    .phone-mockup {
        width: 100% !important;
        max-width: 280px;
        aspect-ratio: 9/19.5;
        transform: scale(0.9);
    }

    /* Slide 04: Manifesto */
    .manifesto-scroll-hint {
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }

    .z-phrase {
        font-size: 1.3rem;
        padding: 0 20px;
    }

    .climax-typography {
        bottom: 10%;
    }

    .climax-title {
        font-size: 1.8rem;
    }

    .product-image.floating {
        max-width: 80%;
    }

    /* Slide 05: The Weight of Chaos */
    .chaos-content {
        padding: 60px 20px 20px 20px;
        height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .chaos-headline {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        max-height: 65vh;
        overflow-y: auto;
        padding-bottom: 20px;
        padding-right: 10px;
    }

    .final-question {
        font-size: 1.5rem;
        text-align: center;
    }

    .final-question .q-line.emphasis {
        font-size: 2rem;
    }

    .final-question .q-line.brand {
        font-size: 3rem;
    }

    /* Slide 06: Solution */
    .solution-container {
        flex-direction: column;
        height: 100vh;
        padding: 60px 20px 20px 20px;
    }

    .solution-left {
        width: 100% !important;
        padding-right: 0;
        margin-bottom: 20px;
        text-align: center;
        flex: none;
    }

    .solution-headline {
        font-size: 2.2rem;
    }

    .solution-nav {
        justify-content: center;
    }

    .solution-right {
        width: 100%;
        height: 50vh;
        overflow: hidden;
    }

    .solution-list {
        padding-bottom: 50vh;
    }

    .solution-item {
        padding: 20px;
        margin-bottom: 15px;
    }

    .solution-item .s-title {
        font-size: 1.2rem;
    }

    /* Slide 07: Anchor */
    .anchor-container {
        grid-template-columns: 1fr !important;
        height: 100vh;
        padding: 60px 20px 20px 20px;
        gap: 20px;
        /* prevent global scroll to stick to our custom bounds */
    }

    .anchor-left {
        text-align: center;
        padding-right: 0 !important;
    }

    .anchor-headline {
        font-size: 2.2rem;
    }

    .bank-statement-card {
        padding: 20px;
        max-height: 50vh;
        /* space for card content and scroll list */
        display: flex;
        flex-direction: column;
    }

    .statement-body {
        max-height: 25vh;
        /* make inner list scrollable */
    }

    .statement-header h3 {
        font-size: 1rem;
    }

    .statement-item .price {
        font-size: 0.9rem;
    }

    .statement-footer .total-wrapper {
        font-size: 1.5rem !important;
    }

    #statement-total {
        font-size: 1.5rem;
    }

    .final-message {
        font-size: 1.2rem;
        bottom: 10px;
        position: relative;
        margin-top: 15px;
    }

    /* Slide 08: Timeline */
    .timeline-container {
        padding: 60px 20px 40px 20px;
        justify-content: flex-start;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .timeline-header {
        margin-bottom: 30px;
        text-align: center;
        width: 100%;
    }

    .timeline-headline {
        font-size: 1.8rem;
    }

    .timeline-track {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 30px;
        height: 60vh;
        width: 100%;
        margin-top: 10px;
        position: relative;
    }

    .timeline-line {
        width: 2px !important;
        height: 100% !important;
        top: 0;
        left: 3px;
        bottom: auto;
        transform: none;
    }

    .timeline-line-progress {
        width: 100% !important;
        /* height is driven inline by JS */
    }

    .timeline-node {
        width: 100% !important;
        padding-left: 30px;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        position: relative;
    }

    .node-dot {
        top: 0 !important;
        left: -30px !important;
        transform: translate(-50%, 0) !important;
    }

    .node-time {
        position: static !important;
        transform: none !important;
        margin-bottom: 5px;
        font-size: 0.8rem;
    }

    .node-content {
        margin-top: 0 !important;
        min-height: auto;
    }

    .node-title {
        font-size: 1.1rem;
    }

    .node-tooltip {
        position: relative;
        top: 0 !important;
        bottom: auto !important;
        left: 0 !important;
        transform: none !important;
        width: 100%;
        margin-top: 10px;
        opacity: 0;
        display: none;
    }

    .timeline-node.revealed .node-tooltip {
        display: block;
        opacity: 1 !important;
    }

    .node-tooltip::after {
        display: none;
        /* Hide the little triangle as it points wrong way */
    }

    /* Slide 09: Cases */
    .cases-container {
        padding: 60px 20px 20px 20px;
    }

    .cases-headline {
        font-size: 2.2rem;
    }

    .cases-sub {
        font-size: 1rem;
    }

    .dossier-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        max-height: 65vh;
        overflow-y: auto;
        padding-bottom: 20px;
    }

    .dossier-card {
        height: 200px;
    }

    .verdict-question {
        font-size: 2rem;
    }

    /* Slide 10: Investment */
    .investment-container {
        padding: 60px 20px 20px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .inv-headline {
        font-size: 1.8rem;
    }

    .inv-tags {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .inv-tag {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .pot-of-gold {
        padding: 30px 20px;
        width: 100%;
    }

    .price-container {
        font-size: 3rem;
        justify-content: center;
    }

    .installments-box {
        font-size: 0.9rem;
        padding: 10px;
    }

    .inv-cta {
        width: 100%;
        font-size: 1rem;
        padding: 15px;
    }

    /* Additional Modal adjustments */
    .proof-modal-card {
        width: 95%;
        height: 80vh;
    }
}

@media (max-width: 480px) {

    /* Micro tweaks for very small screens */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trans-headline {
        font-size: 1.8rem;
    }

    .climax-title {
        font-size: 1.6rem;
    }

    .chaos-headline {
        font-size: 1.8rem;
    }

    .solution-headline {
        font-size: 1.8rem;
    }

    .anchor-headline {
        font-size: 1.8rem;
    }

    .cases-headline {
        font-size: 1.8rem;
    }

    .timeline-headline {
        font-size: 1.5rem;
    }

    .inv-headline {
        font-size: 1.5rem;
    }

    .price-container {
        font-size: 2.5rem;
    }
}