/**
 * CamReviews - CSS Mobile First
 * Style site de review objectif et crédible
 */

/* ============================================
   CONTENT PROTECTION (anti-select, anti-drag)
   ============================================ */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* ============================================
   VARIABLES
   ============================================ */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #dc2626;
    --text: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --bg-dark: #111827;
    --border: #e5e7eb;
    --border-dark: #d1d5db;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 12px;
}

/* ============================================
   RESET & BASE (Mobile First)
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-text-size-adjust: 100%;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   TYPOGRAPHY (Mobile First)
   ============================================ */
h1, h2, h3, h4 {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

h1 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
}

h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul, ol {
    margin: 0 0 1rem 1.25rem;
}

li {
    margin-bottom: 0.5rem;
}

strong {
    font-weight: 600;
}

/* ============================================
   HEADER (Mobile First)
   ============================================ */
.header {
    background: var(--bg-dark);
    color: white;
    padding: 15px 0;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-icon {
    font-size: 1.3rem;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.site-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* ============================================
   NAVIGATION (Mobile First)
   ============================================ */
.nav {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-list {
    display: flex;
    gap: 3px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.nav-list::-webkit-scrollbar {
    display: none;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    display: block;
    padding: 6px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius);
    white-space: nowrap;
    text-decoration: none;
}

.nav-list a:hover {
    background: var(--border);
    color: var(--text);
    text-decoration: none;
}

/* ============================================
   ARTICLE HEADER (Mobile First)
   ============================================ */
.article {
    padding: 25px 0 40px;
}

.article-header {
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.8rem;
}

.category {
    background: var(--primary);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.date, .reading-time {
    color: var(--text-muted);
}

.article-intro {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   SECTIONS (Mobile First)
   ============================================ */
.section {
    margin-bottom: 40px;
}

/* ============================================
   VERDICT BOX (Mobile First)
   ============================================ */
.verdict-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 30px;
}

.verdict-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.verdict-header h2 {
    margin: 0;
    padding: 0;
    border: none;
}

.verdict-score {
    display: flex;
    align-items: baseline;
}

.score-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.score-max {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.verdict-content p {
    margin-bottom: 1rem;
}

.verdict-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0;
}

.verdict-pros, .verdict-cons {
    background: white;
    padding: 15px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.verdict-pros {
    border-left: 4px solid var(--success);
}

.verdict-cons {
    border-left: 4px solid var(--danger);
}

.verdict-pros h4 {
    color: var(--success);
}

.verdict-cons h4 {
    color: var(--danger);
}

.verdict-pros ul, .verdict-cons ul {
    margin: 0;
    list-style: none;
}

.verdict-pros li::before {
    content: '✓ ';
    color: var(--success);
    font-weight: 600;
}

.verdict-cons li::before {
    content: '✗ ';
    color: var(--danger);
    font-weight: 600;
}

.verdict-recommendation {
    background: white;
    padding: 12px 15px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.verdict-recommendation p {
    margin: 0;
    font-size: 0.95rem;
}

.verdict-cta {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.cta-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ============================================
   BUTTONS (Mobile First)
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    text-decoration: none;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1rem;
}

/* CTA Agressifs (Mobile First) */
.btn-cta-aggressive {
    background: linear-gradient(135deg, #ff3d00, #ff6d00);
    color: white;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 61, 0, 0.4);
    transition: all 0.3s ease;
    width: 100%;
}

.btn-cta-aggressive:hover {
    background: linear-gradient(135deg, #ff6d00, #ff3d00);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 61, 0, 0.5);
    text-decoration: none;
}

.btn-cta-final {
    background: linear-gradient(135deg, #ff3d00, #ff6d00);
    color: white;
    padding: 16px 30px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 61, 0, 0.5);
    animation: pulse-cta 2s infinite;
    width: 100%;
}

.btn-cta-final:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 61, 0, 0.6);
    text-decoration: none;
}

@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 61, 0, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(255, 61, 0, 0.7); }
}

.cta-inline {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
}

.cta-subtext {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 500;
}

/* ============================================
   TABLE OF CONTENTS (Mobile First)
   ============================================ */
.toc {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 15px 20px;
    margin-bottom: 30px;
}

.toc h3 {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.toc ol {
    margin: 0;
    padding-left: 18px;
}

.toc li {
    margin-bottom: 6px;
}

.toc a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.toc a:hover {
    color: var(--primary);
}

/* ============================================
   INFO BOX (Mobile First)
   ============================================ */
.info-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 15px;
    margin: 20px 0;
}

.info-box h4 {
    margin-bottom: 12px;
}

.info-list {
    margin: 0;
    list-style: none;
}

.info-list li {
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.info-list li:last-child {
    border-bottom: none;
}

/* ============================================
   FEATURE CARDS (Mobile First)
   ============================================ */
.feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 25px 0;
}

.feature-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.feature-icon {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.feature-card h4 {
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.feature-rating {
    color: var(--warning);
    font-size: 0.85rem;
}

/* ============================================
   PRICING (Mobile First)
   ============================================ */
.pricing-table {
    overflow-x: auto;
    margin: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.pricing-table table,
.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    min-width: 400px;
}

.pricing-table th,
.pricing-table td,
.comparison-table th,
.comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.pricing-table th,
.comparison-table th {
    background: var(--bg-alt);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.pricing-table tbody tr:hover,
.comparison-table tbody tr:hover {
    background: var(--bg-alt);
}

/* Pricing Cards (Mobile First) */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pricing-card.pricing-featured {
    border-color: #ff3d00;
    box-shadow: 0 4px 15px rgba(255, 61, 0, 0.2);
}

.pricing-badge {
    display: inline-block;
    background: var(--bg-alt);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 12px;
}

.pricing-featured .pricing-badge {
    background: linear-gradient(135deg, #ff3d00, #ff6d00);
    color: white;
}

.pricing-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-featured .pricing-price {
    color: #ff3d00;
}

.pricing-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   TIP BOX (Mobile First)
   ============================================ */
.tip-box {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: var(--radius);
    padding: 15px;
    margin: 20px 0;
    font-size: 0.9rem;
}

/* ============================================
   SECURITY (Mobile First)
   ============================================ */
.security-verdict {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    background: #dcfce7;
    border: 1px solid var(--success);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0;
}

.security-icon {
    width: 45px;
    height: 45px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.security-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.security-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0;
}

.security-item {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 15px;
}

.security-item h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.security-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   REVIEWS (Mobile First)
   ============================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

.review-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-author {
    font-weight: 600;
    font-size: 0.9rem;
}

.review-rating {
    color: var(--warning);
    font-size: 0.9rem;
}

.review-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}

.reviews-summary {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 15px;
    margin-top: 15px;
}

.reviews-summary p {
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   FAQ (Mobile First)
   ============================================ */
.faq-list {
    margin: 20px 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background: var(--bg-alt);
    transition: background 0.2s ease;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--text-light);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: none;
    overflow: visible;
}

/* When JS is enabled, accordion behavior */
.js-enabled .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.js-enabled .faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 15px;
    margin: 0;
    background: white;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
}

/* ============================================
   CONCLUSION (Mobile First)
   ============================================ */
.conclusion-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 25px;
}

.conclusion-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.score-big {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.score-label {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.conclusion-content {
    text-align: left;
}

.conclusion-content p:last-child {
    margin-bottom: 0;
}

.final-cta {
    text-align: center;
    margin-top: 25px;
}

.cta-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 100%;
}

/* ============================================
   SOURCES (Mobile First)
   ============================================ */
.section-sources {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.section-sources h3 {
    margin-top: 0;
}

.sources-list {
    font-size: 0.85rem;
}

.sources-list li {
    word-break: break-word;
}

.disclosure {
    font-size: 0.85rem;
    color: var(--text-light);
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
    margin-bottom: 0;
}

/* ============================================
   FOOTER (Mobile First)
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 30px 0;
    margin-top: 40px;
}

.footer-content {
    text-align: center;
    margin-bottom: 25px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-content p {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: white;
}

.footer-legal {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #374151;
}

.footer-legal p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

/* ============================================
   TABLET BREAKPOINT (min-width: 600px)
   ============================================ */
@media (min-width: 600px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    .header {
        padding: 18px 0;
    }

    .brand-icon {
        font-size: 1.4rem;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .nav-list a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .article {
        padding: 35px 0 50px;
    }

    .article-intro {
        font-size: 1.1rem;
    }

    .verdict-box {
        padding: 25px;
    }

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

    .score-value {
        font-size: 3rem;
    }

    .btn {
        width: auto;
        padding: 12px 24px;
    }

    .btn-cta-aggressive {
        width: auto;
        padding: 16px 32px;
        font-size: 1rem;
    }

    .btn-cta-final {
        width: auto;
        padding: 18px 36px;
        font-size: 1.1rem;
    }

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

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

    .security-verdict {
        flex-direction: row;
        text-align: left;
    }

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

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

    .conclusion-box {
        flex-direction: row;
        text-align: left;
        padding: 25px;
    }

    .conclusion-score {
        justify-content: flex-start;
    }

    .score-big {
        font-size: 3.5rem;
    }
}

/* ============================================
   DESKTOP BREAKPOINT (min-width: 768px)
   ============================================ */
@media (min-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    h3 {
        font-size: 1.25rem;
        margin: 2rem 0 1rem;
    }

    .header {
        padding: 20px 0;
    }

    .brand-icon {
        font-size: 1.5rem;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .site-tagline {
        font-size: 0.875rem;
    }

    .nav-list {
        gap: 5px;
        padding: 10px 0;
    }

    .nav-list a {
        padding: 8px 14px;
        font-size: 0.875rem;
    }

    .article {
        padding: 40px 0 60px;
    }

    .article-meta {
        gap: 15px;
        font-size: 0.875rem;
    }

    .article-intro {
        font-size: 1.125rem;
        line-height: 1.8;
    }

    .section {
        margin-bottom: 50px;
    }

    .verdict-box {
        padding: 30px;
        margin-bottom: 40px;
    }

    .verdict-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .btn-cta-aggressive {
        padding: 16px 32px;
        font-size: 1.05rem;
    }

    .btn-cta-final {
        padding: 20px 40px;
        font-size: 1.2rem;
    }

    .toc {
        padding: 20px 25px;
        margin-bottom: 40px;
    }

    .feature-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .security-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .security-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }

    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .conclusion-box {
        gap: 30px;
        padding: 30px;
        margin-bottom: 30px;
    }

    .score-big {
        font-size: 4rem;
    }

    .score-label {
        font-size: 1.5rem;
    }

    .footer {
        padding: 40px 0;
        margin-top: 60px;
    }
}

/* ============================================
   LARGE DESKTOP (min-width: 1024px)
   ============================================ */
@media (min-width: 1024px) {
    .security-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   LEGAL PAGE
   ============================================ */
.legal-page {
    padding: 40px 0;
    min-height: 60vh;
}

.legal-page h1 {
    margin-bottom: 30px;
}

.legal-page img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* ============================================
   LANGUAGE SELECTOR
   ============================================ */
.language-selector {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 8px 15px;
    text-align: right;
}

.language-selector select {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 6px 12px;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    color: var(--text);
}

.language-selector select:hover {
    border-color: var(--primary);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

@media (min-width: 768px) {
    .language-selector {
        padding: 10px 20px;
    }

    .language-selector select {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* ============================================
   FOOTER LANGUAGES
   ============================================ */
.footer-languages {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-languages p {
    margin-bottom: 10px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.lang-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: center;
}

.lang-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.lang-links a:hover {
    color: white;
}

/* ============================================
   PROMO BOX
   ============================================ */
.promo-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    padding: 30px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.promo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #ef4444, #f59e0b);
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-box h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.promo-story {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #f59e0b;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 25px;
}

.promo-story p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.promo-story p:last-child {
    margin-bottom: 0;
}

.promo-story em {
    color: #f59e0b;
    font-style: italic;
}

.promo-story strong {
    color: #fbbf24;
}

.promo-offer {
    text-align: center;
    margin-bottom: 25px;
}

.promo-offer p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.promo-limited {
    color: #f59e0b !important;
    font-weight: 600;
    font-size: 0.9rem;
}

.promo-cta {
    text-align: center;
}

.btn-promo {
    background: linear-gradient(90deg, #f59e0b, #ef4444) !important;
    font-size: 1.1rem;
    padding: 16px 32px;
    animation: pulse-promo 2s infinite;
}

@keyframes pulse-promo {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
}

.promo-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 12px;
}

@media (min-width: 768px) {
    .promo-box {
        padding: 40px;
    }

    .promo-box h2 {
        font-size: 1.8rem;
    }

    .promo-story {
        padding: 25px 30px;
    }
}
