/* ======================================== */
/* A.I.U. Create Info Styles (aiu-create.css) */
/* ======================================== */

/* --- Page Layout --- */
.aiu-container.create-info {
    max-width: 750px;
}

/* --- Section Styling --- */
.info-section {
    background-color: var(--aiu-surface);
    border: 1px solid var(--aiu-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-icon {
    font-size: 2rem;
    color: var(--aiu-primary);
    line-height: 1;
}

.section-header h2 {
    font-size: 1.5rem;
    color: var(--aiu-text-primary);
    margin: 0;
}

.info-section p {
    font-size: 1rem;
    text-align: left;
    max-width: none;
    margin-bottom: 15px;
}

.info-section ul {
    list-style: none;
    padding-left: 5px;
}

.info-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.info-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--aiu-accent);
    font-weight: bold;
}

/* --- Pricing Box --- */
.pricing-box {
    text-align: center;
    border-top: 1px solid var(--aiu-border);
    padding-top: 30px;
    margin-top: 30px;
}

.price-main {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
}

.price-main span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--aiu-text-secondary);
}

.price-sub {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.price-sub span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--aiu-text-secondary);
}

/* --- Action Gates --- */
.action-gate {
    text-align: center;
    margin-top: 30px;
}

.action-gate p {
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}

#welcome-msg {
    color: #ffffff;
    font-size: 1.2rem;
}

/* --- Responsive --- */
@media (max-width: 600px) {
    .info-section {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .price-main {
        font-size: 2.5rem;
    }
}