/* ============================================
   Static Pages (About, Blog, Contact, Help, ToS)
   ============================================ */

/* Hero Section */
.static-hero {
    background-color: var(--bg-light);
    padding: 100px 0 64px;
    border-bottom: 1px solid var(--border);
    margin-top: 0;
}

.static-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.static-header {
    max-width: 720px;
}

.static-badge {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.static-header h1 {
    font-size: 48px;
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'Solomon Sans', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.static-header p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}

/* ============================================
   About Page
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 80px 0 0;
}

.about-section {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: white;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.about-section:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.about-icon-box {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--text-dark);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Solomon Sans', sans-serif;
}

.about-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Stats Row */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 24px 16px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Solomon Sans', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* CTA Block */
.about-cta {
    text-align: center;
    padding: 80px 0;
}

.about-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Solomon Sans', sans-serif;
    margin-bottom: 12px;
}

.about-cta p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text-dark);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.cta-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

/* ============================================
   Blog Page
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 80px 0 60px;
}

.blog-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: white;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    cursor: pointer;
}

.blog-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.blog-card-img {
    height: 180px;
    width: 100%;
}

.blog-card-body {
    padding: 24px;
}

.blog-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
}

.blog-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Solomon Sans', sans-serif;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Newsletter */
.blog-newsletter {
    text-align: center;
    padding: 64px 0 80px;
    border-top: 1px solid var(--border);
}

.newsletter-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--text-light);
    margin: 0 auto 20px;
}

.blog-newsletter h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Solomon Sans', sans-serif;
    margin-bottom: 10px;
}

.blog-newsletter p {
    color: var(--text-light);
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
    border-color: var(--text-dark);
}

.newsletter-form button {
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #333;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    padding: 80px 0;
}

.contact-info-column h2,
.contact-form-column h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Solomon Sans', sans-serif;
    margin-bottom: 16px;
}

.contact-intro {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 16px;
}

.contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

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

.contact-socials {
    display: flex;
    gap: 10px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.social-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.social-chip:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--text-dark);
}

.contact-success-msg {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

/* ============================================
   Help Center Page
   ============================================ */
.help-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 80px 0 60px;
}

.help-cat-card {
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    background: white;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    cursor: pointer;
}

.help-cat-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.help-cat-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-dark);
    margin: 0 auto 16px;
}

.help-cat-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.help-cat-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.faq-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Solomon Sans', sans-serif;
    margin-bottom: 32px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: inherit;
    text-align: left;
    transition: background 0.2s ease;
}

[dir="rtl"] .faq-question {
    text-align: right;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question[aria-expanded="true"] {
    background: var(--bg-light);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: var(--text-light);
    font-size: 13px;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    background: var(--bg-light);
}

/* ============================================
   Terms of Service / Policy reuse
   ============================================ */
.policy-content {
    padding: 80px 0;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 16px;
}

.policy-section {
    margin-bottom: 64px;
}

.policy-section h2 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Solomon Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 16px;
}

.policy-section h2 .icon-box {
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 17px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.policy-section p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

.policy-section ul {
    padding: 0;
    margin-bottom: 20px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policy-section li {
    position: relative;
    padding-left: 28px;
    color: var(--text-light);
    font-size: 15px;
}

[dir="rtl"] .policy-section li {
    padding-left: 0;
    padding-right: 28px;
}

.policy-section li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 11px;
    color: var(--text-dark);
}

[dir="rtl"] .policy-section li::before {
    left: auto;
    right: 0;
}

.last-updated {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.last-updated::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--text-dark);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .help-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .static-hero {
        padding: 80px 0 48px;
    }

    .static-header h1 {
        font-size: 32px;
    }

    .static-header p {
        font-size: 15px;
    }

    .about-grid {
        padding: 48px 0 0;
    }

    .about-section {
        flex-direction: column;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 0;
        margin-top: 40px;
    }

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

    .blog-grid {
        grid-template-columns: 1fr;
        padding: 48px 0 40px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 48px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .help-categories {
        grid-template-columns: repeat(2, 1fr);
        padding: 48px 0 40px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .policy-content {
        padding: 48px 0;
    }

    .policy-section {
        margin-bottom: 40px;
    }

    .about-cta {
        padding: 60px 0;
    }

    .about-cta h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .help-categories {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
