/* Premium Landing Hub Styles - V2.1 Premium Lite Edition */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #6366f1;
    --accent-color: #8b5cf6;
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --surface-glass: rgba(255, 255, 255, 0.85); /* Increased opacity for better contrast on any background */
    --surface-glass-heavy: rgba(255, 255, 255, 0.95);
    --surface-glow: rgba(255, 255, 255, 0.5);
    --border-glass: rgba(99, 102, 241, 0.15);
    --accent-glow: rgba(99, 102, 241, 0.08);
    --text-main: #0f172a; /* Slate 900 - darker for even better readability */
    --text-muted: #475569; /* Slate 600 */
    --radius-lg: 32px;
    --radius-md: 20px;
    --font-family: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
}

/* Force light background on all SEO containers to kill unwanted dark styles from fk.css */
#s-content-pre, #s-content-footer {
    background-color: #f8fafc !important; /* Alice blue/slate background */
    background-image: 
        radial-gradient(at 100% 0%, rgba(99, 102, 241, 0.08) 0px, transparent 40%),
        radial-gradient(at 0% 100%, rgba(168, 85, 247, 0.08) 0px, transparent 40%) !important;
    padding: 0 !important;
    margin: 20px 0 !important;
    border: none !important;
    color: var(--text-main) !important;
    font-family: var(--font-family) !important;
    position: relative;
    overflow: hidden;
    overflow-x: hidden;
}

#landing-hub {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    color: var(--text-main);
    font-family: var(--font-family);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-x: hidden;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Typography Overhaul */
.faq-title, .reviews-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
    word-break: break-word;
}

.faq-title::after, .reviews-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    opacity: 0.3;
}

/* FAQ / Collapsible Overhaul */
.faq-section {
    margin-bottom: 6rem;
}

.faq-card {
    background: var(--surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px -12px rgba(99, 102, 241, 0.12);
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.faq-section details {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(99, 102, 241, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.faq-section details:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.05);
}

.faq-section summary {
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.25rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
}

.faq-section summary::-webkit-details-marker { display: none; }

.faq-section summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 400;
}

.faq-section details[open] summary::after {
    transform: rotate(45deg);
    color: var(--text-muted);
}

.faq-section .faq-content {
    padding: 0 2rem 2rem 2rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 400;
    font-size: 1.1rem;
    border-top: none;
    overflow-wrap: break-word;
}

/* Reviews Grid Overhaul */
.reviews-section {
    margin-bottom: 5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-auto-rows: min-content;
    gap: 2.5rem;
    align-items: start;
}

.review-card {
    background: var(--surface-glass);
    border: 1px solid var(--border-glass);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px -5px rgba(99, 102, 241, 0.05);
    word-break: break-word;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.15);
}

/* Quote Icon Decoration */
.review-card::before {
    content: '“';
    position: absolute;
    top: 5px;
    right: 25px;
    font-size: 5rem;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    opacity: 0.1;
    font-style: normal;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.review-author {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.4rem;
    letter-spacing: -0.01em;
}

.review-rating {
    color: #f59e0b; /* Amber 500 */
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
    overflow-wrap: break-word;
}

.review-footer {
    margin-top: auto;
    font-size: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.review-footer::before {
    content: '✓';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    text-align: center;
    line-height: 20px;
}

/* Premium Highlights */
.review-card:nth-child(even) {
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(99, 102, 241, 0.02) 100%);
}

/* Main Hub Wrapper (Collapsed on shop pages) */
.hub-main-details {
    background: var(--surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px -5px rgba(99, 102, 241, 0.1);
}

.hub-main-summary {
    list-style: none;
    cursor: pointer;
    padding: 1.5rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    background: var(--primary-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.hub-main-summary::-webkit-details-marker { display: none; }

.hub-main-summary:hover {
    filter: brightness(1.1);
    letter-spacing: 0.02em;
}

.hub-main-summary::after {
    content: '↓';
    font-size: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hub-main-details[open] .hub-main-summary::after {
    transform: rotate(180deg);
}

.hub-main-details[open] .hub-main-summary {
    background: #fff;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-glass);
}

.hub-content-wrap {
    padding: 2rem 0;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    #landing-hub { padding: 2.5rem 1rem; }
    .faq-title, .reviews-title { font-size: 2rem; margin-bottom: 2rem; }
    .faq-card { padding: 2rem 1.5rem; border-radius: var(--radius-md); }
    .reviews-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .review-card { padding: 1.75rem 1.25rem; }
    .faq-section summary { padding: 1.25rem 1.5rem; font-size: 1.15rem; }
    .faq-section .faq-content { padding: 0 1.5rem 1.5rem 1.5rem; }
}

@media (max-width: 480px) {
    .faq-title, .reviews-title { font-size: 1.65rem; }
    .review-author { font-size: 1.2rem; }
    .review-text { font-size: 1.1rem; }
    #landing-hub { padding: 1.5rem 0.75rem; }
    .faq-card { padding: 1.5rem 1rem; }
    .faq-section summary { font-size: 1.05rem; padding: 1rem; }
}
