/* ═══════════════════════════════════════════
   Cliper — Content Pages Styles
   Static/informational pages (About, CGU, etc.)
   ═══════════════════════════════════════════ */

/* ─── Content Page Layout ─── */
.content-page {
    padding: 1rem 0 3rem;
}

.content-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.content-header h1 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-ocean-deep);
    margin-bottom: 0.5rem;
}

.content-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto;
}

.content-body {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    background: var(--color-surface);
    padding: 2rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(26, 140, 255, 0.06);
}

.content-section h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-ocean-deep);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-bg);
}

.content-section h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-ocean-mid);
    margin: 1.2rem 0 0.5rem;
}

.content-section p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.content-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section li {
    line-height: 1.8;
    margin-bottom: 0.4rem;
    color: var(--color-text);
}

.content-section a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-section a:hover {
    color: var(--color-primary-dark);
}

/* ─── About Page: Features Grid ─── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
}

.feature-item {
    background: var(--color-surface-alt);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: transform 0.2s;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.6rem;
}

.feature-item h3 {
    margin: 0 0 0.4rem;
    border: none;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ─── FAQ Page: Guide Steps ─── */
.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.guide-step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(26, 140, 255, 0.3);
}

.step-content h3 {
    margin-top: 0;
}

.step-content p {
    margin-bottom: 0;
}

/* ─── FAQ Page: Equipment Cards ─── */
.equipment-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.equipment-card {
    background: var(--color-surface-alt);
    padding: 1.3rem;
    border-radius: var(--radius-sm);
    text-align: center;
}

.equipment-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 0.5rem;
}

.equipment-card h3 {
    margin: 0 0 0.4rem;
    text-align: center;
}

.equipment-card p {
    font-size: 0.88rem;
    margin-bottom: 0;
    text-align: left;
}

/* ─── FAQ Page: Currencies ─── */
.currencies-guide {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.currency-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--color-surface-alt);
    padding: 1.2rem;
    border-radius: var(--radius-sm);
}

.currency-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.currency-info h3 {
    margin-top: 0;
}

.currency-info p {
    margin-bottom: 0;
}

/* ─── FAQ Page: FAQ Items ─── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--color-surface-alt);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--color-primary);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-ocean-deep);
    margin: 0 0 0.5rem;
}

.faq-answer {
    font-size: 0.92rem;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
}

/* ─── Contact Page ─── */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.contact-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid rgba(26, 140, 255, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 0.8rem;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-ocean-deep);
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

.contact-value {
    font-weight: 700;
    color: var(--color-primary) !important;
    font-size: 0.95rem !important;
}

/* ─── Homepage: Extended Content ─── */
.home-about {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.home-section {
    background: var(--color-surface);
    padding: 2rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(26, 140, 255, 0.06);
}

.home-section h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-ocean-deep);
    margin-bottom: 1rem;
}

.home-section p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.home-steps {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.home-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.home-step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: #fff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.home-step h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--color-ocean-deep);
    margin-bottom: 0.3rem;
}

.home-step p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.home-highlights {
    list-style: none;
    padding: 0;
}

.home-highlights li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.7;
    color: var(--color-text);
}

.home-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
    font-size: 1.1rem;
}

.home-highlights li:not(:last-child) {
    border-bottom: 1px solid var(--color-bg);
}

/* ─── Homepage: CTA Section ─── */
.home-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--color-ocean-deep) 0%, var(--color-ocean-mid) 100%);
    border-radius: var(--radius-lg);
    color: var(--color-text-inverse);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.home-cta h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}

.home-cta p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

/* ─── Footer Enhancement ─── */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.footer-brand {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .content-header h1 {
        font-size: 1.8rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .home-section {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .equipment-guide {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .guide-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .equipment-guide {
        grid-template-columns: 1fr;
    }
}
