/* ===== PAGE 0025 — SLATE MINIMAL BUSINESS ===== */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Thin separator line utility */
.thin-line {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

/* Hero overlay */
.hero-overlay {
    background: linear-gradient(135deg, rgba(15,23,42,0.82) 0%, rgba(30,41,59,0.70) 100%);
}

/* Feature icon circle — subtle */
.feature-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 1.25rem;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon-circle {
    background: #475569;
    color: #fff;
    transform: scale(1.08);
}

/* Vertical stat divider */
.stat-divider {
    width: 1px;
    height: 48px;
    background: #e2e8f0;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .stat-divider {
        width: 48px;
        height: 1px;
        margin: 1rem auto;
    }
}

/* Testimonial quote */
.testimonial-quote {
    position: relative;
}
.testimonial-quote::before {
    content: '\201C';
    font-size: 5rem;
    color: #cbd5e1;
    position: absolute;
    top: -2rem;
    left: -0.5rem;
    line-height: 1;
    font-family: Georgia, serif;
}

/* FAQ accordion styles */
.faq-item {
    border-bottom: 1px solid #e2e8f0;
}
.faq-question {
    cursor: pointer;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.2s ease;
    user-select: none;
}
.faq-question:hover {
    color: #475569;
}
.faq-question i {
    font-size: 0.75rem;
    color: #94a3b8;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #475569;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.25rem;
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Page-specific hero for subpages */
.page-hero {
    background: #f8fafc;
}

/* Contact form styles */
.form-input-minimal {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid #cbd5e1;
    background: transparent;
    font-size: 0.938rem;
    color: #1e293b;
    outline: none;
    transition: border-color 0.3s ease;
}
.form-input-minimal:focus {
    border-bottom-color: #475569;
}
.form-input-minimal::placeholder {
    color: #94a3b8;
}

/* Fade-in animation on scroll */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
