/* Custom Styles (Tailwind companion) — Mockup C */

/* Card hover lift */
.card-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(55, 124, 107, 0.12);
}

/* FAQ accordion */
details summary { cursor: pointer; list-style: none; }
details summary::-webkit-details-marker { display: none; }
details[open] .faq-icon { transform: rotate(45deg); }
details[open] .faq-answer { animation: fadeIn 0.3s ease; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: none; }
}

/* Hero 2x2 image grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.hero-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
@media (min-width: 1024px) {
    .hero-grid img {
        height: 240px;
    }
}

/* Prose styling for legal/content pages */
.prose h2 { font-size: 1.5rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 1rem; color: #1A2332; }
.prose h3 { font-size: 1.25rem; font-weight: 600; margin-top: 2rem; margin-bottom: 0.75rem; color: #1A2332; }
.prose p { margin-bottom: 1rem; line-height: 1.75; color: #4b5563; }
.prose ul, .prose ol { margin-bottom: 1rem; padding-left: 1.5rem; color: #4b5563; }
.prose li { margin-bottom: 0.5rem; line-height: 1.75; }
.prose strong { color: #1A2332; }
.prose a { color: #377C6B; text-decoration: underline; }
.prose a:hover { color: #2c6356; }
.prose hr { border: none; border-top: 1px solid #e5e7eb; margin: 3rem 0; }

/* Screenreader-only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Hide mobile menu button on desktop */
@media (min-width: 1024px) {
    #mobile-menu-btn { display: none !important; }
}

/* Print styles */
@media print {
    nav, footer, .signup-form, button { display: none; }
}
