{"id":2,"date":"2015-02-13T15:09:32","date_gmt":"2015-02-13T14:09:32","guid":{"rendered":"http:\/\/clic-info.com\/bati-consult\/?page_id=2"},"modified":"2025-12-11T18:20:06","modified_gmt":"2025-12-11T17:20:06","slug":"accueil","status":"publish","type":"page","link":"https:\/\/authentikhome.fr\/?page_id=2","title":{"rendered":"LA COOP\u00c9RATIVE"},"content":{"rendered":"\n<style>\n\/* ===== STYLE GLOBAL ===== *\/\n.stats-section {\n    padding: 70px 0;\n    text-align: center;\n    font-family: \"Segoe UI\", Arial, sans-serif;\n    background: #f7f8fa;\n    color: #111111; \/* Texte en noir carbone *\/\n}\n\n.stats-title {\n    font-size: 36px;\n    margin-bottom: 10px;\n    font-weight: 800;\n    letter-spacing: 1px;\n    color: #111111;\n}\n\n.stats-subtitle {\n    letter-spacing: 3px;\n    color: #111111cc; \/* Noir carbone semi-transparent *\/\n    margin-bottom: 50px;\n    font-size: 14px;\n}\n\n\/* ===== BLOCS ===== *\/\n.stat-block {\n    text-align: center;\n    width: 200px;\n    padding: 25px 10px;\n    border-radius: 12px;\n    background: linear-gradient(135deg, #f5f5f5, #dcdfe3, #ffffff);\n    box-shadow: 0 8px 18px rgba(0,0,0,0.07);\n    transition: transform 0.35s ease, box-shadow 0.35s ease;\n}\n\n.stat-block:hover {\n    transform: scale(1.07);\n    box-shadow: 0 12px 30px rgba(180, 195, 220, 0.4);\n}\n\n\/* ===== ICONES ===== *\/\n.stats-icon {\n    height: 65px;\n    margin-bottom: 15px;\n    filter: drop-shadow(0 0 8px rgba(200, 220, 255, 0.7));\n    transition: transform 0.4s ease, filter 0.4s ease;\n}\n\n\/* Effet glow + lumi\u00e8re au survol *\/\n.stats-icon:hover {\n    transform: scale(1.2) rotate(3deg);\n    filter: drop-shadow(0 0 14px rgba(230, 240, 255, 0.9));\n}\n\n\/* Animation de brillance sur l'ic\u00f4ne *\/\n@keyframes chromeShine {\n    0% { filter: brightness(0.9); }\n    50% { filter: brightness(1.3); }\n    100% { filter: brightness(1); }\n}\n\n.stats-icon:hover {\n    animation: chromeShine 1.2s ease forwards;\n}\n\n\/* ===== CHIFFRES ===== *\/\n.counter {\n    font-size: 36px;\n    font-weight: 700;\n    background: linear-gradient(135deg, #333333, #000000, #555555);\n    -webkit-background-clip: text;\n    -webkit-text-fill-color: transparent;\n}\n\n\/* Texte secondaire *\/\n.stat-label {\n    color: #111111cc;\n    margin-top: 8px;\n    font-size: 14px;\n}\n<\/style>\n\n<section class=\"stats-section\">\n\n    <h2 class=\"stats-title\">Authentik Home : Coop\u00e9rative d&rsquo;artisans du b\u00e2timent<\/h2>\n    <p class=\"stats-subtitle\">EN QUELQUES CHIFFRES<\/p>\n\n    <div style=\"display:flex; justify-content:center; gap:80px; flex-wrap:wrap;\">\n\n        <!-- EXP\u00c9RIENCE -->\n        <div class=\"stat-block\">\n            <img decoding=\"async\" class=\"stats-icon\" data-counter-id=\"expCounter\"\n                src=\"https:\/\/img.icons8.com\/ios-filled\/100\/111111\/maintenance.png\" alt=\"maintenance icon\">\n            <div><span id=\"expCounter\" class=\"counter\" data-target=\"\">0<\/span> ans<\/div>\n            <p class=\"stat-label\">D\u2019EXP\u00c9RIENCE<\/p>\n        <\/div>\n\n        <!-- CHANTIERS -->\n        <div class=\"stat-block\">\n            <img decoding=\"async\" class=\"stats-icon\" data-counter-id=\"chantierCounter\"\n                src=\"https:\/\/img.icons8.com\/ios-filled\/100\/111111\/home.png\" alt=\"home icon\">\n            <div><span id=\"chantierCounter\" class=\"counter\" data-target=\"35\">0<\/span><\/div>\n            <p class=\"stat-label\">CHANTIERS PAR AN<\/p>\n        <\/div>\n\n        <!-- ARTISANS -->\n        <div class=\"stat-block\">\n            <img decoding=\"async\" class=\"stats-icon\" data-counter-id=\"artisanCounter\"\n                src=\"https:\/\/img.icons8.com\/ios-filled\/100\/111111\/worker-male.png\" alt=\"worker icon\">\n            <div><span id=\"artisanCounter\" class=\"counter\" data-target=\"10\">0<\/span><\/div>\n            <p class=\"stat-label\">ARTISANS ADH\u00c9RENTS<\/p>\n        <\/div>\n\n        <!-- SALARI\u00c9S -->\n        <div class=\"stat-block\">\n            <img decoding=\"async\" class=\"stats-icon\" data-counter-id=\"salarieCounter\"\n                src=\"https:\/\/img.icons8.com\/ios-filled\/100\/111111\/handshake.png\" alt=\"handshake icon\">\n            <div><span id=\"salarieCounter\" class=\"counter\" data-target=\"3\">0<\/span><\/div>\n            <p class=\"stat-label\">SALARI\u00c9S<\/p>\n        <\/div>\n\n    <\/div>\n<\/section>\n\n<script>\n\/* EXPERIENCE AUTOMATIQUE *\/\nconst startYear = 2014;\nconst currentYear = new Date().getFullYear();\ndocument.getElementById(\"expCounter\").setAttribute(\"data-target\", currentYear - startYear);\n\n\/* FONCTION D'ANIMATION *\/\nfunction animateCounter(counter) {\n    const target = +counter.getAttribute(\"data-target\");\n    counter.innerText = \"0\";\n    let value = 0;\n    const speed = 140;\n    const increment = Math.ceil(target \/ speed);\n\n    function update() {\n        if (value < target) {\n            value += increment;\n            counter.innerText = value;\n            setTimeout(update, 18);\n        } else {\n            counter.innerText = target;\n        }\n    }\n    update();\n}\n\n\/* ANIMATION AU SCROLL *\/\nlet triggered = false;\nwindow.addEventListener('scroll', () => {\n    const sectionTop = document.querySelector('.stats-section').offsetTop;\n    if (window.scrollY + window.innerHeight > sectionTop + 100 && !triggered) {\n        document.querySelectorAll('.counter').forEach(animateCounter);\n        triggered = true;\n    }\n});\n\n\/* RELANCE AU SURVOL D\u2019UN LOGO *\/\ndocument.querySelectorAll(\".stats-icon\").forEach(icon => {\n    icon.addEventListener(\"mouseenter\", () => {\n        const counter = document.getElementById(icon.getAttribute(\"data-counter-id\"));\n        animateCounter(counter);\n    });\n});\n<\/script>\n\n\n<h1 style=\"text-align: center;\"><span style=\"color: #003366;\"><br \/>Qui sommes-nous?<\/span><strong style=\"font-size: inherit;\">\u00a0 \u00a0<\/strong><\/h1>\n<hr \/>\n<p style=\"text-align: center;\"><span style=\"color: #003366;\">___<\/span><\/p>\n<h2 style=\"text-align: center;\"><strong>Authentik Home est la 1\u00e8re Coop\u00e9rative <\/strong><strong>d&rsquo;artisans en Charente, <\/strong><strong>qualifi\u00e9e RGE, <\/strong><strong>et cr\u00e9\u00e9e en 2014.<\/strong><\/h2>\n<p style=\"text-align: center;\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone \" src=\"https:\/\/menuiserie-burban.fr\/wp-content\/uploads\/2016\/07\/logo-Qualibat-RGE-2015-e1456849439212.jpg\" width=\"117\" height=\"171\" \/><\/p>\n\n\n<section class=\"contact-section\">\n  <h2>L&rsquo;\u00e9quipe au bureau de la coop\u00e9rative<\/h2>\n\n  <div class=\"contact-cards\">\n\n    <!-- Dominique -->\n    <div class=\"contact-card\">\n      <div class=\"icon\">\n        <svg width=\"36\" height=\"36\" fill=\"#1f3c88\" viewBox=\"0 0 24 24\">\n          <path d=\"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z\"\/>\n        <\/svg>\n      <\/div>\n      <h3>Dominique LAURENT<\/h3>\n      <p><em>Ma\u00eetre d&rsquo;\u0153uvre<\/em><\/p>\n      <p><a href=\"tel:+33676034766\">+33 6 76 03 47 66<\/a><\/p>\n    <\/div>\n\n    <!-- Marco -->\n    <div class=\"contact-card\">\n      <div class=\"icon\">\n        <svg width=\"36\" height=\"36\" fill=\"#1f3c88\" viewBox=\"0 0 24 24\">\n          <path d=\"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z\"\/>\n        <\/svg>\n      <\/div>\n      <h3>Marco ALVES<\/h3>\n      <p><em>Conducteur de travaux \/ Charg\u00e9 d&rsquo;affaires<\/em><\/p>\n      <p><a href=\"tel:+33618253820\">+33 6 18 25 38 20<\/a><\/p>\n    <\/div>\n\n    <!-- Bureau -->\n    <div class=\"contact-card\">\n      <div class=\"icon\">\n        <svg width=\"36\" height=\"36\" fill=\"#1f3c88\" viewBox=\"0 0 24 24\">\n          <path d=\"M21 8V7l-3 2-2-2-3 2-2-2-3 2-2-2-3 2V8l9 5 9-5zm0 2.5l-9 5-9-5V19h18V10.5z\"\/>\n        <\/svg>\n      <\/div>\n      <h3>Sylvie GERBIER<\/h3>\n      <p><em>Secr\u00e9taire Comptable<\/em><\/p>\n      <p><a href=\"tel:+33545389354\">+33 5 45 38 93 54<\/a><\/p>\n    <\/div>\n\n  <\/div>\n<\/section>\n\n<style>\n.contact-section {\n  font-family: \"Inter\", sans-serif;\n  max-width: 1000px;\n  margin: 60px auto;\n  padding: 0 20px;\n  text-align: center;\n}\n\n.contact-section h2 {\n  font-size: 2rem;\n  color: #1f3c88;\n  margin-bottom: 40px;\n  font-weight: 700;\n}\n\n.contact-cards {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n  gap: 30px;\n}\n\n.contact-card {\n  background: #f3f3f3;\n  padding: 25px 20px;\n  border-radius: 16px;\n  box-shadow: 0 8px 22px rgba(0,0,0,0.12);\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\n}\n\n.contact-card:hover {\n  transform: translateY(-6px) scale(1.02);\n  box-shadow: 0 12px 26px rgba(0,0,0,0.18);\n}\n\n.contact-card .icon {\n  margin-bottom: 15px;\n  transition: transform 0.3s ease, fill 0.3s ease;\n}\n\n.contact-card:hover .icon {\n  transform: rotate(-10deg) scale(1.2);\n  fill: #ff6600;\n}\n\n.contact-card h3 {\n  margin-bottom: 5px;\n  font-size: 1.2rem;\n  color: #111;\n}\n\n.contact-card p {\n  font-size: 1rem;\n  margin: 5px 0;\n  line-height: 1.5;\n}\n\n.contact-card a {\n  color: #1f3c88;\n  font-weight: 600;\n  text-decoration: none;\n  transition: color 0.3s ease;\n}\n\n.contact-card a:hover {\n  color: #ff6600;\n  text-decoration: underline;\n}\n<\/style>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" style=\"margin-top:var(--wp--preset--spacing--10);margin-bottom:var(--wp--preset--spacing--10)\"\/>\n\n\n\n<section class=\"about-block\">\n  <h2>Authentik Home : Coh\u00e9rence &#038; S\u00e9r\u00e9nit\u00e9 pour vos projets<\/h2>\n\n  <p class=\"intro\">\n    Mutualiser les comp\u00e9tences locales pour vous apporter coh\u00e9rence et s\u00e9r\u00e9nit\u00e9.  \n    Authentik Home vous propose une offre moderne en Charente, tourn\u00e9e vers l&rsquo;avenir pour concr\u00e9tiser vos projets dans les meilleures conditions, avec toutes les garanties.\n  <\/p>\n\n  <p class=\"highlight\">\n    Gr\u00e2ce \u00e0 notre qualification <strong>RGE<\/strong>, nous vous proposons la TVA \u00e0 taux r\u00e9duit sur les projets \u00e9ligibles.\n  <\/p>\n\n  <p>\n    Votre ma\u00eetre d&rsquo;\u0152uvre <strong>Dominique<\/strong> sera votre principal interlocuteur pour :\n  <\/p>\n\n  <ul class=\"service-list\">\n    <li>\n      <div class=\"icon\">\n        <svg width=\"28\" height=\"28\" fill=\"#1f3c88\" viewBox=\"0 0 24 24\">\n          <path d=\"M12 2L2 7v13h20V7L12 2zM12 4.5l7 3.5v10.5H5V8L12 4.5zM12 12h5v5h-5v-5z\"\/>\n        <\/svg>\n      <\/div>\n      <span>Construction<\/span>\n    <\/li>\n    <li>\n      <div class=\"icon\">\n        <svg width=\"28\" height=\"28\" fill=\"#1f3c88\" viewBox=\"0 0 24 24\">\n          <path d=\"M3 6h18v2H3V6zm2 4h14v2H5v-2zm2 4h10v2H7v-2zm2 4h6v2H9v-2z\"\/>\n        <\/svg>\n      <\/div>\n      <span>R\u00e9novation<\/span>\n    <\/li>\n    <li>\n      <div class=\"icon\">\n        <svg width=\"28\" height=\"28\" fill=\"#1f3c88\" viewBox=\"0 0 24 24\">\n          <path d=\"M12 2L2 12h3v8h14v-8h3L12 2zm0 3.84L18.16 12H16v6H8v-6H5.84L12 5.84z\"\/>\n        <\/svg>\n      <\/div>\n      <span>Extension<\/span>\n    <\/li>\n  <\/ul>\n\n  <p>\n    Pour votre habitation ou votre local professionnel. Pour les particuliers, investisseurs et professionnels.  \n    Tous les avantages d&rsquo;une offre globale, apport\u00e9e par une \u00e9quipe d&rsquo;artisans locaux r\u00e9unis autour d&rsquo;une m\u00eame philosophie.\n  <\/p>\n\n  <p>\n    En partenariat avec l&rsquo;<strong>UFCAC<\/strong> (Union Fran\u00e7aise des Coop\u00e9ratives Artisanales de Construction), nous r\u00e9alisons vos projets de maison neuve sous contrat <strong>CCMI<\/strong>, avec toutes les garanties :\n  <\/p>\n\n  <ul class=\"guarantees-list\">\n    <li>\n      <div class=\"icon\">\n        <svg width=\"24\" height=\"24\" fill=\"#28a745\" viewBox=\"0 0 24 24\">\n          <path d=\"M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0zm5 9l-6 6-3-3 1.41-1.41L11 12.17l4.59-4.59L17 9z\"\/>\n        <\/svg>\n      <\/div>\n      Dommages Ouvrages\n    <\/li>\n    <li>\n      <div class=\"icon\">\n        <svg width=\"24\" height=\"24\" fill=\"#28a745\" viewBox=\"0 0 24 24\">\n          <path d=\"M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0zm5 9l-6 6-3-3 1.41-1.41L11 12.17l4.59-4.59L17 9z\"\/>\n        <\/svg>\n      <\/div>\n      D\u00e9cennale\n    <\/li>\n    <li>\n      <div class=\"icon\">\n        <svg width=\"24\" height=\"24\" fill=\"#28a745\" viewBox=\"0 0 24 24\">\n          <path d=\"M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0zm5 9l-6 6-3-3 1.41-1.41L11 12.17l4.59-4.59L17 9z\"\/>\n        <\/svg>\n      <\/div>\n      Garantie de remboursement des acomptes\n    <\/li>\n    <li>\n      <div class=\"icon\">\n        <svg width=\"24\" height=\"24\" fill=\"#28a745\" viewBox=\"0 0 24 24\">\n          <path d=\"M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0zm5 9l-6 6-3-3 1.41-1.41L11 12.17l4.59-4.59L17 9z\"\/>\n        <\/svg>\n      <\/div>\n      Garantie de livraison \u00e0 prix et d\u00e9lais convenus\n    <\/li>\n    <li>\n      <div class=\"icon\">\n        <svg width=\"24\" height=\"24\" fill=\"#28a745\" viewBox=\"0 0 24 24\">\n          <path d=\"M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0zm5 9l-6 6-3-3 1.41-1.41L11 12.17l4.59-4.59L17 9z\"\/>\n        <\/svg>\n      <\/div>\n      Garantie de Bon fonctionnement et Parfait ach\u00e8vement\n    <\/li>\n  <\/ul>\n<\/section>\n\n<style>\n.about-block {\n  font-family: \"Inter\", sans-serif;\n  max-width: 1000px;\n  margin: 60px auto;\n  padding: 0 20px;\n  color: #333;\n}\n\n.about-block h2 {\n  font-size: 2rem;\n  text-align: center;\n  margin-bottom: 30px;\n  color: #1f3c88;\n  font-weight: 700;\n}\n\n.intro, .highlight {\n  font-size: 1.05rem;\n  margin-bottom: 20px;\n  line-height: 1.6;\n}\n\n.highlight {\n  font-weight: 600;\n  color: #222;\n}\n\n.service-list, .guarantees-list {\n  list-style: none;\n  padding: 0;\n  margin-bottom: 30px;\n}\n\n.service-list li, .guarantees-list li {\n  display: flex;\n  align-items: center;\n  margin-bottom: 15px;\n  font-size: 1.05rem;\n  transition: transform 0.3s ease;\n}\n\n.service-list li .icon, .guarantees-list li .icon {\n  margin-right: 12px;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  transition: transform 0.3s ease, fill 0.3s ease;\n}\n\n.service-list li:hover .icon {\n  transform: rotate(-10deg) scale(1.2);\n  fill: #ff6600;\n}\n\n.guarantees-list li:hover .icon {\n  transform: scale(1.2) rotate(10deg);\n  fill: #20c997;\n}\n\n.service-list li span {\n  font-weight: 500;\n}\n\n.guarantees-list li {\n  font-size: 1rem;\n}\n\n.guarantees-list li span {\n  font-weight: 500;\n}\n<\/style>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" style=\"margin-top:var(--wp--preset--spacing--10);margin-bottom:var(--wp--preset--spacing--10)\"\/>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\"><strong>Mais une coop\u00e9rative d&rsquo;artisans du b\u00e2timent, c&rsquo;est quoi ?<\/strong><\/h2>\n\n\n\n<section style=\"padding:60px 20px; font-family:Arial, sans-serif; background:#f7f8fa; color:#111111; text-align:center;\">\n\n  <!-- TITRE -->\n  <h2 style=\"font-size:36px; margin-bottom:15px; font-weight:800;\">Une coop\u00e9rative d\u2019artisans du b\u00e2timent \u00e0 votre service<\/h2>\n  \n  <!-- DESCRIPTION ET FONCTIONNEMENT -->\n  <p style=\"max-width:800px; margin:0 auto 40px; font-size:16px; line-height:1.6;\">\n    Notre coop\u00e9rative regroupe des <strong>artisans ind\u00e9pendants et qualifi\u00e9s<\/strong>, chacun sp\u00e9cialis\u00e9 dans son m\u00e9tier : ma\u00e7onnerie, plomberie, \u00e9lectricit\u00e9, menuiserie, peinture\u2026 Ensemble, ils mettent en commun leurs comp\u00e9tences, leurs outils et leur exp\u00e9rience pour vous offrir des solutions <strong>compl\u00e8tes et fiables<\/strong>.\n  <\/p>\n  \n  <p style=\"max-width:800px; margin:0 auto 40px; font-size:16px; line-height:1.6;\">\n    Chaque artisan est un <strong>coop\u00e9rateur<\/strong>, participant aux d\u00e9cisions de la coop\u00e9rative tout en restant ind\u00e9pendant. La coop\u00e9rative :\n    <ul style=\"list-style:none; padding:0; margin:15px 0; text-align:left; display:inline-block;\">\n      <li>\u2022 Coordonne les \u00e9quipes pour chaque projet<\/li>\n      <li>\u2022 G\u00e8re l\u2019administratif et la facturation<\/li>\n      <li>\u2022 Garantit le respect des normes et des d\u00e9lais<\/li>\n      <li>\u2022 Favorise l\u2019entraide entre artisans pour assurer un service sans faille<\/li>\n    <\/ul>\n  <\/p>\n  \n  <!-- TRANSITION AVANTAGES CLIENT -->\n  <p style=\"max-width:800px; margin:0 auto 50px; font-size:16px; line-height:1.6;\">\n    Pour vous, choisir notre coop\u00e9rative, c\u2019est <strong>b\u00e9n\u00e9ficier du meilleur des deux mondes<\/strong> : la proximit\u00e9 et le professionnalisme d\u2019un artisan ind\u00e9pendant, <strong>avec la solidit\u00e9 et l\u2019organisation d\u2019une grande \u00e9quipe<\/strong>.\n  <\/p>\n\n  <!-- BLOCS AVANTAGES -->\n  <div style=\"display:flex; justify-content:center; flex-wrap:wrap; gap:40px;\">\n\n    <!-- Avantage 1 -->\n    <div class=\"stat-block\" style=\"width:220px; background:#ffffff; padding:25px; border-radius:12px; box-shadow:0 6px 15px rgba(0,0,0,0.08); text-align:center;\">\n      <!-- SVG Interlocuteur unique -->\n      <svg class=\"hover-icon\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"64\" height=\"64\" fill=\"#111111\" viewBox=\"0 0 24 24\" style=\"margin-bottom:15px; transition:0.4s;\">\n        <path d=\"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z\"\/>\n      <\/svg>\n      <h3 style=\"font-size:18px; margin-bottom:10px;\">Interlocuteur unique<\/h3>\n      <p style=\"font-size:14px; line-height:1.5;\">Nous coordonnons toutes les \u00e9tapes de votre projet.<\/p>\n    <\/div>\n\n    <!-- Avantage 2 -->\n    <div class=\"stat-block\" style=\"width:220px; background:#ffffff; padding:25px; border-radius:12px; box-shadow:0 6px 15px rgba(0,0,0,0.08); text-align:center;\">\n      <svg class=\"hover-icon\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"64\" height=\"64\" fill=\"#111111\" viewBox=\"0 0 24 24\" style=\"margin-bottom:15px; transition:0.4s;\">\n        <path d=\"M20.285 2l-11.285 11.293-5.285-5.293-3.715 3.707 9 9 15-15z\"\/>\n      <\/svg>\n      <h3 style=\"font-size:18px; margin-bottom:10px;\">Travaux fiables<\/h3>\n      <p style=\"font-size:14px; line-height:1.5;\">Respect des d\u00e9lais et qualit\u00e9 assur\u00e9e gr\u00e2ce \u00e0 la coordination et la mutualisation.<\/p>\n    <\/div>\n\n    <!-- Avantage 3 -->\n    <div class=\"stat-block\" style=\"width:220px; background:#ffffff; padding:25px; border-radius:12px; box-shadow:0 6px 15px rgba(0,0,0,0.08); text-align:center;\">\n      <svg class=\"hover-icon\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"64\" height=\"64\" fill=\"#111111\" viewBox=\"0 0 24 24\" style=\"margin-bottom:15px; transition:0.4s;\">\n        <path d=\"M12 17.27l6.18 3.73-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73-1.64 7.03z\"\/>\n      <\/svg>\n      <h3 style=\"font-size:18px; margin-bottom:10px;\">Qualit\u00e9 garantie<\/h3>\n      <p style=\"font-size:14px; line-height:1.5;\">Chaque artisan est contr\u00f4l\u00e9 et certifi\u00e9 pour un travail soign\u00e9 et durable.<\/p>\n    <\/div>\n\n    <!-- Avantage 4 -->\n    <div class=\"stat-block\" style=\"width:220px; background:#ffffff; padding:25px; border-radius:12px; box-shadow:0 6px 15px rgba(0,0,0,0.08); text-align:center;\">\n      <svg class=\"hover-icon\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"64\" height=\"64\" fill=\"#111111\" viewBox=\"0 0 24 24\" style=\"margin-bottom:15px; transition:0.4s;\">\n        <path d=\"M12 2l4 4h-3v4h-2V6H8l4-4zm0 20l-4-4h3v-4h2v4h3l-4 4z\"\/>\n      <\/svg>\n      <h3 style=\"font-size:18px; margin-bottom:10px;\">Flexibilit\u00e9<\/h3>\n      <p style=\"font-size:14px; line-height:1.5;\">Des \u00e9quipes adapt\u00e9es \u00e0 vos besoins pour petits ou grands projets.<\/p>\n    <\/div>\n\n    <!-- Avantage 5 -->\n    <div class=\"stat-block\" style=\"width:220px; background:#ffffff; padding:25px; border-radius:12px; box-shadow:0 6px 15px rgba(0,0,0,0.08); text-align:center;\">\n      <svg class=\"hover-icon\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"64\" height=\"64\" fill=\"#111111\" viewBox=\"0 0 24 24\" style=\"margin-bottom:15px; transition:0.4s;\">\n        <path d=\"M12 1C5.925 1 1 5.925 1 12s4.925 11 11 11 11-4.925 11-11S18.075 1 12 1zm0 20c-4.971 0-9-4.029-9-9s4.029-9 9-9 9 4.029 9 9-4.029 9-9 9zm-1-13h2v6h-2zm0 8h2v2h-2z\"\/>\n      <\/svg>\n      <h3 style=\"font-size:18px; margin-bottom:10px;\">Tranquillit\u00e9 d\u2019esprit<\/h3>\n      <p style=\"font-size:14px; line-height:1.5;\">Assurance, suivi administratif et coordination pris en charge par la coop\u00e9rative.<\/p>\n    <\/div>\n\n  <\/div>\n\n  <!-- CALL TO ACTION -->\n  <p style=\"margin-top:50px; font-size:16px;\">\n    <a href=\"https:\/\/authentikhome.fr\/?page_id=60\" target=\"_blank\" style=\"display:inline-block; background:#111111; color:#ffffff; padding:15px 30px; border-radius:8px; text-decoration:none; font-weight:bold;\" rel=\"noopener\">Confiez votre projet \u00e0 nos artisans<\/a>\n  <\/p>\n\n<\/section>\n\n<!-- ANIMATION HOVER IC\u00d4NES -->\n<script>\n  document.querySelectorAll('.hover-icon').forEach(icon => {\n    icon.addEventListener('mouseenter', () => {\n      icon.style.transform = 'scale(1.2) rotate(10deg)';\n      icon.style.filter = 'drop-shadow(0 0 12px rgba(200,200,255,0.8))';\n    });\n    icon.addEventListener('mouseleave', () => {\n      icon.style.transform = 'scale(1) rotate(0deg)';\n      icon.style.filter = 'none';\n    });\n  });\n<\/script>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" style=\"margin-top:var(--wp--preset--spacing--10);margin-bottom:var(--wp--preset--spacing--10)\"\/>\n\n\n\n<section class=\"contact-block\">\n  <h2>Contact &#038; Informations<\/h2>\n\n  <div class=\"contact-grid\">\n\n    <!-- TELEPHONE -->\n    <div class=\"contact-item\">\n      <div class=\"icon\">\n        <svg width=\"32\" height=\"32\" fill=\"#555\" viewBox=\"0 0 24 24\">\n          <path d=\"M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24 11.72 11.72 0 003.68.59 1 1 0 011 1v3.49a1 1 0 01-1 1A17 17 0 013 5a1 1 0 011-1h3.5a1 1 0 011 1 11.72 11.72 0 00.59 3.68 1 1 0 01-.24 1.01l-2.23 2.1z\"\/>\n        <\/svg>\n      <\/div>\n      <h3>T\u00e9l\u00e9phone<\/h3>\n      <p><a href=\"tel:0545389354\">05 45 38 93 54<\/a><\/p>\n    <\/div>\n\n    <!-- MAIL -->\n    <div class=\"contact-item\">\n      <div class=\"icon\">\n        <svg width=\"32\" height=\"32\" fill=\"#555\" viewBox=\"0 0 24 24\">\n          <path d=\"M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z\"\/>\n        <\/svg>\n      <\/div>\n      <h3>Mail<\/h3>\n      <p><a href=\"mailto:authentikhome@orange.fr\">authentikhome@orange.fr<\/a><\/p>\n    <\/div>\n\n    <!-- ADRESSE -->\n    <div class=\"contact-item\">\n      <div class=\"icon\">\n        <svg width=\"32\" height=\"32\" fill=\"#555\" viewBox=\"0 0 24 24\">\n          <path d=\"M12 2a7 7 0 00-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 00-7-7zm0 9.5A2.5 2.5 0 119.5 9 2.5 2.5 0 0112 11.5z\"\/>\n        <\/svg>\n      <\/div>\n      <h3>Adresse<\/h3>\n      <p>41bis, Route de Vars<br>16 160 GOND-PONTOUVRE<\/p>\n    <\/div>\n\n    <!-- HORAIRES -->\n    <div class=\"contact-item\">\n      <div class=\"icon\">\n        <svg width=\"32\" height=\"32\" fill=\"#555\" viewBox=\"0 0 24 24\">\n          <path d=\"M12 1.75A10.25 10.25 0 112.75 12 10.26 10.26 0 0112 1.75zm0 18.5A8.25 8.25 0 103.75 12 8.26 8.26 0 0012 20.25zm.75-13h-1.5v5l4.5 2.7.75-1.23-3.75-2.22V7.25z\"\/>\n        <\/svg>\n      <\/div>\n      <h3>Horaires d\u2019ouverture<\/h3>\n      <p>Du lundi au vendredi<br>8h00 \u2013 12h00 &#038; 14h00 \u2013 18h00<\/p>\n    <\/div>\n\n  <\/div>\n<\/section>\n\n<style>\n.contact-block {\n  font-family: \"Inter\", sans-serif;\n  padding: 60px 20px;\n  max-width: 1000px;\n  margin: auto;\n  color: #333;\n  background: #f9f9f9;\n  border-radius: 16px;\n  box-shadow: 0 12px 30px rgba(0,0,0,0.12);\n}\n\n.contact-block h2 {\n  text-align: center;\n  font-size: 2rem;\n  margin-bottom: 45px;\n  color: #222;\n  font-weight: 700;\n}\n\n\/* GRID *\/\n.contact-grid {\n  display: grid;\n  gap: 32px;\n  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));\n}\n\n\/* ITEMS *\/\n.contact-item {\n  background: #e6e6e6;\n  border-radius: 14px;\n  padding: 25px 22px;\n  box-shadow: 0 6px 18px rgba(0,0,0,0.08);\n  transition: 0.35s ease, transform 0.35s ease;\n  position: relative;\n}\n\n.contact-item:hover {\n  transform: translateY(-6px) scale(1.02);\n  box-shadow: 0 12px 26px rgba(0,0,0,0.18);\n}\n\n\/* ICONS *\/\n.icon {\n  margin-bottom: 12px;\n  transition: transform 0.3s ease;\n}\n\n.contact-item:hover .icon {\n  animation: pulse 0.6s ease-in-out 1;\n}\n\n@keyframes pulse {\n  0% { transform: scale(1) rotate(0deg); }\n  25% { transform: scale(1.15) rotate(-5deg); }\n  50% { transform: scale(1.05) rotate(5deg); }\n  75% { transform: scale(1.1) rotate(-3deg); }\n  100% { transform: scale(1) rotate(0deg); }\n}\n\n\/* TITLES *\/\n.contact-item h3 {\n  font-size: 1.2rem;\n  margin-bottom: 10px;\n  color: #111;\n  transition: color 0.3s ease;\n}\n\n.contact-item:hover h3 {\n  color: #1f3c88;\n}\n\n\/* TEXT *\/\n.contact-item p {\n  font-size: 1rem;\n  line-height: 1.55;\n  transition: color 0.3s ease;\n}\n\n.contact-item a {\n  color: #1f3c88;\n  text-decoration: none;\n  font-weight: 600;\n}\n\n.contact-item a:hover {\n  text-decoration: underline;\n  color: #0d265e;\n}\n<\/style>\n\n\n\n<p class=\"has-text-align-center\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Authentik Home : Coop\u00e9rative d&rsquo;artisans du b\u00e2timent EN QUELQUES CHIFFRES 0 ans D\u2019EXP\u00c9RIENCE 0 CHANTIERS PAR AN 0 ARTISANS ADH\u00c9RENTS 0 SALARI\u00c9S Qui sommes-nous?\u00a0 \u00a0 ___ Authentik Home est la 1\u00e8re Coop\u00e9rative d&rsquo;artisans en Charente, qualifi\u00e9e RGE, et cr\u00e9\u00e9e en 2014. L&rsquo;\u00e9quipe au bureau de la coop\u00e9rative Dominique LAURENT Ma\u00eetre d&rsquo;\u0153uvre +33 6 76 03 [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/authentikhome.fr\/index.php?rest_route=\/wp\/v2\/pages\/2","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/authentikhome.fr\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/authentikhome.fr\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/authentikhome.fr\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/authentikhome.fr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2"}],"version-history":[{"count":90,"href":"https:\/\/authentikhome.fr\/index.php?rest_route=\/wp\/v2\/pages\/2\/revisions"}],"predecessor-version":[{"id":1844,"href":"https:\/\/authentikhome.fr\/index.php?rest_route=\/wp\/v2\/pages\/2\/revisions\/1844"}],"wp:attachment":[{"href":"https:\/\/authentikhome.fr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}