/* Landing page specific styles (isolated from global CSS) */

:root {
    --mono-purple: #9e6de0;
    --mono-purple-2: #7c4bc0;
    --mono-deep: #1a1a2e;
}

.welcome-section {
    padding: 72px 0;
}

.welcome-hero .lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Better section spacing on small screens */
@media (max-width: 991.98px) {
    .welcome-section {
        padding: 56px 0;
    }
}

/* Feature cards */
.feature-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}

.feature-card .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--mono-purple),
        var(--mono-purple-2)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card .icon-circle i {
    font-size: 30px;
    color: #fff;
}

/* Reviews */
.review-card {
    border: 1px solid rgba(158, 109, 224, 0.18);
    border-radius: 16px;
    background: #fff;
    padding: 20px;
    height: 100%;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(158, 109, 224, 0.12);
}

.review-author {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--mono-purple),
        var(--mono-purple-2)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
}

/* FAQ */
.faq-item {
    border: 1px solid rgba(45, 45, 45, 0.08);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 12px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 16px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.faq-question:focus {
    outline: 2px solid rgba(158, 109, 224, 0.35);
    outline-offset: 2px;
}

.faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(158, 109, 224, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mono-purple);
    flex: 0 0 auto;
    font-weight: 900;
}

.faq-title {
    font-weight: 800;
    color: #2d2d2d;
}

.faq-chevron {
    margin-left: auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(158, 109, 224, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.faq-item[data-open="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 16px 16px 62px;
    display: none;
    color: #4a4a4a;
    line-height: 1.8;
}

.faq-item[data-open="true"] .faq-answer {
    display: block;
}

/* CTA */
.welcome-cta {
    background: linear-gradient(
        135deg,
        rgba(158, 109, 224, 0.14),
        rgba(124, 75, 192, 0.1)
    );
    border: 1px solid rgba(158, 109, 224, 0.25);
    border-radius: 18px;
}

.btn-mono-primary {
    background: linear-gradient(
        135deg,
        var(--mono-purple),
        var(--mono-purple-2)
    );
    border: 0;
    color: #fff;
    font-weight: 800;
    border-radius: 999px;
    padding: 12px 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-mono-primary:hover {
    filter: brightness(1.02);
}

/* Make phone/email links consistent */
.contact-link {
    color: var(--mono-purple);
    font-weight: 700;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Simple form focus */
.welcome-form input:focus,
.welcome-form textarea:focus {
    box-shadow: 0 0 0 0.2rem rgba(158, 109, 224, 0.2);
    border-color: rgba(158, 109, 224, 0.55);
}
