/* ==========================================
   MANUAL DE INSTALACIÓN - ESTILOS PERSONALIZADOS
   ========================================== */

/* Hero del Manual */
.manual-hero {
    padding: 3.5rem 0 2.5rem;
    background: radial-gradient(ellipse 70% 50% at 50% 10%, rgba(217, 120, 46, 0.18) 0%, transparent 65%), #050505;
    border-bottom: 1px solid rgba(217, 120, 46, 0.12);
    position: relative;
}

.manual-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-soft);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0.4rem 0.9rem;
    background: rgba(217, 120, 46, 0.1);
    border: 1px solid rgba(217, 120, 46, 0.25);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.manual-breadcrumb:hover {
    background: rgba(217, 120, 46, 0.2);
    color: #fff;
    transform: translateX(-3px);
}

.manual-hero-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.manual-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 120, 46, 0.12);
    border: 1px solid rgba(217, 120, 46, 0.35);
    color: var(--primary-soft);
    border-radius: 100px;
    padding: 0.35rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.manual-hero-header h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.manual-hero-header h1 span {
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.manual-hero-header p {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.manual-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================
   APARTADO ANIMADO DE PASOS E IMÁGENES
   ========================================== */

.manual-showcase-section {
    padding: 3.5rem 0 5rem;
    background: linear-gradient(180deg, #050505 0%, #0d0c0a 50%, #050505 100%);
    position: relative;
}

.showcase-container {
    background: rgba(23, 19, 16, 0.7);
    border: 1px solid rgba(217, 120, 46, 0.25);
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(217, 120, 46, 0.08);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

/* Stepper Tabs Bar */
.stepper-nav {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(217, 120, 46, 0.15);
    padding-bottom: 1.2rem;
    overflow-x: auto;
    scrollbar-width: thin;
}

.step-tab {
    flex: 1;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    outline: none;
}

.step-tab:hover {
    background: rgba(217, 120, 46, 0.1);
    border-color: rgba(217, 120, 46, 0.3);
    color: var(--text-main);
    transform: translateY(-2px);
}

.step-tab.active {
    background: linear-gradient(135deg, rgba(217, 120, 46, 0.25), rgba(182, 91, 27, 0.15));
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(217, 120, 46, 0.22);
}

.step-tab-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-tab.active .step-tab-num {
    background: var(--primary);
    color: #120d09;
    box-shadow: 0 0 12px rgba(217, 120, 46, 0.6);
}

.step-tab-info {
    display: flex;
    flex-direction: column;
}

.step-tab-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.step-tab-title {
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Showcase Grid: Animation Stage + Description */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 900px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
}

/* Phone Mockup Animation Stage */
.showcase-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stage-device-frame {
    width: 285px;
    height: 580px;
    background: #12100e;
    border-radius: 42px;
    border: 3px solid rgba(217, 120, 46, 0.45);
    box-shadow: 0 0 0 8px rgba(217, 120, 46, 0.08), 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(217, 120, 46, 0.15);
    padding: 10px 8px 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stage-device-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 10px rgba(217, 120, 46, 0.12), 0 35px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(217, 120, 46, 0.25);
}

.stage-notch {
    width: 86px;
    height: 16px;
    background: #000;
    border-radius: 0 0 12px 12px;
    margin: 0 auto 6px;
    position: relative;
    z-index: 15;
}

.stage-screen-slider {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Individual Slide Inside Device */
.slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.96) translateY(6px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
}

.slide-item.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    z-index: 2;
}

/* Slide Image Style */
.slide-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Indicador de Mano Animada Haciendo Clic */
.click-indicator {
    position: absolute;
    pointer-events: none;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Permite sobreescribir top, left, transform, etc. de forma independiente */
}

.hand-pointer {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 10px rgba(217, 120, 46, 0.9));
    animation: handTapAnim 1.4s ease-in-out infinite;
    transform-origin: 20% 10%;
}

@keyframes handTapAnim {
    0%, 100% {
        transform: scale(1) translateY(0) rotate(0deg);
    }
    35% {
        transform: scale(0.84) translateY(3px) rotate(-6deg);
    }
    50% {
        transform: scale(1.06) translateY(-2px) rotate(2deg);
    }
}

.click-ripple {
    position: absolute;
    top: 6px;
    left: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(217, 120, 46, 0.45);
    border: 2px solid #ffffff;
    transform: translate(-50%, -50%);
    animation: rippleTap 1.4s cubic-bezier(0.1, 0.8, 0.2, 1) infinite;
    pointer-events: none;
}

.click-ripple-outer {
    position: absolute;
    top: 6px;
    left: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px dashed rgba(217, 120, 46, 0.85);
    transform: translate(-50%, -50%);
    animation: rippleOuterTap 1.4s cubic-bezier(0.1, 0.8, 0.2, 1) infinite 0.15s;
    pointer-events: none;
}

@keyframes rippleTap {
    0% {
        transform: translate(-50%, -50%) scale(0.2);
        opacity: 1;
    }
    40% {
        opacity: 0.9;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
    }
}

@keyframes rippleOuterTap {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.85;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Indicador numérico de paso 1 al 18 */
.steps-dots-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    max-width: 320px;
    margin-top: 0.8rem;
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(217, 120, 46, 0.2);
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.step-dot:hover {
    background: rgba(217, 120, 46, 0.5);
    transform: scale(1.3);
}

.step-dot.active {
    width: 22px;
    border-radius: 10px;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(217, 120, 46, 0.7);
}

/* Stage Controls (Prev, Next, Play/Pause) */
.stage-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.4rem;
}

.stage-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(217, 120, 46, 0.3);
    color: var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.25s ease;
    outline: none;
}

.stage-btn:hover {
    background: var(--primary);
    color: #120d09;
    box-shadow: 0 0 16px rgba(217, 120, 46, 0.4);
    transform: scale(1.08);
}

.stage-counter {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-soft);
    padding: 0.4rem 1rem;
    background: rgba(217, 120, 46, 0.08);
    border-radius: 30px;
    border: 1px solid rgba(217, 120, 46, 0.2);
}

/* Autoplay Progress Bar */
.autoplay-progress-container {
    width: 290px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-top: 0.8rem;
    overflow: hidden;
}

.autoplay-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--primary-soft));
    transition: width 0.1s linear;
}

/* Details Panel Beside the Mockup */
.showcase-info-panel {
    display: flex;
    flex-direction: column;
}

.step-info-card {
    display: none;
    animation: fadeInSlide 0.4s ease-out forwards;
}

.step-info-card.active {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 120, 46, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary-soft);
    padding: 0.35rem 0.9rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: fit-content;
}

.step-info-card h3 {
    font-size: 1.85rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.step-info-card p {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.step-action-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(217, 120, 46, 0.15);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
}

.step-action-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.94rem;
    color: var(--text-main);
}

.step-action-item .bullet {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.2;
}

.step-tip-box {
    background: rgba(217, 120, 46, 0.08);
    border-left: 4px solid var(--primary);
    border-radius: 0 10px 10px 0;
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.step-tip-box strong {
    color: var(--primary-soft);
}

.step-nav-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-step-next {
    background: linear-gradient(135deg, var(--primary), var(--accent-neon));
    color: #120d09;
    font-weight: 700;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
}

.btn-step-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 120, 46, 0.35);
    background: linear-gradient(135deg, var(--primary-strong), var(--primary));
}

.btn-step-prev {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    font-weight: 600;
    padding: 0.8rem 1.4rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.92rem;
}

.btn-step-prev:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(217, 120, 46, 0.4);
}

/* ==========================================
   TODOS LOS PASOS EN CUADRÍCULA
   ========================================== */

.manual-grid-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(217, 120, 46, 0.1);
}

.steps-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.manual-step-card {
    background: rgba(23, 19, 16, 0.8);
    border: 1px solid rgba(217, 120, 46, 0.18);
    border-radius: 18px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.manual-step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(217, 120, 46, 0.15);
}

.card-step-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent-neon));
    color: #120d09;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 12px rgba(217, 120, 46, 0.3);
}

.manual-step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #fff;
}

.manual-step-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.card-img-placeholder {
    width: 100%;
    height: 150px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed rgba(217, 120, 46, 0.25);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
    position: relative;
}

.card-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.card-img-placeholder span {
    font-size: 0.75rem;
    color: var(--primary-soft);
}

/* ==========================================
   ADAPTACIÓN COMPLETA PARA MÓVILES Y TABLETS
   ========================================== */

/* Tablets & Pantallas Medianas (<= 992px) */
@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .showcase-container {
        padding: 1.8rem;
    }
    
    .showcase-info-panel {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
}

/* Tablets Pequeñas y Móviles Grandes (<= 768px) */
@media (max-width: 768px) {
    .manual-hero {
        padding: 2.5rem 0 2rem;
    }

    .manual-hero-header h1 {
        font-size: clamp(1.75rem, 5vw, 2.4rem);
    }

    .manual-hero-header p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .manual-breadcrumb {
        font-size: 0.82rem;
        padding: 0.35rem 0.8rem;
        margin-bottom: 1.2rem;
    }

    .manual-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.9rem;
    }

    .manual-showcase-section {
        padding: 2.5rem 0 3.5rem;
    }

    .stepper-nav {
        gap: 0.5rem;
        padding-bottom: 1rem;
        margin-bottom: 2rem;
        -webkit-overflow-scrolling: touch;
    }

    .step-tab {
        min-width: 135px;
        padding: 0.75rem 0.85rem;
    }

    .step-info-card h3 {
        font-size: 1.5rem;
    }

    .steps-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.4rem;
    }

    .manual-grid-section {
        padding: 3rem 0;
    }
}

/* Smartphones y Móviles Estándar (<= 600px) */
@media (max-width: 600px) {
    .manual-hero {
        padding: 2rem 0 1.5rem;
    }

    .manual-hero-header h1 {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .manual-hero-header p {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 1.3rem;
    }

    .manual-hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 0.75rem;
    }

    .manual-hero-actions .btn-store,
    .manual-hero-actions .btn-primary {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 0.75rem 1rem;
    }

    .showcase-container {
        padding: 1.25rem 0.85rem;
        border-radius: 18px;
    }

    .stepper-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
        overflow-x: visible;
    }

    .step-tab {
        min-width: 0;
        width: 100%;
        padding: 0.6rem 0.75rem;
        gap: 0.5rem;
        border-radius: 10px;
        align-items: flex-start;
    }

    .step-tab:last-child {
        grid-column: 1 / -1;
    }

    .step-tab-num {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }

    .step-tab-title {
        font-size: 0.82rem;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.25;
    }

    .step-tab-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .stage-device-frame {
        width: min(270px, 84vw);
        height: 520px;
        border-radius: 36px;
        padding: 8px 6px 10px;
        box-shadow: 0 0 0 5px rgba(217, 120, 46, 0.08), 0 20px 40px rgba(0, 0, 0, 0.7);
    }

    .stage-notch {
        width: 68px;
        height: 14px;
        margin-bottom: 4px;
    }

    .hand-pointer {
        width: 40px;
        height: 40px;
    }

    .click-ripple {
        width: 22px;
        height: 22px;
    }

    .click-ripple-outer {
        width: 34px;
        height: 34px;
    }

    .stage-controls {
        gap: 0.6rem;
        margin-top: 1rem;
    }

    .stage-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .stage-counter {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }

    .steps-dots-bar {
        max-width: 270px;
        gap: 0.3rem;
        margin-top: 0.6rem;
    }

    .showcase-grid,
    .step-info-card,
    .step-action-item,
    .step-nav-buttons {
        min-width: 0;
    }

    .step-info-card h3 {
        font-size: 1.3rem;
        overflow-wrap: anywhere;
    }

    .step-nav-buttons {
        flex-wrap: wrap;
    }

    .step-nav-buttons > * {
        flex: 1 1 130px;
        text-align: center;
    }

    .autoplay-progress-container {
        width: min(290px, 100%);
    }

    .step-dot {
        width: 8px;
        height: 8px;
    }

    .step-dot.active {
        width: 18px;
    }

    .autoplay-progress-container {
        width: 100%;
        max-width: 260px;
        margin-top: 0.6rem;
    }

    .step-info-card {
        gap: 0.9rem;
    }

    .step-number-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }

    .step-info-card h3 {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .step-info-card p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .step-action-list {
        padding: 0.85rem 1rem;
        gap: 0.6rem;
        border-radius: 12px;
    }

    .step-action-item {
        font-size: 0.88rem;
        gap: 0.6rem;
    }

    .step-tip-box {
        padding: 0.75rem 0.9rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .step-nav-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.6rem;
        margin-top: 0.6rem;
    }

    .btn-step-next,
    .btn-step-prev {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .steps-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }

    .manual-step-card {
        padding: 1.3rem;
        border-radius: 15px;
    }

    .card-img-placeholder {
        height: 130px;
    }

}

/* Pantallas Muy Pequeñas (<= 380px) */
@media (max-width: 380px) {
    .manual-hero-header h1 {
        font-size: 1.42rem;
    }

    .stage-device-frame {
        width: 240px;
        height: 470px;
        border-radius: 30px;
    }

    .step-tab {
        min-width: 110px;
        padding: 0.5rem 0.6rem;
    }

    .step-tab-title {
        font-size: 0.78rem;
    }

    .showcase-container {
        padding: 1rem 0.65rem;
    }
}
