/* Flow / Funnel Styles */
#flow-container {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.flow-step {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.5s ease-out;
}

.flow-step h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--white-color);
    /* On purple background */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.flow-step h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white-color);
}

.flow-step p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Button Group */
.flow-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    /* Reduced from 400px */
    margin: 0 auto;
}

.btn-flow-primary {
    background-color: var(--white-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    /* Reduced from 1.1rem */
    padding: 0.8rem 1.5rem;
    /* Reduced padding */
    border-radius: var(--border-radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    text-decoration: none;
    /* Fix for links looking like buttons */
    box-sizing: border-box;
    font-family: inherit;
    line-height: normal;
    margin: 0;
}

.btn-flow-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-flow-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white-color);
    font-weight: 600;
    font-size: 1rem;
    /* Match primary */
    padding: 0.8rem 1.5rem;
    /* Match primary */
    border-radius: var(--border-radius-pill);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-normal);
    width: 100%;
    text-decoration: none;
    display: flex;
    /* Ensure flex centering */
    justify-content: center;
    gap: 0.5rem;
    box-sizing: border-box;
    font-family: inherit;
    line-height: normal;
    margin: 0;
}

.btn-flow-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: var(--white-color);
    transform: translateY(-2px);
}

/* Timing Options */
.timing-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-timing {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white-color);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-normal);
    font-weight: 500;
    text-align: left;
}

.btn-timing:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--white-color);
    transform: translateX(5px);
}

/* Ready / Pricing Card Override for Purple Background */
.flow-card {
    background-color: var(--white-color);
    color: var(--text-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
    margin-bottom: 1.5rem;
}

.flow-card h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.flow-card p {
    color: var(--text-muted);
}

.price-tag {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    color: var(--primary-color);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.badge-included {
    background-color: #d1fae5;
    color: #065f46;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Back Link */
.btn-back {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-size: 0.9rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-back:hover {
    color: var(--white-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}