/* Styles partagés — page principale + archives de veille Qualiopi */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: 16px; line-height: 1.6; color: #1e293b; background: #ffffff; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

:root {
  --white: #ffffff; --gray-50: #f8fafc; --gray-100: #f1f5f9; --gray-200: #e2e8f0;
  --gray-400: #94a3b8; --gray-500: #64748b; --gray-900: #1e293b; --navy: #0f172a;
  --blue: #3b82f6; --blue-dark: #2563eb; --red: #e63946; --red-dark: #c72c3b;
  --green: #16a34a; --amber: #d97706;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 12px; --radius-sm: 8px;
}
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 100; background: #ffffff; border-bottom: 1px solid var(--gray-100); box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 32px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--gray-900); letter-spacing: -0.02em; }
.main-nav ul { display: flex; gap: 4px; align-items: center; flex-shrink: 0; flex-wrap: nowrap; gap: 2px; }
.main-nav a, .dropdown-toggle { display: inline-flex; align-items: center; gap: 4px; padding: 10px 12px; font-size: 15px; font-weight: 500; color: var(--gray-900); border-radius: var(--radius-sm); transition: background .15s, color .15s; white-space: nowrap; }
.main-nav a:hover, .dropdown-toggle:hover { background: var(--gray-50); color: var(--blue); }
.main-nav a.current { color: var(--blue); background: var(--gray-50); }
.dropdown { position: relative; }
.dropdown-toggle::after { content: ""; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-left: 4px; margin-top: -3px; transition: transform .2s; }
.dropdown.open .dropdown-toggle::after { transform: rotate(-135deg); margin-top: 2px; }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 280px; background: white; border-radius: var(--radius); box-shadow: var(--shadow-hover); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .2s; }
.dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 500; }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--gray-900); font-size: 15px; white-space: nowrap; flex-shrink: 0; }
.header-phone svg { color: var(--blue); }
.logo img { display: block; height: 60px; width: auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; font-size: 15px; font-weight: 600; border-radius: var(--radius-sm); transition: transform .15s, box-shadow .15s, background .15s; cursor: pointer; white-space: nowrap; line-height: 1.2; }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(230,57,70,0.3); }
.btn-secondary { background: var(--blue); color: white; }
.btn-secondary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(59,130,246,0.3); }
.btn-outline { background: white; color: var(--gray-900); border: 1.5px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--gray-900); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-900); transition: transform .2s, opacity .2s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* BREADCRUMB */
.breadcrumb { padding: 16px 0; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); font-size: 14px; color: var(--gray-500); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: "›"; color: var(--gray-400); font-size: 16px; }
.breadcrumb a { color: var(--gray-500); transition: color .15s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb [aria-current="page"] { color: var(--gray-900); font-weight: 600; }

/* HERO */
.veille-hero { padding: 64px 0 56px; background: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 100%); position: relative; overflow: hidden; }
.veille-hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.pillar-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: white; border: 1px solid var(--gray-200); border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--gray-900); }
.pillar-badge svg { color: var(--blue); }
.veille-hero h1 { font-size: clamp(30px, 4.5vw, 46px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px; color: var(--gray-900); max-width: 920px; }
.veille-hero h1 .accent { color: var(--red); }
.veille-hero .lead { font-size: 18px; color: var(--gray-500); line-height: 1.6; margin-bottom: 28px; max-width: 820px; }
.veille-hero-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; background: white; border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 18px; max-width: 820px; }
.veille-hero-meta > div { padding: 0 8px; }
.veille-hero-meta > div + div { border-left: 1px solid var(--gray-100); }
.veille-hero-meta strong { display: block; font-size: 16px; font-weight: 800; color: var(--gray-900); margin-bottom: 2px; line-height: 1.2; }
.veille-hero-meta span { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.veille-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* SECTIONS */
section { padding: 72px 0; }
section.alt { background: var(--gray-50); }
.section-header { max-width: 820px; margin: 0 0 40px; }
.eyebrow { display: inline-block; color: var(--blue); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
h2.section-title { font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 16px; }
.section-lead { font-size: 16px; color: var(--gray-500); line-height: 1.65; }

/* POLICY GRID */
.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.policy-card { background: white; border: 1px solid var(--gray-100); border-left: 4px solid var(--blue); padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.policy-card.red { border-left-color: var(--red); }
.policy-card.green { border-left-color: var(--green); }
.policy-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--gray-900); }
.policy-card p { font-size: 15px; color: var(--gray-500); line-height: 1.65; }
.policy-card .label { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 8px; }
.policy-card.red .label { color: var(--red); }
.policy-card.green .label { color: var(--green); }

/* SOURCES LIST */
.sources-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.source-item { background: white; border: 1px solid var(--gray-100); border-radius: var(--radius-sm); padding: 16px 18px; display: flex; gap: 14px; align-items: flex-start; transition: border-color .15s, box-shadow .15s; }
.source-item:hover { border-color: var(--blue); box-shadow: 0 2px 10px rgba(59,130,246,0.08); }
.source-item-icon { width: 36px; height: 36px; background: var(--gray-50); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.source-item-content { flex: 1; min-width: 0; }
.source-item-content strong { display: block; font-size: 14.5px; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.source-item-content span { display: block; font-size: 13px; color: var(--gray-500); line-height: 1.4; }
.source-item-content a { color: var(--blue-dark, #1e40af); font-weight: 600; font-size: 13px; word-break: break-all; text-decoration: underline; }
.source-item-content a:visited { color: var(--blue-dark, #1e40af); }
.source-item-content a:hover { color: var(--red, #dc2626); text-decoration: underline; }

/* VEILLE CARDS */
.veille-section-title { font-size: 22px; font-weight: 800; color: var(--gray-900); margin: 48px 0 8px; display: flex; align-items: center; gap: 14px; }
.veille-section-title:first-child { margin-top: 0; }
.veille-section-title .indic-chip { display: inline-flex; align-items: center; padding: 5px 11px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; background: var(--blue); color: white; }
.veille-section-title .indic-chip.c24 { background: var(--blue-dark); }
.veille-section-title .indic-chip.c25 { background: var(--red); }
.veille-section-subtitle { font-size: 15px; color: var(--gray-500); margin-bottom: 24px; line-height: 1.6; max-width: 820px; }

.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.veille-card { background: white; border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 24px 26px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-card); transition: transform .2s, box-shadow .2s; }
.veille-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.veille-card-head { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.veille-card-meta { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.veille-card-chip { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.veille-card-chip.indic { background: #dbeafe; color: var(--blue-dark); }
.veille-card-chip.indic.c24 { background: #e0e7ff; color: #4338ca; }
.veille-card-chip.indic.c25 { background: #fee2e2; color: var(--red-dark); }
.veille-card-chip.indic.c25-peda { background: #fef3c7; color: #92400e; }
.indic-chip.c24 { background: #e0e7ff; color: #4338ca; }
.indic-chip.c25-peda { background: #fef3c7; color: #92400e; }
.veille-card .card-sources { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 16px; }
.veille-card .card-sources li { font-size: 13.5px; line-height: 1.45; }
.veille-card .card-sources li::before { content: "•"; color: var(--blue); font-weight: 700; margin-right: 6px; }
.veille-card .card-sources a, .card-sources a { color: var(--blue-dark, #1e40af); text-decoration: underline; font-weight: 600; word-break: break-word; }
.veille-card .card-sources a:visited, .card-sources a:visited { color: var(--blue-dark, #1e40af); }
.veille-card .card-sources a:hover, .card-sources a:hover { color: var(--red, #dc2626); text-decoration: underline; }
.handicap-adapt-list a { color: var(--blue-dark, #1e40af); text-decoration: underline; font-weight: 600; }
.handicap-adapt-list a:visited { color: var(--blue-dark, #1e40af); }
.handicap-adapt-list a:hover { color: var(--red, #dc2626); text-decoration: underline; }
.veille-card-impact a { color: var(--blue-dark, #1e40af); text-decoration: underline; font-weight: 600; }
.veille-card-impact a:visited { color: var(--blue-dark, #1e40af); }
.veille-card-impact a:hover { color: var(--red, #dc2626); text-decoration: underline; }
@media (max-width: 768px) { .veille-card .card-sources { grid-template-columns: 1fr; } }
.veille-card-chip.status-new { background: #dcfce7; color: #15803d; }
.veille-card-chip.status-update { background: #fef3c7; color: var(--amber); }
.veille-card-chip.status-stable { background: var(--gray-100); color: var(--gray-500); }
.veille-card-date { font-size: 12px; color: var(--gray-500); font-weight: 600; }
.veille-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); line-height: 1.35; letter-spacing: -0.01em; }
.veille-card p.summary { font-size: 14.5px; color: var(--gray-500); line-height: 1.65; }
.veille-card-impact { background: var(--gray-50); border-left: 3px solid var(--blue); padding: 12px 16px; border-radius: 6px; font-size: 14px; color: var(--gray-900); line-height: 1.55; }
.veille-card-impact strong { font-weight: 700; color: var(--blue-dark); display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.veille-card-source { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--blue-dark); font-weight: 600; margin-top: auto; }
.veille-card-source a { word-break: break-word; }
.veille-card-source a:hover { text-decoration: underline; }

/* ARCHIVES NAV — liste des mois précédents */
.archives-nav { background: white; border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 28px 32px; box-shadow: var(--shadow-card); }
.archives-nav h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.archives-nav .archives-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.archives-nav a { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; color: var(--gray-900); transition: all .15s; }
.archives-nav a:hover { background: white; border-color: var(--blue); color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 2px 8px rgba(59,130,246,0.1); }
.archives-nav a.current { background: var(--blue); color: white; border-color: var(--blue); }
.archives-nav a.current:hover { background: var(--blue-dark); color: white; }
.archives-nav a .count { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.archives-nav a.current .count { color: rgba(255,255,255,0.85); }

/* ARCHIVE BANNER (sur page d'archive) */
.archive-banner { background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius); padding: 16px 20px; margin-bottom: 32px; font-size: 14.5px; color: #78350f; display: flex; align-items: flex-start; gap: 12px; }
.archive-banner svg { flex-shrink: 0; color: var(--amber); margin-top: 2px; }
.archive-banner strong { color: #78350f; }
.archive-banner a { color: var(--blue-dark); font-weight: 700; text-decoration: underline; }

/* METHODO STEPS */
.methodo-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.methodo-step { background: white; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-card); position: relative; }
.methodo-step-num { width: 42px; height: 42px; background: var(--blue); color: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; margin-bottom: 16px; }
.methodo-step h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; line-height: 1.3; }
.methodo-step p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* REGISTRE NOTICE */
.registre-notice { max-width: 820px; margin: 40px auto 0; background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%); border: 1px solid #bfdbfe; border-radius: var(--radius); padding: 28px 32px; text-align: center; }
.registre-notice h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.registre-notice p { font-size: 15px; color: var(--gray-500); line-height: 1.65; }
.registre-notice p strong { color: var(--blue-dark); }
.registre-notice .btn { margin-top: 16px; }

/* HANDICAP */
.handicap-block { background: linear-gradient(135deg, #fef2f2 0%, #ffffff 55%, #ffffff 100%); border: 1px solid #fecaca; border-radius: var(--radius); padding: 40px 48px; box-shadow: var(--shadow-card); }
.handicap-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: start; }
.handicap-block h3 { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 14px; line-height: 1.3; }
.handicap-block p { font-size: 15.5px; color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; }
.handicap-contact { background: white; border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 24px; margin-top: 8px; }
.handicap-contact h4 { font-size: 14px; font-weight: 700; color: var(--red-dark); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.handicap-contact-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid var(--gray-100); font-size: 14px; }
.handicap-contact-item:first-of-type { border-top: none; padding-top: 0; }
.handicap-contact-item svg { color: var(--red); flex-shrink: 0; }
.handicap-contact-item strong { color: var(--gray-900); font-weight: 700; }
.handicap-contact-item a { color: var(--blue-dark); font-weight: 600; word-break: break-all; }
.handicap-contact-item a:hover { text-decoration: underline; }
.handicap-adapt-list { list-style: none; padding: 0; }
.handicap-adapt-list li { position: relative; padding-left: 22px; font-size: 14.5px; color: var(--gray-500); line-height: 1.6; margin-bottom: 8px; }
.handicap-adapt-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 700; }

/* CTA FINAL */
.cta-final { background: var(--navy); color: white; padding: 80px 0; }
.cta-final .section-header { text-align: center; margin: 0 auto 32px; }
.cta-final h2.section-title, .cta-final .section-lead { color: white; }
.cta-final .section-lead { color: rgba(255,255,255,0.75); }
.cta-final .eyebrow { color: #93c5fd; }
.cta-final-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* FOOTER */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 32px; font-size: 14px; line-height: 1.7; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-col h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { transition: color .15s; }
.footer-col a:hover { color: white; }
.footer-brand { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.65); }
.footer-intro { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.footer-legal-list { list-style: none; padding: 0; margin: 0 0 18px; }
.footer-legal-list li { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.55); padding-bottom: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-weight: 500; }
.footer-qualiopi { display: flex; align-items: center; gap: 24px; background: rgba(255,255,255,0.08); padding: 24px 28px; border-radius: 8px; margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.12); }
.footer-qualiopi picture { flex-shrink: 0; display: block; }
.footer-qualiopi img { height: 100px; width: auto; display: block; }
.footer-qualiopi-text { display: flex; flex-direction: column; gap: 4px; line-height: 1.5; }
.footer-qualiopi-text strong { color: #fff; font-size: 13px; font-weight: 700; }
.footer-qualiopi-text span { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600; }
.footer-qualiopi-text small { color: rgba(255,255,255,0.55); font-size: 11px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; }
.footer-certifications { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; color: white; font-size: 12px; font-weight: 600; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .policy-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .sources-grid { grid-template-columns: 1fr; }
  .methodo-steps { grid-template-columns: repeat(2, 1fr); }
  .handicap-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .veille-hero-meta { grid-template-columns: repeat(2, 1fr); }
  .veille-hero-meta > div:nth-child(3) { border-left: none; border-top: 1px solid var(--gray-100); padding-top: 10px; margin-top: 4px; }
}
@media (max-width: 960px) {
  .menu-toggle { display: flex; }
  .main-nav { position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: white; padding: 24px; transform: translateX(-100%); transition: transform .3s; overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a, .dropdown-toggle { padding: 14px 16px; font-size: 16px; }
  .dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding-left: 16px; max-height: 0; overflow: hidden; transition: max-height .3s; }
  .dropdown.open .dropdown-menu { max-height: 500px; }
  .header-phone { display: none; }
  .header-right .btn { padding: 10px 16px; font-size: 14px; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .veille-hero { padding: 40px 0 48px; }
  .veille-hero-meta { grid-template-columns: 1fr; }
  .veille-hero-meta > div + div { border-left: none; border-top: 1px solid var(--gray-100); padding-top: 10px; margin-top: 4px; }
  .methodo-steps { grid-template-columns: 1fr; }
  .handicap-block { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-qualiopi { flex-direction: column; align-items: flex-start; }
}
