/* =========================================
   Step 1 Mockup Styles
   ========================================= */

/* Ensure the visual column takes up space */
.hiw-visual-col {
    display: flex;
    justify-content: flex-end;
    /* Align to right on desktop */
}

/* Background for Step 1 Mockup - Abstract Apple Style */
/* Background for Step 1 Mockup - Abstract Apple Style */
.step1-bg {
    /* Made completely transparent to blend with parent card as requested. */
    background: transparent;
    position: relative;
    /* overflow: hidden;  <-- Removing overflow hidden might help if clipping is visible, 
       but keeping it defines the space. 
       The user wants the "back card" not visible. */
    overflow: visible;
    border-radius: 0;
    /* Removing radius as it shouldn't be a card */
    border: none;
    box-shadow: none;
}

/* Curve Container */
.step1-curve-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.step1-curve {
    width: 100%;
    height: 100%;
    transform: scale(1.2);
    /* Slightly larger */
}

/* Glass Card Center */
.center-box {
    position: absolute;
    top: 35%;
    /* Positioned slightly above center */
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px 40px;
    border-radius: 28px;
    text-align: center;
    min-width: 220px;

    /* Deep Blue Glass Style - Matching Image 2 */
    background: linear-gradient(145deg, rgba(10, 36, 104, 0.5) 0%, rgba(19, 59, 158, 0.4) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    /* Subtle top highlight */
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    z-index: 10;
}

.center-box .big-number {
    font-size: 4.5rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1;
    display: block;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.center-box .label-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

/* Timeline Components */
.step1-timeline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    /* Space for timeline */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 5;
    background: transparent;
    /* Removed gradient background */
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid white;
    margin-bottom: 8px;
    opacity: 0.9;
}

.month-pill {
    padding: 8px 18px;
    background: rgba(13, 24, 66, 0.5);
    /* Darker pill */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 99px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.timeline-ticks-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    padding-bottom: 0;
    opacity: 0.6;
    mask-image: linear-gradient(to right, transparent, black 30%, black 70%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 30%, black 70%, transparent);
}

.main-tick {
    width: 2px;
    height: 40px;
    background: white;
    opacity: 1;
    border-radius: 2px;
}

.sub-ticks {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.sub-ticks span {
    width: 1px;
    background: white;
    opacity: 0.5;
    border-radius: 1px;
}

/* Varying heights for natural look */
.sub-ticks span:nth-child(1) {
    height: 15px;
}

.sub-ticks span:nth-child(2) {
    height: 25px;
}

.sub-ticks span:nth-child(3) {
    height: 10px;
}

.sub-ticks span:nth-child(4) {
    height: 20px;
}

/* Animations */
@keyframes float {

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

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

.center-box {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(55, 195, 132, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 0 rgba(55, 195, 132, 0.2);
    }
}

/* Circle in SVG */
.step1-curve circle {
    animation: pulse-glow 3s infinite;
}