.spai-dashboard,
.spai-builder {
    font-family: Inter, Arial, sans-serif;
    color: #12131a;
}

.spai-hero,
.spai-box,
.spai-builder-form,
.spai-preview {
    background: #fff;
    border: 1px solid rgba(18,19,26,.11);
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 18px 50px rgba(18,19,26,.08);
}

.spai-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #fff, #fff4e9);
}

.spai-pill {
    display: inline-flex;
    border-radius: 999px;
    background: #f5f2ec;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 900;
    color: #5d3fd3;
    margin-bottom: 12px;
}

.spai-hero h2,
.spai-builder h2 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: .95;
    letter-spacing: -.06em;
    margin: 0 0 14px;
}

.spai-hero p,
.spai-box p,
.spai-preview p {
    color: #5f6675;
    line-height: 1.7;
}

.spai-btn {
    background: #ff6a3d;
    color: #fff !important;
    border: 0;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.spai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.spai-builder {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 20px;
}

.spai-builder-form label {
    display: grid;
    gap: 8px;
    font-size: 13px;
    font-weight: 900;
    color: #424756;
    margin-bottom: 14px;
}

.spai-builder-form input,
.spai-builder-form select,
.spai-builder-form textarea {
    width: 100%;
    border: 1px solid rgba(18,19,26,.11);
    background: #fffaf6;
    color: #12131a;
    border-radius: 16px;
    padding: 13px 14px;
}

.spai-builder-form textarea {
    min-height: 90px;
}

.spai-generated-site {
    background: #fff;
    color: #12131a;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(18,19,26,.11);
}

.spai-generated-site header {
    display: flex;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(18,19,26,.11);
}

.spai-generated-site nav {
    display: flex;
    gap: 14px;
    color: #5f6675;
    font-weight: 800;
}

.spai-generated-hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    background: #12131a;
    color: #fff;
    padding: 42px;
}

.spai-generated-hero span {
    color: #ffe1d5;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    font-weight: 950;
}

.spai-generated-hero h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: .95;
    letter-spacing: -.07em;
    margin: 16px 0;
}

.spai-generated-hero p {
    color: #c9ced9;
    line-height: 1.7;
}

.spai-generated-hero button {
    background: #ff6a3d;
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 900;
}

.spai-generated-visual {
    min-height: 260px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff6a3d, #5d3fd3, #1f7bff);
}

.spai-generated-services,
.spai-generated-about {
    padding: 34px;
}

.spai-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.spai-service-card {
    border: 1px solid rgba(18,19,26,.11);
    border-radius: 22px;
    padding: 18px;
}

.spai-service-card p {
    color: #5f6675;
    line-height: 1.6;
}

.spai-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #12131a;
    color: #fff;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 900;
    z-index: 99999;
    transform: translateY(90px);
    transition: .3s;
}

.spai-toast.show {
    transform: translateY(0);
}

@media(max-width: 900px) {
    .spai-builder,
    .spai-generated-hero {
        grid-template-columns: 1fr;
    }
    .spai-grid,
    .spai-service-grid {
        grid-template-columns: 1fr;
    }
    .spai-hero {
        display: block;
    }
}
