/* Lightweight article layout for local SEO pages (fr, ltr) */
:root {
    --navy: #0f2557;
    --navy-deep: #08163a;
    --accent: #e8a020;
    --accent-light: #f5c060;
    --teal: #0ea5a0;
    --gray-600: #5a6478;
    --gray-900: #1a1f2e;
    --off-white: #f8f9fc;
    --radius-md: 14px;
    --shadow-md: 0 8px 32px rgba(15, 37, 87, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 17px; }

body {
    font-family: 'IBM Plex Sans Arabic', 'Segoe UI', system-ui, sans-serif;
    background: var(--off-white);
    color: var(--gray-900);
    line-height: 1.65;
}

.seo-skip {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.seo-skip:focus {
    position: fixed;
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 16px;
    background: var(--navy);
    color: #fff;
    z-index: 9999;
    border-radius: 8px;
}

.seo-topbar {
    background: var(--navy-deep);
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
}
.seo-topbar-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.seo-topbar a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
}
.seo-topbar a:hover { text-decoration: underline; }

.seo-header {
    background: #fff;
    border-bottom: 1px solid rgba(15, 37, 87, 0.08);
    padding: 16px 0;
    box-shadow: var(--shadow-md);
}
.seo-header-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.seo-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--navy);
    font-family: Syne, 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
}
.seo-logo img { height: 36px; width: auto; display: block; }

.seo-nav-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    font-size: 14px;
}
.seo-nav-inline a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 600;
}
.seo-nav-inline a:hover { color: var(--navy); }

.seo-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 64px;
}

.seo-main h1 {
    font-family: Syne, 'IBM Plex Sans Arabic', sans-serif;
    font-size: clamp(1.65rem, 4vw, 2.1rem);
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 12px;
}

.seo-lead {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(15, 37, 87, 0.1);
}

.seo-main h2 {
    font-family: Syne, 'IBM Plex Sans Arabic', sans-serif;
    font-size: 1.35rem;
    color: var(--navy);
    margin: 32px 0 12px;
}

.seo-main h3 {
    font-size: 1.05rem;
    color: var(--navy-deep);
    margin: 24px 0 8px;
}

.seo-main p { margin-bottom: 14px; }

.seo-main ul, .seo-main ol {
    margin: 0 0 16px 1.25rem;
}
.seo-main li { margin-bottom: 8px; }

.seo-cta-box {
    margin: 36px 0;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 37, 87, 0.1);
    box-shadow: var(--shadow-md);
}
.seo-cta-box p { margin-bottom: 16px; font-weight: 600; color: var(--navy); }

.seo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--accent);
    color: var(--navy-deep);
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    border: none;
    cursor: pointer;
}
.seo-btn:hover { filter: brightness(1.05); }

.seo-btn-secondary {
    display: inline-block;
    margin-inline-start: 12px;
    margin-top: 8px;
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
}
.seo-btn-secondary:hover { text-decoration: underline; }

.seo-related {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(15, 37, 87, 0.12);
    font-size: 15px;
}
.seo-related h2 { font-size: 1.1rem; margin-top: 0; }
.seo-related ul { list-style: none; margin: 12px 0 0; padding: 0; }
.seo-related li { margin-bottom: 10px; }
.seo-related a { color: var(--teal); font-weight: 600; text-decoration: none; }
.seo-related a:hover { text-decoration: underline; }

.seo-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.85);
    padding: 28px 20px;
    font-size: 14px;
    text-align: center;
}
.seo-footer a { color: var(--accent-light); text-decoration: none; }
.seo-footer a:hover { text-decoration: underline; }

.seo-footer-legal {
    margin-top: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}
