/* SALAÜN ASSURANCES - STYLES V2 */
:root {
    --bg: #0a0c10;
    --bg-alt: #0d1017;
    --card: #12151c;
    --accent: #c9a962;
    --accent-light: #d4bc7e;
    --text: #ffffff;
    --muted: #9ca3af;
    --border: rgba(255,255,255,0.08);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; transition: all 0.3s; }
img { max-width: 100%; height: auto; }

/* HEADER */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,12,16,0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border); padding: 0.75rem 0;
}
.container { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 40px; }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; list-style: none; gap: 1.5rem; }
.nav-link { font-size: 0.9rem; color: var(--muted); padding: 0.5rem 0; }
.nav-link:hover { color: var(--accent); }

/* DROPDOWN MENU */
.nav-item { position: relative; }
.nav-item .nav-link { display: flex; align-items: center; gap: 0.3rem; }
.nav-item .nav-link::after { content: '▾'; font-size: 0.7rem; opacity: 0.6; }
.dropdown {
    position: absolute; top: 100%; left: -0.5rem; min-width: 220px;
    background: var(--card); border: 1px solid var(--border); border-radius: 8px;
    padding: 0.5rem 0; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
    display: block; padding: 0.6rem 1rem; font-size: 0.85rem; color: var(--muted);
    transition: all 0.2s;
}
.dropdown a:hover { background: rgba(201,169,98,0.1); color: var(--accent); }

.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.7rem 1.25rem; font-size: 0.85rem; font-weight: 500;
    border-radius: 6px; border: none; cursor: pointer; transition: all 0.3s;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-small { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-switch { background: rgba(201,169,98,0.1); border: 1px solid rgba(201,169,98,0.3); color: var(--accent); }
.btn-switch:hover { background: rgba(201,169,98,0.2); }
.btn-client { 
    background: rgba(201,169,98,0.15); 
    border: 1px solid var(--accent); 
    color: var(--accent); 
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}
.btn-client:hover { background: var(--accent); color: var(--bg); }
.btn-client svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.menu-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-toggle span { width: 22px; height: 2px; background: var(--text); }

@media (max-width: 1200px) {
    .nav { display: none; }
    .menu-toggle { display: flex; }
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; max-width: 380px; height: 100vh;
    background: var(--bg); z-index: 1001; padding: 0; transition: right 0.4s ease;
    overflow-y: auto; box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}
.mobile-menu.active { right: 0; }
.mobile-menu-close { 
    position: absolute; top: 1rem; right: 1rem; background: none; border: none; 
    color: var(--text); font-size: 1.5rem; cursor: pointer; z-index: 10;
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: background 0.3s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.1); }
.mobile-menu-header {
    padding: 1.5rem; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 1rem;
}
.mobile-menu-header img { height: 35px; }
.mobile-nav-links { list-style: none; padding: 1rem 0; margin: 0; }
.mobile-nav-links > li { border-bottom: 1px solid var(--border); }
.mobile-nav-links > li > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.5rem; font-size: 1rem; color: var(--text);
    transition: all 0.3s;
}
.mobile-nav-links > li > a:hover { background: rgba(201,169,98,0.1); color: var(--accent); }
.mobile-nav-links > li > a.has-submenu::after { content: '+'; font-size: 1.2rem; color: var(--muted); }
.mobile-nav-links > li.open > a.has-submenu::after { content: '−'; }
.mobile-submenu {
    display: none; background: rgba(0,0,0,0.2); padding: 0.5rem 0;
}
.mobile-nav-links > li.open .mobile-submenu { display: block; }
.mobile-submenu a {
    display: block; padding: 0.75rem 2.5rem; font-size: 0.9rem;
    color: var(--muted); transition: all 0.3s;
}
.mobile-submenu a:hover { color: var(--accent); background: rgba(201,169,98,0.05); }
.mobile-menu-footer {
    padding: 1.5rem; border-top: 1px solid var(--border);
    margin-top: auto;
}
.mobile-menu-footer .btn { width: 100%; justify-content: center; margin-bottom: 0.75rem; }
.mobile-menu-contact { text-align: center; padding-top: 1rem; }
.mobile-menu-contact a { color: var(--accent); font-size: 0.9rem; }

/* Mobile overlay */
.mobile-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); z-index: 1000;
    opacity: 0; visibility: hidden; transition: all 0.3s;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav-links { list-style: none; margin-top: 3rem; }
.mobile-nav-links li { margin-bottom: 0.75rem; }
.mobile-nav-links a { font-size: 1.1rem; display: block; padding: 0.6rem 0; border-bottom: 1px solid var(--border); }

/* PAGE HEADER */
.page-header {
    padding: calc(80px + 3rem) 0 3rem;
    background: var(--bg-alt); border-bottom: 1px solid var(--border);
}
.page-header-content { max-width: 800px; }
.section-tag {
    display: inline-block; font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.15; margin-bottom: 1rem; }
.text-accent { color: var(--accent); font-style: italic; }
.page-header p { font-size: 1rem; color: var(--muted); line-height: 1.7; }

/* SECTIONS */
section { padding: 4rem 0; }
h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 400; margin-bottom: 1rem; }
h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; margin-bottom: 0.75rem; color: var(--accent); }
p { color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }

/* GRIDS */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin: 1.5rem 0; }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; margin: 1.5rem 0; }

.product-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 10px;
    padding: 1.5rem; transition: all 0.3s;
}
.product-card:hover { border-color: rgba(201,169,98,0.3); transform: translateY(-3px); }

.brand-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 8px;
    padding: 1rem; text-align: center; transition: all 0.3s;
}
.brand-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.brand-card h4 { font-size: 0.9rem; margin: 0; color: var(--text); }

.product-features { list-style: none; }
.product-features li {
    padding: 0.5rem 0; color: var(--muted); border-bottom: 1px solid var(--border);
    display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem;
}
.product-features li:last-child { border-bottom: none; }
.product-features li::before { content: ''; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; margin-top: 0.5rem; flex-shrink: 0; }

.product-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--accent); font-weight: 500; margin-top: 0.75rem; font-size: 0.9rem; }
.product-link:hover { gap: 0.8rem; }

/* ADVANTAGES */
.advantages { margin: 2rem 0; }
.advantage { display: flex; gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.advantage:last-child { border-bottom: none; }
.advantage-number { font-family: var(--font-display); font-size: 1.75rem; color: var(--accent); opacity: 0.5; }
.advantage-content h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--text); }
.advantage-content p { margin-bottom: 0; font-size: 0.9rem; }

/* CTA */
.cta { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-card {
    background: linear-gradient(135deg, var(--card) 0%, rgba(201,169,98,0.05) 100%);
    border: 1px solid rgba(201,169,98,0.2); border-radius: 12px; padding: 3rem; text-align: center;
}
.cta-content { max-width: 550px; margin: 0 auto; }
.cta-content h2 { margin-bottom: 0.75rem; }
.cta-content p { margin-bottom: 1.5rem; }
.cta-actions { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }

/* FOOTER */
.footer { background: var(--bg-alt); padding: 3rem 0 1.5rem; border-top: 1px solid var(--border); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 1.5rem; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--muted); font-size: 0.8rem; margin: 0; opacity: 0.7; }
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a { color: var(--muted); font-size: 0.8rem; opacity: 0.7; }
.footer-legal a:hover { color: var(--accent); opacity: 1; }

/* FAQ */
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 8px; margin-bottom: 0.75rem; }
.faq-item summary { padding: 1rem; cursor: pointer; font-weight: 500; color: var(--accent); list-style: none; font-size: 0.95rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-item p { padding: 1rem; margin: 0; font-size: 0.9rem; }

/* HERO IMAGE */
.page-header-image {
    padding: calc(80px + 4rem) 0 4rem;
    background: linear-gradient(135deg, rgba(10,12,16,0.92) 0%, rgba(10,12,16,0.85) 100%), url('immeuble-prestige.webp') center/cover no-repeat;
    border-bottom: 1px solid var(--border);
}
.page-header-image .page-header-content { max-width: 700px; }

.page-header-particuliers {
    padding: calc(80px + 4rem) 0 4rem;
    background: linear-gradient(135deg, rgba(10,12,16,0.88) 0%, rgba(10,12,16,0.82) 100%), url('immeuble-prestige.webp') center/cover no-repeat;
    border-bottom: 1px solid var(--border);
}

.page-header-entreprises {
    padding: calc(80px + 4rem) 0 4rem;
    background: linear-gradient(135deg, rgba(10,12,16,0.88) 0%, rgba(10,12,16,0.82) 100%), url('immeuble-moderne.webp') center/cover no-repeat;
    border-bottom: 1px solid var(--border);
}

/* FEATURE ITEMS */
.features-list { display: grid; gap: 1.5rem; margin: 2rem 0; }
.feature-item {
    background: var(--card); border: 1px solid var(--border); border-radius: 10px;
    padding: 1.5rem; transition: all 0.3s;
}
.feature-item:hover { border-color: rgba(201,169,98,0.3); }
.feature-item h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; }
.feature-item p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* STYLED LIST */
.styled-list { list-style: none; margin: 1.5rem 0; }
.styled-list li {
    padding: 0.75rem 0; border-bottom: 1px solid var(--border);
    color: var(--muted); font-size: 0.95rem;
}
.styled-list li:last-child { border-bottom: none; }
.styled-list li strong { color: var(--text); }

/* ==================== RESPONSIVE ENHANCEMENTS ==================== */
@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    
    .page-header { padding: calc(70px + 2rem) 0 2rem; }
    .page-header h1 { font-size: 1.75rem; }
    .page-header p { font-size: 0.9rem; }
    
    section { padding: 2.5rem 0; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    
    .products-grid { grid-template-columns: 1fr; gap: 1rem; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    
    .product-card { padding: 1.25rem; }
    .brand-card { padding: 0.75rem; font-size: 0.8rem; }
    
    .cta-card { padding: 1.5rem; }
    .cta-actions { flex-direction: column; gap: 0.75rem; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-legal { justify-content: center; }
    
    .styled-list li { padding: 0.6rem 0; font-size: 0.9rem; }
    
    /* Hide dropdown arrows on mobile since we use mobile menu */
    .nav-item .nav-link::after { display: none; }
}

@media (max-width: 480px) {
    .page-header h1 { font-size: 1.5rem; }
    .brands-grid { grid-template-columns: 1fr; }
    
    .btn { padding: 0.6rem 1rem; font-size: 0.8rem; }
    .btn-primary { padding: 0.75rem 1.25rem; }
}

/* Improve touch targets on mobile */
@media (hover: none) and (pointer: coarse) {
    .btn { min-height: 44px; }
    .nav-link { min-height: 44px; display: flex; align-items: center; }
    .product-card { cursor: pointer; }
    .mobile-nav-links > li > a { min-height: 52px; display: flex; align-items: center; }
}

/* Page header CTA button */
.page-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--bg);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}
.page-header-cta:hover {
    background: #d4bc7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 98, 0.4);
}
@media (max-width: 768px) {
    .page-header-cta {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* ==================== AUTO HERO IMAGES ==================== */
.page-header-auto {
    background: linear-gradient(180deg, rgba(10,12,16,0.55) 0%, rgba(10,12,16,0.9) 100%),
                url('auto.webp') center 60% / cover no-repeat;
}
.page-header-auto-sportive {
    background: linear-gradient(180deg, rgba(10,12,16,0.5) 0%, rgba(10,12,16,0.9) 100%),
                url('auto-sportive.webp') center 65% / cover no-repeat;
}
.page-header-auto-collection {
    background: linear-gradient(180deg, rgba(10,12,16,0.45) 0%, rgba(10,12,16,0.9) 100%),
                url('auto-collection.webp') center 75% / cover no-repeat;
}
.page-header-auto-prestige {
    background: linear-gradient(180deg, rgba(10,12,16,0.45) 0%, rgba(10,12,16,0.9) 100%),
                url('auto-prestige.webp') center 50% / cover no-repeat;
}

/* Mobile: adjust focus point */
@media (max-width: 768px) {
    .page-header-auto {
        background-position: center 55%;
    }
    .page-header-auto-sportive {
        background-position: center 60%;
    }
    .page-header-auto-collection {
        background-position: center 70%;
    }
    .page-header-auto-prestige {
        background-position: center 45%;
    }
}

/* ==================== MOTO HERO IMAGE ==================== */
.page-header-moto {
    background: linear-gradient(180deg, rgba(10,12,16,0.5) 0%, rgba(10,12,16,0.9) 100%),
                url('moto.webp') center 50% / cover no-repeat;
}

/* ==================== NAUTISME HERO IMAGES ==================== */
.page-header-nautisme {
    background: linear-gradient(180deg, rgba(10,12,16,0.4) 0%, rgba(10,12,16,0.9) 100%),
                url('nautisme.webp') center 70% / cover no-repeat;
}
.page-header-nautisme-jet-ski {
    background: linear-gradient(180deg, rgba(10,12,16,0.35) 0%, rgba(10,12,16,0.9) 100%),
                url('nautisme-jet-ski.webp') center 60% / cover no-repeat;
}
.page-header-nautisme-voilier {
    background: linear-gradient(180deg, rgba(10,12,16,0.4) 0%, rgba(10,12,16,0.9) 100%),
                url('nautisme-voilier.webp') center 40% / cover no-repeat;
}
.page-header-nautisme-bateau-moteur {
    background: linear-gradient(180deg, rgba(10,12,16,0.4) 0%, rgba(10,12,16,0.9) 100%),
                url('nautisme-bateau-moteur.webp') center 50% / cover no-repeat;
}
.page-header-nautisme-yacht {
    background: linear-gradient(180deg, rgba(10,12,16,0.35) 0%, rgba(10,12,16,0.9) 100%),
                url('nautisme-yacht.webp') center 55% / cover no-repeat;
}
.page-header-nautisme-mega-yacht {
    background: linear-gradient(180deg, rgba(10,12,16,0.4) 0%, rgba(10,12,16,0.9) 100%),
                url('nautisme-mega-yacht.webp') center 50% / cover no-repeat;
}

/* ==================== PATRIMOINE HERO IMAGES ==================== */
.page-header-patrimoine-art {
    background: linear-gradient(180deg, rgba(10,12,16,0.3) 0%, rgba(10,12,16,0.85) 100%),
                url('patrimoine-art.webp') center 50% / cover no-repeat;
}
.page-header-patrimoine-montres {
    background: linear-gradient(180deg, rgba(10,12,16,0.4) 0%, rgba(10,12,16,0.9) 100%),
                url('patrimoine-montres.webp') center 45% / cover no-repeat;
}
.page-header-patrimoine-bijoux {
    background: linear-gradient(180deg, rgba(10,12,16,0.35) 0%, rgba(10,12,16,0.9) 100%),
                url('patrimoine-bijoux.webp') center 50% / cover no-repeat;
}
.page-header-patrimoine-cave {
    background: linear-gradient(180deg, rgba(10,12,16,0.3) 0%, rgba(10,12,16,0.85) 100%),
                url('patrimoine-cave.webp') center 50% / cover no-repeat;
}

/* Mobile adjustments for new images */
@media (max-width: 768px) {
    .page-header-moto { background-position: center 45%; }
    .page-header-nautisme { background-position: center 65%; }
    .page-header-nautisme-jet-ski { background-position: center 55%; }
    .page-header-nautisme-voilier { background-position: center 35%; }
    .page-header-nautisme-bateau-moteur { background-position: center 45%; }
    .page-header-nautisme-yacht { background-position: center 50%; }
    .page-header-nautisme-mega-yacht { background-position: center 45%; }
    .page-header-patrimoine-art { background-position: center 50%; }
    .page-header-patrimoine-montres { background-position: center 40%; }
    .page-header-patrimoine-bijoux { background-position: center 45%; }
    .page-header-patrimoine-cave { background-position: center 50%; }
}

/* ==================== IMMOBILIER HERO IMAGES ==================== */
.page-header-immobilier-locatif {
    background: linear-gradient(180deg, rgba(10,12,16,0.45) 0%, rgba(10,12,16,0.9) 100%),
                url('immobilier-locatif.webp') center 50% / cover no-repeat;
}
.page-header-immobilier-rapport {
    background: linear-gradient(180deg, rgba(10,12,16,0.4) 0%, rgba(10,12,16,0.9) 100%),
                url('immobilier-rapport.webp') center 60% / cover no-repeat;
}
.page-header-immobilier-holding {
    background: linear-gradient(180deg, rgba(10,12,16,0.35) 0%, rgba(10,12,16,0.9) 100%),
                url('immobilier-holding.webp') center 55% / cover no-repeat;
}
.page-header-immobilier-tertiaire {
    background: linear-gradient(180deg, rgba(10,12,16,0.45) 0%, rgba(10,12,16,0.9) 100%),
                url('immobilier-tertiaire.webp') center 50% / cover no-repeat;
}
.page-header-immobilier-scpi {
    background: linear-gradient(180deg, rgba(10,12,16,0.4) 0%, rgba(10,12,16,0.9) 100%),
                url('immobilier-scpi.webp') center 55% / cover no-repeat;
}

/* ==================== AVIATION HERO IMAGES ==================== */
.page-header-aviation-tourisme {
    background: linear-gradient(180deg, rgba(10,12,16,0.4) 0%, rgba(10,12,16,0.9) 100%),
                url('aviation-tourisme.webp') center 55% / cover no-repeat;
}
.page-header-aviation-affaires {
    background: linear-gradient(180deg, rgba(10,12,16,0.35) 0%, rgba(10,12,16,0.9) 100%),
                url('aviation-affaires.webp') center 60% / cover no-repeat;
}
.page-header-aviation-helicoptere {
    background: linear-gradient(180deg, rgba(10,12,16,0.35) 0%, rgba(10,12,16,0.9) 100%),
                url('aviation-helicoptere.webp') center 55% / cover no-repeat;
}
.page-header-aviation-ulm {
    background: linear-gradient(180deg, rgba(10,12,16,0.3) 0%, rgba(10,12,16,0.9) 100%),
                url('aviation-ulm.png') center 50% / cover no-repeat;
}

/* Mobile adjustments for immobilier & aviation */
@media (max-width: 768px) {
    .page-header-immobilier-locatif { background-position: center 45%; }
    .page-header-immobilier-rapport { background-position: center 55%; }
    .page-header-immobilier-holding { background-position: center 50%; }
    .page-header-immobilier-tertiaire { background-position: center 45%; }
    .page-header-immobilier-scpi { background-position: center 50%; }
    .page-header-aviation-tourisme { background-position: center 50%; }
    .page-header-aviation-affaires { background-position: center 55%; }
    .page-header-aviation-helicoptere { background-position: center 50%; }
    .page-header-aviation-ulm { background-position: center 50%; }
}

/* ==================== SEO CONTENT SECTIONS ==================== */
.seo-content {
    background: var(--surface);
    padding: 4rem 0;
}
.seo-content h2 {
    color: var(--text);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.seo-content h2:first-child {
    margin-top: 0;
}
.seo-content h3 {
    color: var(--accent);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}
.seo-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.seo-content ul {
    color: var(--text-muted);
    padding-left: 0;
    list-style: none;
}
.seo-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}
.seo-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}
.seo-content strong {
    color: var(--text);
}

@media (max-width: 768px) {
    .seo-content {
        padding: 3rem 0;
    }
    .seo-content h2 {
        font-size: 1.3rem;
    }
}

/* ==================== CERTIFICATIONS SECTION ==================== */
.certifications-bar {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--surface);
}
.certifications-bar .container {
    max-width: 900px;
}
.certifications-bar-title {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}
.certifications-bar-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.certifications-bar-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
}
.certifications-bar-logos a:hover {
    opacity: 1;
    transform: scale(1.05);
}
.certifications-bar-logos img {
    height: 45px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .certifications-bar-logos {
        gap: 1rem;
    }
    .certifications-bar-logos img {
        height: 35px;
        max-width: 90px;
    }
}

/* ==================== MEGA MENU ENTREPRISES ==================== */
.nav-item {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-column {
    min-width: 250px;
}

.mega-menu-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.mega-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-menu-links a {
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: block;
}

.mega-menu-links a:hover {
    background: rgba(201,169,98,0.1);
    color: var(--accent);
    padding-left: 1rem;
}

/* Arrow indicator for dropdown */
.nav-link.has-dropdown::after {
    content: '▾';
    font-size: 0.7rem;
    margin-left: 0.3rem;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .mega-menu {
        display: none;
    }
    .nav-link.has-dropdown::after {
        display: none;
    }
}
