/*
 * Artisan Pro - Style basé sur la structure exacte de metal2000.fr
 * Classes CSS identiques, palette couleurs adaptée artisan
 */

/* ===== VARIABLES (identiques à metal2000.fr) ===== */
:root {
  --primary700: #0b3e8e;
  --primary500: #0f52ba;
  --primary400: #2f7aee;
  --primary300: #99c1ff;
  --primary200: #e5efff;
  --primary100: #f5f9ff;
  --secondary700: #f54900;
  --secondary500: #ff5800;
  --secondary400: #ff6716;
  --secondary300: #ffcdb3;
  --secondary100: #fff2eb;
  --neutral900: #0e121b;
  --neutral800: #151b29;
  --neutral700: #282f3e;
  --neutral600: #454d5f;
  --neutral500: #6c7589;
  --neutral400: #afbbca;
  --neutral300: #dde4ee;
  --neutral200: #ecf1f8;
  --neutral100: #f4f7fb;
  --neutral50: #f9fafb;
  --blue-sapphire: var(--primary500);
  --blue-dark: var(--primary700);
  --blue-light: var(--primary100);
  --orange: var(--secondary500);
  --orange-dark: var(--secondary700);
  --orange-light: var(--secondary100);
  --white: #fff;
  --whiteSecondary: rgba(255,255,255,0.7);
  --bg-text: #f2f5f7;
}

/* ===== BASE (copié de metal2000.fr) ===== */
* { font-family: Arial, sans-serif; box-sizing: border-box; }
html { overflow-x: hidden; }
body { margin: 0; padding: 0; color: var(--neutral800); }
a { text-decoration: none; }
img { display: block; }
h1, h1 strong, h1 b { font-family: Roboto, sans-serif; font-weight: 900; font-size: 32px; }
h2, h2 strong, h2 b { font-family: Roboto, sans-serif; font-weight: 700; font-size: 24px; }
h3, h3 strong, h3 b { font-family: Roboto, sans-serif; font-weight: 700; font-size: 20px; }
h4, h4 strong, h4 b { font-family: Roboto, sans-serif; font-weight: 700; font-size: 18px; }
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }

.container { width: 100%; max-width: 1280px; margin: auto; }
.container-wrapper { padding: 0 16px; display: flex; justify-content: center; transition: 0.15s ease-in; }

/* ===== TOP HEADER BAR ===== */
.top-header-bar { display: none; background-color: var(--neutral800); color: var(--white); }
.top-header-bar .container { display: flex; justify-content: space-between; align-items: center; height: 44px; gap: 16px; }
.top-header-bar .top-header-section { display: flex; align-items: center; gap: 16px; }
.top-header-bar .top-header-section.first-element { flex: 1; }
.top-header-bar ul.parent-list { display: flex; gap: 16px; }
.top-header-bar ul.parent-list li.nav1 a { color: var(--neutral300); font-size: 13px; font-weight: 500; text-decoration: none; transition: color 0.15s; }
.top-header-bar ul.parent-list li.nav1 a:hover { color: var(--white); }
.top-header-bar ul.parent-list li.nav1.new a { color: var(--secondary400); }
.top-header-bar .top-header-section > p { font-size: 12px; color: var(--neutral400); }
.top-header-bar .top-header-section > p strong { color: var(--white); }
.top-header-bar .top-header-section > a { color: var(--neutral300); font-size: 13px; font-weight: 500; text-decoration: none; }
.top-header-bar .top-header-section > a:hover { color: var(--white); }
.top-header-bar .top-header-section a.cta { display: flex; align-items: center; gap: 8px; background-color: var(--orange); color: var(--white); font-weight: 700; font-size: 14px; padding: 8px 16px; border-radius: 50px; }
.top-header-bar .top-header-section a.cta svg { fill: var(--white); width: 16px; height: 16px; }

/* ===== MAIN HEADER ===== */
.main-header { background-color: var(--white); align-items: center; position: sticky; top: 0; left: 0; z-index: 900; }
.main-header:not(.active) { box-shadow: rgba(8,46,104,0.05) 0 2px 16px 0; }
.main-header img { pointer-events: none; }
.main-header .container { display: flex; justify-content: space-between; align-items: center; height: 56px; position: relative; }
.main-header .left { display: flex; align-items: center; }
.main-header .right { display: flex; align-items: center; }
.main-header .logo-metal { display: flex; align-items: center; text-decoration: none; }
.main-header .logo-metal svg { height: 22px; width: auto; }
.main-header .menu-btn { min-height: 40px; max-height: 40px; min-width: 40px; max-width: 40px; border-radius: 50%; border: 0; cursor: pointer; background-color: var(--white); display: flex; align-items: center; justify-content: center; }
.main-header .menu-btn svg { fill: var(--neutral600); }
.main-header .menu-items { display: none; }
.main-header .menu-items ul.parent-list { display: flex; list-style: none; margin: 0; padding: 0; gap: 20px; }
.main-header .menu-items ul.parent-list li.nav1 > a { color: var(--neutral700); font-size: 15px; font-weight: 600; text-decoration: none; transition: color 0.15s; padding: 4px 0; }
.main-header .menu-items ul.parent-list li.nav1 > a:hover { color: var(--primary500); }
.main-header .right-section { display: flex; align-items: center; gap: 8px; }
.main-header .header-cta { display: flex; align-items: center; gap: 8px; background-color: var(--orange); color: var(--white); font-weight: 700; font-size: 14px; padding: 10px 18px; border-radius: 50px; text-decoration: none; white-space: nowrap; }
.main-header .header-cta svg { width: 16px; height: 16px; fill: var(--white); }

/* ===== HERO SECTION (copié de metal2000.fr) ===== */
.container-wrapper.hero-section { background-color: var(--primary500); color: var(--white); position: relative; padding: 32px 0 56px; overflow: hidden; }
.hero-section .backdrop-image { position: absolute; inset: 0; opacity: 0.05; pointer-events: none; }
.hero-section .backdrop-image img { height: 100%; width: 100%; object-fit: cover; }
.hero-section .container { display: flex; flex-direction: column; }
.hero-section .hero-content { display: flex; flex-direction: column; }
.hero-section .hero-content .mobile-pre-title { text-align: center; }
.hero-section .hero-content .desktop-pre-title { display: none; }
.mobile-pre-title * { padding: 0; margin: 0; }
.mobile-pre-title { margin-bottom: 16px; }
.mobile-pre-title h1 { font-size: 20px; color: rgba(255,255,255,0.85); font-weight: 500; }
.mobile-pre-title h1 strong { font-size: 20px; color: var(--white); }
.hero-section .graphics-container { width: 100%; overflow: hidden; border-radius: 16px; }
.hero-section .graphics-container svg, .hero-section .graphics-container img { width: 100%; height: auto; display: block; }
.hero-section .content { margin: 16px 0 32px; }
.hero-title { overflow: hidden; }
.hero-title h2 { font-weight: 900; font-size: 32px; line-height: 37.5px; padding: 0; margin: 8px 0 0; font-family: Roboto, sans-serif; color: var(--white); text-align: center; }
.hero-text { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 24px; margin: 12px 0; text-align: center; }
.hero-actions { display: flex; flex-direction: column; align-items: center; }
.hero-button { display: flex; justify-content: center; align-items: center; padding: 0 24px; height: 56px; border-radius: 50px; color: var(--white); text-decoration: none; font-size: 18px; font-weight: 700; margin-top: 16px; max-width: 280px; width: 100%; gap: 10px; }
.hero-button.main { background-color: var(--orange); }
.hero-button.secondary { background-color: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.5); }
.hero-button svg { width: 22px; height: 22px; fill: var(--white); flex-shrink: 0; }

/* Hero footer - logos/badges below hero */
.hero-section .hero-footer { position: relative; margin-top: 32px; }
.hero-section .hero-footer .images-wrapper { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-footer-badge { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 8px 14px; font-size: 12px; color: rgba(255,255,255,0.85); font-weight: 600; }

/* ===== CARTES D'INFORMATIONS (copié de metal2000.fr) ===== */
.container-wrapper.cartes-d-informations { overflow: hidden; margin: 16px 0; }
.container-wrapper.cartes-d-informations .container { overflow-y: auto; display: flex; gap: 12px; scrollbar-width: none; }
.container-wrapper.cartes-d-informations .container::-webkit-scrollbar { display: none; }
.container-wrapper.cartes-d-informations .information-card { background-color: var(--primary100); min-width: calc(100vw - 62px); max-width: calc(100vw - 62px); padding: 16px; border-radius: 12px; display: flex; align-items: center; gap: 14px; }
.container-wrapper.cartes-d-informations .information-card > div { margin: auto 0; }
.container-wrapper.cartes-d-informations .information-card .icon-card { width: 48px; height: 48px; flex-shrink: 0; background: var(--primary200); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.container-wrapper.cartes-d-informations .information-card .icon-card svg { width: 24px; height: 24px; fill: var(--primary500); }
.container-wrapper.cartes-d-informations .information-card .card-title { margin: 0 0 4px; padding: 0; font-weight: 700; font-size: 16px; line-height: 20px; color: var(--primary500); }
.container-wrapper.cartes-d-informations .information-card .card-description { font-size: 14px; line-height: 20px; color: var(--neutral600); margin: 0; }

/* ===== NOS METIERS (copié de metal2000.fr) ===== */
.nos-metiers { padding: 0; }
.nos-metiers .container { padding: 32px 0; }
.nos-metiers .nos-metiers-content { display: flex; flex-direction: column; gap: 24px; }
.nos-metiers .col.col1 { position: relative; }
.nos-metiers .expertise { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.9); border-radius: 10px; padding: 10px 14px; z-index: 2; text-align: center; }
.nos-metiers .expertise .bold { font-weight: 900; font-size: 22px; color: var(--primary500); margin: 0; line-height: 1; }
.nos-metiers .expertise p:last-child { font-size: 12px; color: var(--neutral600); margin: 0; }
.nos-metiers .image-services { position: relative; }
.nos-metiers .service-image { display: none; }
.nos-metiers .service-image.active { display: block; }
.nos-metiers .service-image img, .nos-metiers .service-image svg { border-radius: 16px; display: block; width: 100%; max-height: 260px; min-height: 200px; object-fit: cover; }
.nos-metiers .col.col2 { }
.nos-metiers h2.titre { font-family: Roboto, sans-serif; font-weight: 900; font-size: 28px; line-height: 1.2; color: var(--neutral800); margin: 0 0 16px; }
.nos-metiers h2.titre .title-dot::before { content: "·"; color: var(--orange); margin-right: 4px; }
.nos-metiers .description p { font-size: 15px; line-height: 24px; color: var(--neutral600); margin-bottom: 12px; }
.nos-metiers .liste-services { display: flex; gap: 8px; overflow-x: auto; padding: 16px 0; scrollbar-width: none; }
.nos-metiers .liste-services::-webkit-scrollbar { display: none; }
.nos-metiers label { font-weight: 400; line-height: 26px; border-radius: 64px; background-color: rgb(246,249,252); box-shadow: rgba(8,46,104,0.1) 0 4px 8px 0; padding: 10px 16px; text-align: center; display: block; white-space: nowrap; cursor: pointer; transition: all 0.15s; font-size: 14px; color: var(--neutral700); }
.nos-metiers .service-radio:checked + label, .nos-metiers label.active { background-color: var(--primary500); color: var(--white); }
.nos-metiers .service-radio { display: none; }
.nos-metiers .h2.titreDesktop { display: none; }

/* ===== NOUVEAU PRODUIT / SERVICE VEDETTE ===== */
.service-vedette { }
.service-vedette .flex-desktop { display: flex; flex-direction: column-reverse; background: linear-gradient(0deg, #7d819e -0.04%, #dde4ee 99.96%); border-radius: 16px; margin: 24px 0; padding: 32px 16px; position: relative; overflow: hidden; }
.service-vedette .top-rouge { position: absolute; top: 20px; left: 20px; background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; }
.service-vedette h2 { display: flex; flex-direction: column; align-items: center; margin-bottom: 10px; }
.service-vedette h2 * { font-family: Roboto, sans-serif; font-weight: 900; line-height: 37.5px; font-size: 32px; }
.service-vedette h2 .white { color: var(--white); }
.service-vedette h2 .blue { color: var(--primary500); }
.service-vedette .left { display: flex; flex-direction: column; align-items: center; }
.service-vedette .left .desc p { color: var(--neutral700); text-align: center; line-height: 22px; font-size: 15px; }
.service-vedette .left .desc p strong { color: var(--neutral800); }
.service-vedette .produit-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--primary500); color: var(--white); padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 15px; margin-top: 20px; transition: background 0.2s; }
.service-vedette .produit-btn:hover { background: var(--primary700); }
.service-vedette .right { display: flex; justify-content: center; margin-bottom: 16px; }
.service-vedette .right svg { max-width: 100%; height: auto; }
.service-vedette .icons { display: flex; justify-content: center; gap: 20px; margin-top: 16px; }
.service-vedette .icon { text-align: center; }
.service-vedette .icon p { font-size: 12px; color: var(--neutral700); margin-top: 6px; font-weight: 600; }

/* ===== SCROLL INFINI (bande défilante) ===== */
.scroll-infini-wrapper { overflow: hidden; padding: 16px 0; background: var(--neutral100); margin: 0; }
.scroll-infini-track { display: flex; gap: 20px; animation: scrollInfini 25s linear infinite; width: max-content; }
.scroll-infini-wrapper:hover .scroll-infini-track { animation-play-state: paused; }
.scroll-card { background: var(--white); border-radius: 12px; padding: 16px 20px; display: flex; align-items: center; gap: 12px; white-space: nowrap; box-shadow: 0 2px 8px rgba(8,46,104,0.07); flex-shrink: 0; }
.scroll-card svg { width: 32px; height: 32px; fill: var(--primary500); flex-shrink: 0; }
.scroll-card span { font-size: 14px; font-weight: 600; color: var(--neutral700); }
@keyframes scrollInfini { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== RIDEAUX GRILLES → SECTIONS MÉTIERS (copié de metal2000.fr) ===== */
.rideaux-grilles { padding: 32px 0; }
.rideaux-grilles .container { display: flex; flex-direction: column; gap: 24px; }
.rideaux-grilles .rideaux-grilles-header { display: flex; justify-content: space-between; align-items: flex-start; }
.rideaux-grilles .category-title p { font-size: 13px; font-weight: 600; color: var(--neutral500); text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 4px; }
.rideaux-grilles .category-title h2 { font-family: Roboto, sans-serif; font-weight: 900; font-size: 28px; color: var(--neutral800); margin: 0; }
.rideaux-grilles .category-title h2 .title-dot::before { content: "·"; color: var(--orange); }
.rideaux-grilles .right-btn a { display: inline-flex; align-items: center; gap: 6px; color: var(--primary500); font-weight: 600; font-size: 14px; text-decoration: none; border: 1.5px solid var(--primary500); border-radius: 50px; padding: 8px 16px; }
.rideaux-grilles .right-btn a:hover { background: var(--primary100); }
.rideaux-grilles .right-btn a svg { width: 14px; height: 14px; fill: var(--primary500); }
.rideaux-grilles .carrousel-images { display: flex; gap: 16px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.rideaux-grilles .carrousel-images::-webkit-scrollbar { display: none; }
.rideaux-grilles .produit-card { min-width: 260px; max-width: 300px; border-radius: 16px; overflow: hidden; background: var(--white); border: 1.5px solid var(--neutral200); flex-shrink: 0; }
.rideaux-grilles .produit-card .card-img { width: 100%; height: 180px; overflow: hidden; position: relative; }
.rideaux-grilles .produit-card .card-img svg, .rideaux-grilles .produit-card .card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rideaux-grilles .produit-card .card-body { padding: 16px; }
.rideaux-grilles .produit-card .card-body .h3 { font-family: Roboto, sans-serif; font-weight: 700; font-size: 16px; color: var(--neutral800); margin: 0 0 6px; }
.rideaux-grilles .produit-card .desc { color: var(--neutral600); font-size: 14px; line-height: 20px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.rideaux-grilles .produit-card .card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary500); font-weight: 600; font-size: 13px; margin-top: 12px; text-decoration: none; }
.rideaux-grilles .produit-card .card-link svg { width: 14px; height: 14px; fill: var(--primary500); }

/* ===== FORMATION CFFIC (copié EXACTEMENT de metal2000.fr) ===== */
.formation-cffic { padding-top: 32px; padding-bottom: 32px; }
.formation-cffic .container { border-radius: 32px; background: linear-gradient(96.33deg, #9DB2DF 1.92%, #26324F 56.84%, var(--blue-sapphire) 111.89%); display: flex; flex-direction: column; gap: 16px; overflow: hidden; position: relative; }
.formation-cffic .image-container { width: 100%; overflow: hidden; position: relative; }
.formation-cffic .badges { display: flex; gap: 24px; align-items: center; position: absolute; bottom: 14px; left: 15px; }
.formation-cffic .image-container picture { display: block; height: 100%; }
.formation-cffic .image-container .main-image { max-width: 100%; width: 100%; object-fit: contain; object-position: left top; height: 100%; display: block; }
.formation-cffic .image-container svg.main-image { width: 100%; height: auto; }
.formation-cffic .text-container { display: flex; flex-direction: column; gap: 16px; padding: 0 32px 32px; color: var(--white); }
.formation-cffic .pretitle { font-size: 20px; position: relative; padding-left: 0; }
.formation-cffic .pretitle::after { content: ""; position: absolute; display: block; width: 0; height: 0; top: calc(50% - 7px); left: -19px; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid var(--orange); }
.formation-cffic .title { font-family: Roboto, sans-serif; font-weight: 900; margin: 0; display: flex; flex-direction: column; background: linear-gradient(286.72deg, #9FB8E5 5.69%, #ffffff 79%) text; -webkit-text-fill-color: transparent; font-size: 32px; line-height: 1.2; }
.formation-cffic .title span { font-size: 24px; font-weight: 700; }
.formation-cffic .modal-content * { margin: 0; }
.formation-cffic .modal-content { display: flex; flex-direction: column; gap: 8px; }
.formation-cffic .modal-content p { font-size: 15px; line-height: 24px; color: rgba(255,255,255,0.85); }
.formation-cffic .modal-content strong { color: var(--white); }
.formation-cffic a { color: var(--orange); }
.formation-cffic a.button { text-decoration: none; color: var(--white); background-color: var(--orange); font-size: 18px; line-height: 20px; padding: 14px 24px; border-radius: 32px; width: fit-content; margin-top: 8px; display: inline-block; }
.formation-cffic a.button:hover { background-color: var(--orange-dark); }
/* Badge items */
.formation-cffic .badges .badge-item { background: rgba(255,255,255,0.95); border-radius: 8px; padding: 6px 10px; display: flex; align-items: center; justify-content: center; }

/* ===== BECOME A PARTNER / CTA SECTION (copié de metal2000.fr) ===== */
.container-wrapper.become-a-partner-artisan { margin: 32px 0; align-items: flex-start; position: relative; z-index: 5; }
.become-a-partner-artisan .container { position: relative; border-radius: 16px; overflow: hidden; }
.become-a-partner-artisan .partnership-content { border-radius: 16px; overflow: hidden; padding: 60px 24px; text-align: center; background: linear-gradient(135deg, var(--primary700) 0%, var(--primary500) 60%, var(--primary400) 100%); position: relative; }
.become-a-partner-artisan .partnership-backdrop-text { position: absolute; font-family: Roboto, sans-serif; font-weight: 900; font-size: 80px; color: rgba(255,255,255,0.04); top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; text-transform: uppercase; pointer-events: none; }
.become-a-partner-artisan .flag-seperator { min-height: 6px; border-radius: 3px; overflow: hidden; max-width: 54px; width: 100%; display: flex; justify-content: space-between; margin: 8px auto 14px; }
.become-a-partner-artisan .flag-seperator div:first-child { min-width: 18px; min-height: 6px; background-color: #1a30b6; }
.become-a-partner-artisan .flag-seperator div:nth-child(2) { min-width: 18px; min-height: 6px; background-color: var(--white); }
.become-a-partner-artisan .flag-seperator div:last-child { min-width: 18px; min-height: 6px; background-color: red; }
.become-a-partner-artisan .partnership-content h2 { font-family: Roboto, sans-serif; font-weight: 900; font-size: 32px; color: var(--white); margin: 0 0 16px; line-height: 1.2; }
.become-a-partner-artisan .partnership-content p { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 24px; margin-bottom: 24px; }
.become-a-partner-artisan .tags-wrapper { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px; }
.become-a-partner-artisan .tags-wrapper span { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: 50px; padding: 6px 14px; color: var(--white); font-size: 13px; font-weight: 600; }
.partnership-ctas-wrapper { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.become-a-partner-artisan .partnership-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--orange); color: var(--white); font-weight: 700; font-size: 16px; padding: 14px 28px; border-radius: 50px; text-decoration: none; transition: background 0.15s; }
.become-a-partner-artisan .partnership-cta:hover { background: var(--orange-dark); }
.become-a-partner-artisan .partnership-cta-desktop { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 2px solid var(--white); color: var(--white); font-weight: 700; font-size: 16px; padding: 12px 28px; border-radius: 50px; text-decoration: none; transition: all 0.15s; }
.become-a-partner-artisan .partnership-cta-desktop:hover { background: rgba(255,255,255,0.1); }

/* ===== FOOTER ===== */
footer.site-footer { background: var(--neutral800); color: var(--white); }
footer .footer-top { padding: 48px 16px 32px; }
footer .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 767px) { footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 480px) { footer .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
footer .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
footer .footer-logo-box { width: 40px; height: 40px; background: var(--primary500); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: Roboto, sans-serif; font-weight: 900; font-size: 22px; color: var(--white); }
footer .footer-logo-name { font-family: Roboto, sans-serif; font-weight: 900; font-size: 18px; color: var(--white); }
footer .footer-logo-name span { color: var(--orange); }
footer .footer-logo-sub { font-size: 12px; color: var(--neutral400); margin-top: 2px; }
footer .footer-desc { font-size: 14px; color: var(--neutral400); line-height: 22px; margin-bottom: 20px; }
footer .footer-contacts { display: flex; flex-direction: column; gap: 10px; }
footer .footer-contact-item { display: flex; align-items: center; gap: 10px; color: var(--neutral300); font-size: 14px; text-decoration: none; transition: color 0.15s; }
footer .footer-contact-item:hover { color: var(--white); }
footer .footer-icon { width: 28px; height: 28px; background: rgba(255,255,255,0.06); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
footer .footer-icon svg { width: 14px; height: 14px; fill: var(--orange); }
footer .footer-col h4.footer-col-title { font-size: 14px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 16px; }
footer .footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
footer .footer-links li a { color: var(--neutral400); font-size: 14px; text-decoration: none; transition: color 0.15s; }
footer .footer-links li a:hover { color: var(--white); }
footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
footer .footer-bottom { padding: 20px 16px; }
footer .footer-bottom-inner { display: flex; flex-direction: row; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
@media (max-width: 600px) { footer .footer-bottom-inner { flex-direction: column; text-align: center; } }
footer .footer-bottom-inner p { font-size: 13px; color: var(--neutral500); margin: 0; }
footer .footer-certifs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
footer .footer-certif-badge { font-size: 11px; font-weight: 700; color: var(--white); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; padding: 4px 10px; letter-spacing: 0.3px; }

/* ===== STICKY PHONE BUTTONS ===== */
#mobile-phone-cta-wrapper { position: fixed; bottom: 16px; left: 0; width: 100%; padding: 0 16px; z-index: 9999; pointer-events: none; }
#mobile-phone-cta-wrapper .phone-btns { display: flex; gap: 12px; pointer-events: all; justify-content: center; }
.sticky-phone-btn { display: flex; align-items: center; justify-content: center; gap: 8px; height: 52px; border-radius: 50px; font-weight: 700; font-size: 15px; color: var(--white); text-decoration: none; padding: 0 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.sticky-phone-btn.serrurier { background: var(--primary500); }
.sticky-phone-btn.plombier { background: var(--orange); }
.sticky-phone-btn svg { width: 18px; height: 18px; fill: var(--white); }

/* ===== ANIMATIONS ===== */
@keyframes slideIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.animate-slidein { animation: slideIn 0.5s ease-out forwards; }

/* ===== RESPONSIVE - TABLET (768px+) ===== */
@media screen and (min-width: 768px) {
  .top-header-bar { display: flex; }
  .main-header .container { height: 72px; }
  .main-header .logo-metal svg { height: 28px; }
  .main-header .menu-items { display: flex; margin-right: 30px; }
  .hero-title h2 { font-size: 40px; line-height: 46px; }
  .hero-actions { flex-direction: row; justify-content: center; gap: 12px; }
  .hero-button { max-width: none; width: fit-content; }
  .container-wrapper.cartes-d-informations .information-card { min-width: 285px; width: 100%; max-width: max(285px, 25% - 18px); }
  .nos-metiers .nos-metiers-content { flex-direction: row; gap: 32px; }
  .nos-metiers .col.col1 { flex: 1; }
  .nos-metiers .col.col2 { flex: 1; }
  .service-vedette .flex-desktop { flex-direction: row; justify-content: space-around; background: linear-gradient(90deg, #7d819e 0%, #dde4ee 72.53%); }
  .service-vedette h2 { align-items: flex-start; }
  .service-vedette .left { align-items: flex-start; }
  .service-vedette .left .desc p { text-align: left; }
}

/* ===== RESPONSIVE - DESKTOP (1024px+) ===== */
@media screen and (min-width: 1024px) {
  .container { max-width: 1280px; }
  .hero-section .hero-content { display: flex; flex-direction: row-reverse; justify-content: space-between; align-items: center; gap: 40px; }
  .hero-section .hero-content .desktop-pre-title { display: block; }
  .hero-section .hero-content .mobile-pre-title { display: none; }
  .hero-title h2 { text-align: left; font-size: 48px; line-height: 56px; }
  .hero-text { text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .hero-section .graphics-container { max-width: 45%; }
  .desktop-pre-title { margin-bottom: 12px; }
  .hero-tag { display: inline-block; font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
  .pre-title { font-size: 16px; color: rgba(255,255,255,0.7); font-weight: 500; }
  .formation-cffic { padding-top: 64px; padding-bottom: 64px; }
  .formation-cffic .badges { bottom: 50px; left: 55px; }
  .formation-cffic .image-container { min-width: 46%; }
  .formation-cffic .text-container { justify-content: center; padding: 51px 56px; }
  .partnership-ctas-wrapper { flex-direction: row; justify-content: center; }
  .become-a-partner-artisan .partnership-content { min-height: 50vh; display: flex; flex-direction: column; justify-content: center; }
  .become-a-partner-artisan .partnership-content h2 { font-size: 48px; }
  #mobile-phone-cta-wrapper { display: none; }
}

/* ===== RESPONSIVE - WIDE (767px+ formation-cffic) ===== */
@media screen and (min-width: 767px) {
  .formation-cffic .container { flex-direction: row; gap: 0; }
  .formation-cffic .image-container { min-width: 40%; }
  .formation-cffic .text-container { padding: 32px; }
  .formation-cffic .modal-content * { font-size: 16px; line-height: 24px; }
  .formation-cffic .badges { bottom: 32px; }
}

/* ===== 1440px+ watermark ===== */
@media screen and (min-width: 1440px) {
  .formation-cffic .container::before {
    content: "A";
    position: absolute;
    right: 20px;
    top: 20px;
    font-family: Roboto, sans-serif;
    font-weight: 900;
    font-size: 180px;
    color: rgba(255,255,255,0.04);
    pointer-events: none;
    line-height: 1;
  }
}
