/* =========================================
   GEO/AEO Sections — Added 2026-04-14
   home-faq (maps to existing faq styles)
   home-about (new About section)
   ========================================= */

/* HOME FAQ — maps new class to existing styles */
.home-faq {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
}

.home-faq .section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.home-faq .section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 48px;
}

.home-faq .faq-list {
    max-width: 780px;
    margin: 0 auto;
    text-align: left;
}

.home-faq .faq-item {
    border-bottom: 1px solid #eee;
}

.home-faq .faq-question {
    width: 100%;
    padding: 22px 0;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text-dark, #111);
    transition: color 0.2s;
    font-family: var(--printigly-font, inherit);
    text-align: left;
    background: none;
    border: none;
}

.home-faq .faq-question:hover {
    color: var(--printigly-primary, #e94560);
}

.home-faq .faq-icon {
    font-size: 22px;
    line-height: 1;
    color: var(--printigly-primary, #e94560);
    flex-shrink: 0;
    transition: transform 0.3s;
    font-weight: 400;
}

.home-faq .faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.home-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
}

.home-faq .faq-item.active .faq-answer {
    max-height: 600px;
    padding-bottom: 22px;
}

.home-faq .faq-answer p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* =========================================
   HOME ABOUT — About Printigly Section
   ========================================= */
.home-about {
    padding: 80px 40px;
    background: #f8f9ff;
}

.home-about .container {
    max-width: 1140px;
    margin: 0 auto;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
}

.about-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--printigly-primary, #e94560);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.about-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--text-dark, #111);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-lead {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-body {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-quote {
    border-left: 4px solid var(--printigly-primary, #e94560);
    padding-left: 20px;
    margin: 0;
}

.about-quote p {
    font-size: 15px;
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
}

.about-quote cite {
    font-size: 13px;
    color: #888;
    font-style: normal;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-content: start;
}

.about-stat {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--printigly-primary, #e94560);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Technology grid */
.about-tech {
    border-top: 1px solid #e5e7eb;
    padding-top: 48px;
}

.about-tech-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark, #111);
    margin-bottom: 28px;
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tech-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.tech-icon {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
}

.tech-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark, #111);
    margin-bottom: 6px;
}

.tech-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .home-faq {
        padding: 48px 16px;
    }

    .home-about {
        padding: 48px 16px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .home-faq .faq-question {
        font-size: 14px;
        padding: 18px 0;
    }

    .stat-number {
        font-size: 26px;
    }

    .tech-grid {
        grid-template-columns: 1fr 1fr;
    }
}
