/* ==========================================================================
   VARIABLES DE PRÉCISION (Identiques à Odigital)
   ========================================================================== */
:root {
    --brand-blue: #2563eb;        /* Le bleu électrique précis */
    --text-main: #111827;         /* Gris très foncé presque noir */
    --text-muted: #6b7280;        /* Gris pour les descriptions */
    --border-light: #f3f4f6;      /* Bordures très claires */
    --bg-body: #ffffff;
    --bg-section: #f9fafb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --radius: 8px;                /* Arrondi standard du site */
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, sans-serif; /* Police système propre */
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   BLOC HEADER (Navigation flottante ultra-propre)
   ========================================================================== */
/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body {
    font-family: Arial, sans-serif;
}

body{
  font-family:Arial, sans-serif;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:#fff;
  box-shadow:0 4px 20px rgba(0,0,0,.06);
}

.nav-wrapper{
  max-width:1400px;
  margin:auto;
  padding:0 25px;
  height:82px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

/* LOGO */
.logo img{
  height:42px;
  display:block;
}

/* MENU */
.nav-menu{
  display:flex;
  align-items:center;
  gap:28px;
  flex:1;
  justify-content:center;
}

.nav-menu a{
  text-decoration:none;
  color:#222;
  font-size:14px;
  font-weight:600;
  text-transform:uppercase;
  transition:.25s;
}

.nav-menu a:hover{
  color:#16a34a;
}

/* CTA */
.nav-cta{
  background:#16a34a;
  color:#fff;
  text-decoration:none;
  padding:14px 22px;
  border-radius:0;
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
  transition:.25s;
}

.nav-cta:hover{
  background:#12813a;
}

/* BURGER */
.burger{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  width:42px;
  height:42px;
}

.burger span{
  display:block;
  width:28px;
  height:3px;
  background:#222;
  margin:5px auto;
  border-radius:2px;
  transition:.3s;
}

/* MOBILE */
@media (max-width: 1100px){

  .burger{
    display:block;
  }

  .nav-menu{
    position:absolute;
    top:82px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
    transition:.3s;
  }

  .nav-menu.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .nav-menu a{
    width:100%;
    padding:14px 0;
    border-bottom:1px solid #eee;
  }

  .nav-cta{
    display:none;
  }

  .nav-wrapper{
    height:76px;
  }
}

/* PETIT MOBILE */
@media (max-width: 600px){

  .logo img{
    height:36px;
  }

  .nav-wrapper{
    padding:0 18px;
  }
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.badge {
    display: inline-block;
    background: #2cb34a;
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: bold;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #1ea63a;
}

.hero p {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 35px;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 28px;
    border-radius: 0px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn-primary {
    background: #1ea63a;
    color: white;
}

.btn-primary:hover {
    background: #16882f;
}

.btn-secondary {
    background: #f2f2f2;
    color: #111;
}

.btn-secondary:hover {
    background: #ddd;
}

.btn-cta {
    background: #1ea63a;
    color: white;
    border-radius: 10px;

}

.btn-cta:hover {
    background: #16882f;
}

.btn-cta2 {
    background: #f2f2f2;
    color: #111;
    border-radius: 10px;
    
}

.btn-cta2:hover {
    background: #ddd;
}

/* Partie verte à droite */
.shape-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, #00a62c, #23c74e);
    border-bottom-left-radius: 300px;
    z-index: 1;
}

/* lignes décoratives */
.shape-right::before,
.shape-right::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
}

.shape-right::before {
    top: 10%;
    left: -20%;
}

.shape-right::after {
    top: 30%;
    left: -10%;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 48px;
    }

    .shape-right {
        width: 55%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 18px;
    }

    .shape-right {
        width: 100%;
        height: 45%;
        top: auto;
        bottom: 0;
        border-radius: 120px 120px 0 0;
    }}

/* =========================
   TABLETTE
========================= */
@media (max-width: 992px) {

    .hero {
        padding: 80px 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .shape-right {
        width: 50%;
    }
}


/* =========================
   SMARTPHONE
========================= */
@media (max-width: 768px) {

    .hero {
        padding: 60px 20px 280px;
        text-align: center;
        align-items: flex-start;
    }

    .container {
        width: 100%;
    }

    .hero-content {
        max-width: 100%;
        margin: auto;
    }

    .badge {
        font-size: 12px;
        padding: 8px 14px;
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }

    /* Forme verte en bas */
    .shape-right {
        width: 100%;
        height: 220px;
        bottom: 0;
        top: auto;
        right: 0;
        border-radius: 80px 80px 0 0;
    }

    .shape-right::before,
    .shape-right::after {
        width: 140%;
        height: 140%;
        left: -20%;
    }
}


/* =========================
   PETIT SMARTPHONE
========================= */
@media (max-width: 480px) {

    .hero {
        padding: 50px 15px 240px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .shape-right {
        height: 180px;
    }}

    .hero-points {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-points span {
    font-size: 15px;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-points i {
    color: #16a34a;
    font-size: 18px;
}

.hero-location {
    font-size: 15px;
    color: #4b5563;
}

.hero-location i {
    color: #16a34a;
    margin-right: 6px;
}

    /* =========================
   REALISATIONS
========================= */

.realisations {
    padding: 90px 0;
    background: #fff;
}

.realisations .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
    gap: 20px;
}

.mini-badge {
    display: inline-block;
    background: #e8f8ec;
    color: #16a34a;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 42px;
    color: #111;
    font-weight: 800;
}

.btn-projects {
    background: #f3f3f3;
    color: #111;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.btn-projects:hover {
    background: #ddd;
}

/* Cards */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.project-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.project-content {
    padding: 24px;
}

.tag {
    display: inline-block;
    background: #e8f8ec;
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.project-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111;
}

.project-content p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 18px;
}

.project-content a {
    color: #16a34a;
    font-weight: 700;
}

.project-content a:hover {
    text-decoration: underline;
}

/* =========================
   TABLETTE
========================= */

@media (max-width: 992px) {

    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-header h2 {
        font-size: 34px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .realisations {
        padding: 70px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .projects-grid {
        display: grid;              /* ⬅️ IMPORTANT */
        grid-template-columns: 1fr; /* ⬅️ 1 colonne */
        gap: 18px;
    }

    .project-card {
        width: 100%; /* ⬅️ sécurité */
    }

    .project-card img {
        height: 190px;
    }
}
/* =========================
   PETIT MOBILE
========================= */

@media (max-width: 480px) {

    .section-header h2 {
        font-size: 26px;
    }

    .project-card {
        min-width: 260px;
    }

    .project-content {
        padding: 20px;
    }
}

.offer-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0ea63b, #0b8d31);
    overflow: hidden;
}

/* Effets décoratifs */
.offer-banner::before,
.offer-banner::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
}

.offer-banner::before {
    left: -180px;
    bottom: -180px;
}

.offer-banner::after {
    right: -180px;
    top: -180px;
}

.offer-banner .container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 420px;
    gap: 50px;
    align-items: center;
}

/* Badge */
.offer-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}

/* Titre */
.offer-left h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

/* Prix */
.offer-price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 10px;
}

.offer-price strong {
    font-size: 70px;
    line-height: 1;
    color: #fff;
    font-weight: 900;
}

.offer-price span {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-left small {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
}

/* Liste */
.offer-middle ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-middle li {
    color: #fff;
    font-size: 18px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-middle i {
    color: #d9ffe3;
    font-size: 18px;
}

/* Box blanche */
.offer-box {
    background: #fff;
    padding: 38px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.offer-box h3 {
    font-size: 32px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 18px;
    font-weight: 800;
}

.offer-box p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
}

.offer-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #ff8a00;
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

.offer-btn:hover {
    background: #e97800;
    transform: translateY(-2px);
}

/* =========================
TABLETTE
========================= */
@media (max-width: 1100px) {

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .offer-box {
        max-width: 550px;
    }

    .offer-left h2 {
        font-size: 36px;
    }
}

/* =========================
SMARTPHONE
========================= */
@media (max-width: 768px) {

    .offer-banner {
        padding: 60px 0;
    }

    .offer-left h2 {
        font-size: 30px;
    }

    .offer-price strong {
        font-size: 52px;
    }

    .offer-price span {
        font-size: 22px;
    }

    .offer-middle li {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .offer-box {
        padding: 26px;
    }

    .offer-box h3 {
        font-size: 24px;
    }

    .offer-box p {
        font-size: 15px;
    }
}


.process-section {
    padding: 90px 0;
    background: #f4faf5;
}

.process-section .container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

/* Header */
.process-header {
    text-align: center;
    margin-bottom: 55px;
}

.process-badge {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: .5px;
}

.process-header h2 {
    font-size: 46px;
    line-height: 1.2;
    color: #111;
    font-weight: 800;
    margin: 0;
}

/* Grid */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    gap: 18px;
    align-items: center;
}

/* Card */
.process-card {
    background: #fff;
    border-radius: 22px;
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: .35s ease;
    min-height: 260px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.process-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.process-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 14px;
}

.process-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Arrows */
.process-arrow {
    text-align: center;
    color: #16a34a;
    font-size: 18px;
    font-weight: bold;
}

/* =========================
TABLETTE
========================= */
@media (max-width: 1100px) {

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .process-arrow {
        display: none;
    }

    .process-header h2 {
        font-size: 38px;
    }

    .process-card {
        min-height: auto;
    }
}

/* =========================
SMARTPHONE
========================= */
@media (max-width: 768px) {

    .process-section {
        padding: 70px 0;
    }

    .process-header {
        margin-bottom: 35px;
    }

    .process-header h2 {
        font-size: 30px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .process-card {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .process-icon {
        width: 58px;
        height: 58px;
        font-size: 22px;
        margin-bottom: 18px;
    }

    .process-card h3 {
        font-size: 21px;
    }

    .process-card p {
        font-size: 15px;
    }
}

/* =========================
SECTION ILS NOUS FONT CONFIANCE
À coller dans style.css
========================= */

.trust-section {
    padding: 90px 0;
    background: #ffffff;
}

.trust-section .container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

/* Header */
.trust-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-badge {
    display: inline-block;
    background: #eaf8ee;
    color: #16a34a;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: .5px;
}

.trust-header h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #111;
    font-weight: 800;
    margin: 0;
}

/* Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.trust-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    transition: .35s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}

.stars {
    color: #f5b301;
    font-size: 18px;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.trust-text {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 28px;
    min-height: 135px;
}

/* User */
.trust-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-user img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.trust-user h4 {
    font-size: 17px;
    color: #111;
    margin: 0 0 4px;
    font-weight: 800;
}

.trust-user span {
    font-size: 14px;
    color: #777;
}

/* =========================
TABLETTE
========================= */
@media (max-width: 992px) {

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-header h2 {
        font-size: 36px;
    }
}

/* =========================
SMARTPHONE
========================= */
@media (max-width: 768px) {

    .trust-section {
        padding: 70px 0;
    }

    .trust-header {
        margin-bottom: 35px;
    }

    .trust-header h2 {
        font-size: 28px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .trust-card {
        padding: 24px;
        border-radius: 18px;
    }

    .trust-text {
        font-size: 15px;
        min-height: auto;
        margin-bottom: 22px;
    }

    .trust-user img {
        width: 48px;
        height: 48px;
    }

    .trust-user h4 {
        font-size: 16px;
    }

    .trust-user span {
        font-size: 13px;
    }
}

/* =========================
FOOTER O'DIGITAL
À coller dans style.css
========================= */

.site-footer {
    background: linear-gradient(135deg, #0d1320, #111827);
    color: #fff;
    padding: 75px 0 25px;
    position: relative;
    overflow: hidden;
}

/* Décoration */
.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
}

.site-footer::before {
    width: 300px;
    height: 300px;
    left: -140px;
    bottom: -140px;
}

.site-footer::after {
    width: 220px;
    height: 220px;
    right: -100px;
    top: 30px;
}

.site-footer .container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 45px;
    margin-bottom: 45px;
}

/* Logo */
.footer-brand img {
    max-width: 190px;
    margin-bottom: 18px;
}

.footer-brand p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    font-size: 15px;
    max-width: 320px;
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s ease;
}

.footer-socials a:hover {
    background: #16a34a;
    transform: translateY(-3px);
}

/* Titres */
.footer-col h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
}

/* Listes */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
}

.footer-col a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: .3s ease;
}

.footer-col a:hover {
    color: #16a34a;
    padding-left: 4px;
}

.footer-col i {
    color: #16a34a;
    min-width: 18px;
}

/* Contact */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #16a34a;
    min-width: 18px;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 22px;
    text-align: center;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

/* =========================
TABLETTE
========================= */
@media (max-width: 992px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

/* =========================
SMARTPHONE
========================= */
@media (max-width: 768px) {

    .site-footer {
        padding: 60px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand p {
        margin: auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-col a:hover {
        padding-left: 0;
    }
}


* =========================
SECTION PROBLÈME -> SOLUTION
========================= */

.problem-solution{
  padding:100px 20px;
  background:#ffffff;
}

.ps-container{
  max-width:1280px;
  margin:auto;
}

/* Titre */
.ps-heading{
  text-align:center;
  max-width:850px;
  margin:0 auto 60px;
}

.ps-badge{
  display:inline-block;
  background:#16a34a;
  color:#fff;
  font-size:13px;
  font-weight:700;
  padding:10px 18px;
  border-radius:30px;
  letter-spacing:.5px;
  margin-bottom:18px;
}

.ps-heading h2{
  font-size:48px;
  line-height:1.15;
  font-weight:800;
  color:#111;
  margin-bottom:20px;
}

.ps-heading h2 span{
  color:#16a34a;
}

.ps-heading p{
  font-size:18px;
  color:#666;
  line-height:1.7;
}

/* Grid */
.ps-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  margin-bottom:45px;
}

/* Cards */
.ps-card{
  background:#fff;
  border-radius:24px;
  padding:40px;
  box-shadow:0 15px 45px rgba(0,0,0,0.06);
  position:relative;
  overflow:hidden;
}

.ps-card h3{
  font-size:28px;
  font-weight:800;
  margin-bottom:25px;
}

.ps-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.ps-card li{
  font-size:17px;
  color:#444;
  padding:14px 0;
  border-bottom:1px solid #f1f1f1;
}

.ps-card li:last-child{
  border-bottom:none;
}

/* Icônes */
.ps-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:800;
  margin-bottom:20px;
}

/* Style problème */
.problem{
  border-top:6px solid #ef4444;
}

.problem .ps-icon{
  background:#fee2e2;
  color:#ef4444;
}

/* Style solution */
.solution{
  border-top:6px solid #16a34a;
}

.solution .ps-icon{
  background:#dcfce7;
  color:#16a34a;
}

/* CTA */
.ps-bottom{
  text-align:center;
}

.ps-btn{
  display:inline-block;
  background:#16a34a;
  color:#fff;
  text-decoration:none;
  padding:18px 34px;
  font-size:16px;
  font-weight:700;
  border-radius:12px;
  transition:0.3s ease;
}

.ps-btn:hover{
  background:#12803b;
  transform:translateY(-2px);
}

/* =========================
TABLETTE
========================= */
@media (max-width:992px){

  .ps-heading h2{
    font-size:38px;
  }

  .ps-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  .ps-card{
    padding:35px;
  }
}

/* =========================
SMARTPHONE
========================= */
@media (max-width:768px){

  .problem-solution{
    padding:70px 18px;
  }

  .ps-heading{
    margin-bottom:40px;
  }

  .ps-heading h2{
    font-size:30px;
  }

  .ps-heading p{
    font-size:16px;
  }

  .ps-card{
    padding:28px 24px;
    border-radius:18px;
  }

  .ps-card h3{
    font-size:24px;
  }

  .ps-card li{
    font-size:15px;
    padding:12px 0;
  }

  .ps-btn{
    width:100%;
    text-align:center;
    padding:16px;
  }
}

/* =========================
SECTION 3 - SERVICES
========================= */

.services-section{
  padding:100px 20px;
  background:#f8fafc;
}

.services-container{
  max-width:1280px;
  margin:auto;
}

/* Header */
.services-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 60px;
}

.services-badge{
  display:inline-block;
  background:#16a34a;
  color:#fff;
  font-size:13px;
  font-weight:700;
  padding:10px 18px;
  border-radius:30px;
  margin-bottom:18px;
  letter-spacing:.5px;
}

.services-header h2{
  font-size:48px;
  line-height:1.15;
  font-weight:800;
  color:#111;
  margin-bottom:20px;
}

.services-header h2 span{
  color:#16a34a;
}

.services-header p{
  font-size:18px;
  color:#666;
  line-height:1.7;
}

/* Grid */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* Card */
.service-card{
  background:#fff;
  padding:35px 30px;
  border-radius:22px;
  box-shadow:0 12px 35px rgba(0,0,0,0.06);
  transition:.3s ease;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.service-icon{
  width:58px;
  height:58px;
  border-radius:16px;
  background:#dcfce7;
  color:#16a34a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:20px;
}

.service-card h3{
  font-size:24px;
  font-weight:800;
  color:#111;
  margin-bottom:14px;
}

.service-card p{
  font-size:16px;
  color:#666;
  line-height:1.7;
}

/* Carte mise en avant */
.service-card.featured{
  background:linear-gradient(135deg,#16a34a,#22c55e);
  color:#fff;
}

.service-card.featured h3,
.service-card.featured p{
  color:#fff;
}

.service-card.featured .service-icon{
  background:rgba(255,255,255,0.18);
  color:#fff;
}

.service-btn{
  display:inline-block;
  margin-top:18px;
  background:#fff;
  color:#16a34a;
  text-decoration:none;
  padding:14px 22px;
  border-radius:12px;
  font-size:14px;
  font-weight:700;
  transition:.3s ease;
}

.service-btn:hover{
  transform:translateY(-2px);
}

/* =========================
TABLETTE
========================= */
@media (max-width:992px){

  .services-header h2{
    font-size:38px;
  }

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* =========================
SMARTPHONE
========================= */
@media (max-width:768px){

  .services-section{
    padding:70px 18px;
  }

  .services-header{
    margin-bottom:40px;
  }

  .services-header h2{
    font-size:30px;
  }

  .services-header p{
    font-size:16px;
  }

  .services-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .service-card{
    padding:28px 24px;
    border-radius:18px;
  }

  .service-card h3{
    font-size:21px;
  }

  .service-card p{
    font-size:15px;
  }

  .service-btn{
    width:100%;
    text-align:center;
  }
}

/* =========================
SECTION SEO
========================= */

.seo-section{
  padding:100px 20px;
  background:#ffffff;
  overflow:hidden;
}

.seo-container{
  max-width:1280px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}

/* Left */
.seo-badge{
  display:inline-block;
  background:#16a34a;
  color:#fff;
  font-size:13px;
  font-weight:700;
  padding:10px 18px;
  border-radius:30px;
  margin-bottom:18px;
  letter-spacing:.5px;
}

.seo-content h2{
  font-size:48px;
  line-height:1.15;
  font-weight:800;
  color:#111;
  margin-bottom:20px;
}

.seo-content h2 span{
  color:#16a34a;
}

.seo-intro{
  font-size:18px;
  color:#666;
  line-height:1.7;
  margin-bottom:35px;
}

/* List */
.seo-list{
  display:grid;
  gap:18px;
  margin-bottom:35px;
}

.seo-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:#f8fafc;
  padding:18px 20px;
  border-radius:18px;
}

.seo-icon{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#dcfce7;
  color:#16a34a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  flex-shrink:0;
}

.seo-item h3{
  font-size:18px;
  font-weight:800;
  margin-bottom:5px;
  color:#111;
}

.seo-item p{
  font-size:15px;
  color:#666;
  line-height:1.6;
}

/* CTA */
.seo-btn{
  display:inline-block;
  background:#16a34a;
  color:#fff;
  text-decoration:none;
  padding:16px 28px;
  border-radius:12px;
  font-weight:700;
  transition:.3s ease;
}

.seo-btn:hover{
  background:#12803b;
  transform:translateY(-2px);
}

/* Right visual */
.seo-visual{
  position:relative;
  min-height:520px;
}

.seo-bg-shape{
  position:absolute;
  inset:40px 0 0 60px;
  background:linear-gradient(135deg,#16a34a,#22c55e);
  border-radius:40px;
  z-index:1;
}

.seo-card{
  position:absolute;
  background:#fff;
  border-radius:22px;
  padding:26px;
  box-shadow:0 20px 45px rgba(0,0,0,0.08);
  z-index:2;
}

.main-card{
  top:30px;
  left:0;
  width:320px;
}

.main-card .seo-small{
  font-size:13px;
  color:#16a34a;
  font-weight:700;
  display:block;
  margin-bottom:10px;
}

.main-card h4{
  font-size:28px;
  font-weight:800;
  margin-bottom:8px;
  color:#111;
}

.main-card p{
  color:#666;
  font-size:15px;
}

.stat-card{
  top:260px;
  right:20px;
  width:220px;
  text-align:center;
}

.stat-card strong,
.traffic-card strong{
  display:block;
  font-size:32px;
  font-weight:800;
  color:#16a34a;
  margin-bottom:6px;
}

.stat-card span,
.traffic-card span{
  font-size:14px;
  color:#666;
}

.traffic-card{
  bottom:10px;
  left:60px;
  width:240px;
  text-align:center;
}

/* =========================
TABLETTE
========================= */
@media (max-width:992px){

  .seo-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .seo-content h2{
    font-size:38px;
  }

  .seo-visual{
    min-height:500px;
  }
}

/* =========================
SMARTPHONE
========================= */
@media (max-width:768px){

  .seo-section{
    padding:70px 18px;
  }

  .seo-content h2{
    font-size:30px;
  }

  .seo-intro{
    font-size:16px;
  }

  .seo-item{
    padding:16px;
    border-radius:16px;
  }

  .seo-item h3{
    font-size:16px;
  }

  .seo-item p{
    font-size:14px;
  }

  .seo-btn{
    width:100%;
    text-align:center;
  }

  /* Visual mobile */
  .seo-visual{
    min-height:auto;
    display:flex;
    flex-direction:column;
    gap:16px;
  }

  .seo-bg-shape{
    display:none;
  }

  .seo-card{
    position:relative;
    width:100%;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    padding:22px;
  }

  .main-card h4{
    font-size:24px;
  }

  .stat-card strong,
  .traffic-card strong{
    font-size:26px;
  }
}

/* =========================
SECTION FAQ SEO
========================= */

.faq-section{
  padding:100px 20px;
  background:#f8fafc;
}

.faq-container{
  max-width:1000px;
  margin:auto;
}

/* Header */
.faq-header{
  text-align:center;
  margin-bottom:55px;
}

.faq-badge{
  display:inline-block;
  background:#16a34a;
  color:#fff;
  font-size:13px;
  font-weight:700;
  padding:10px 18px;
  border-radius:30px;
  margin-bottom:18px;
  letter-spacing:.5px;
}

.faq-header h2{
  font-size:46px;
  line-height:1.15;
  font-weight:800;
  color:#111;
  margin-bottom:18px;
}

.faq-header h2 span{
  color:#16a34a;
}

.faq-header p{
  font-size:18px;
  color:#666;
  line-height:1.7;
  max-width:760px;
  margin:auto;
}

/* FAQ list */
.faq-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* Item */
.faq-item{
  background:#fff;
  border-radius:18px;
  box-shadow:0 12px 35px rgba(0,0,0,0.05);
  overflow:hidden;
  transition:.3s ease;
}

.faq-item[open]{
  box-shadow:0 18px 40px rgba(0,0,0,0.07);
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:24px 28px;
  font-size:20px;
  font-weight:700;
  color:#111;
  position:relative;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

/* Plus / minus */
.faq-item summary::after{
  content:"+";
  position:absolute;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border-radius:50%;
  background:#dcfce7;
  color:#16a34a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:700;
}

.faq-item[open] summary::after{
  content:"−";
}

/* Content */
.faq-content{
  padding:0 28px 24px;
}

.faq-content p{
  font-size:16px;
  color:#666;
  line-height:1.8;
}

/* CTA */
.faq-bottom{
  text-align:center;
  margin-top:45px;
}

.faq-btn{
  display:inline-block;
  background:#16a34a;
  color:#fff;
  text-decoration:none;
  padding:16px 28px;
  border-radius:12px;
  font-weight:700;
  transition:.3s ease;
}

.faq-btn:hover{
  background:#12803b;
  transform:translateY(-2px);
}

/* =========================
TABLETTE
========================= */
@media (max-width:992px){

  .faq-header h2{
    font-size:38px;
  }

  .faq-item summary{
    font-size:18px;
  }
}

/* =========================
SMARTPHONE
========================= */
@media (max-width:768px){

  .faq-section{
    padding:70px 18px;
  }

  .faq-header{
    margin-bottom:38px;
  }

  .faq-header h2{
    font-size:30px;
  }

  .faq-header p{
    font-size:16px;
  }

  .faq-item{
    border-radius:16px;
  }

  .faq-item summary{
    padding:20px 18px;
    padding-right:58px;
    font-size:16px;
    line-height:1.5;
  }

  .faq-item summary::after{
    right:16px;
    width:30px;
    height:30px;
    font-size:20px;
  }

  .faq-content{
    padding:0 18px 20px;
  }

  .faq-content p{
    font-size:15px;
  }

  .faq-btn{
    width:100%;
    text-align:center;
  }
}

/* ===================================
FORMULAIRE CTA COMPLET
=================================== */

.launch-page{
  padding:100px 20px;
  background:linear-gradient(180deg,#ffffff 0%, #f8fafc 100%);
}

.launch-container{
  max-width:1280px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:50px;
  align-items:start;
}

/* LEFT */
.launch-badge{
  display:inline-block;
  background:#16a34a;
  color:#fff;
  padding:10px 18px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}

.launch-content h1{
  font-size:52px;
  line-height:1.1;
  font-weight:800;
  color:#111;
  margin-bottom:20px;
}

.launch-content h1 span{
  color:#16a34a;
}

.launch-content p{
  font-size:18px;
  color:#666;
  line-height:1.8;
  margin-bottom:35px;
}

.launch-benefits{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.benefit-item{
  background:#fff;
  padding:16px;
  border-radius:14px;
  font-weight:600;
  box-shadow:0 8px 20px rgba(0,0,0,0.04);
}

/* FORM */
.launch-form-box{
  background:#fff;
  padding:38px;
  border-radius:28px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.launch-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.form-group{
  display:flex;
  flex-direction:column;
}

.form-group.full{
  grid-column:1 / -1;
}

.form-group label{
  font-size:14px;
  font-weight:700;
  margin-bottom:8px;
  color:#111;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:14px 16px;
  font-size:15px;
  outline:none;
  transition:.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:#16a34a;
  box-shadow:0 0 0 4px rgba(22,163,74,0.08);
}

.launch-btn{
  width:100%;
  border:none;
  background:#16a34a;
  color:#fff;
  padding:18px;
  border-radius:14px;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:.3s ease;
}

.launch-btn:hover{
  background:#12803b;
}

/* TABLETTE */
@media (max-width:992px){

  .launch-container{
    grid-template-columns:1fr;
  }

  .launch-content h1{
    font-size:40px;
  }
}

/* MOBILE */
@media (max-width:768px){

  .launch-page{
    padding:70px 18px;
  }

  .launch-content h1{
    font-size:30px;
  }

  .launch-content p{
    font-size:16px;
  }

  .launch-benefits{
    grid-template-columns:1fr;
  }

  .launch-form-box{
    padding:24px;
    border-radius:20px;
  }

  .launch-form{
    grid-template-columns:1fr;
  }

  .form-group.full{
    grid-column:auto;
  }
}

.contact-page{
    background:#fff;
}

/* HERO */
.contact-hero{
    padding:100px 20px 70px;
    text-align:center;
    background:linear-gradient(135deg,#f8fff9,#ffffff);
}

.contact-badge{
    display:inline-block;
    background:#16a34a;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.contact-hero h1{
    font-size:52px;
    font-weight:800;
    margin-bottom:15px;
}

.contact-hero h1 span{
    color:#16a34a;
}

.contact-hero p{
    font-size:18px;
    color:#666;
    max-width:700px;
    margin:auto;
}

/* GRID */
.contact-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:40px;
    padding:70px 0;
}

/* FORM */
.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.contact-form-box h2{
    font-size:30px;
    margin-bottom:25px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:15px;
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{
    outline:none;
    border-color:#16a34a;
}

.contact-form-box textarea{
    margin-bottom:20px;
    resize:none;
}

.btn-contact{
    width:100%;
    background:#16a34a;
    color:#fff;
    border:none;
    padding:16px;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.btn-contact:hover{
    background:#12803a;
}

/* INFOS */
.contact-info-box{
    background:#f8f8f8;
    padding:40px;
    border-radius:20px;
}

.contact-info-box h2{
    font-size:30px;
    margin-bottom:30px;
}

.info-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.info-item i{
    width:50px;
    height:50px;
    background:#16a34a;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
}

.info-item h3{
    font-size:18px;
    margin-bottom:5px;
}

.info-item p{
    color:#666;
    margin:0;
}

/* CTA */
.contact-cta{
    background:#16a34a;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.contact-cta h2{
    font-size:38px;
    margin-bottom:20px;
}

.cta-btn{
    display:inline-block;
    background:#fff;
    color:#16a34a;
    padding:16px 30px;
    border-radius:12px;
    font-weight:700;
    text-decoration:none;
}

.cta-btn:hover{
    background:#f2f2f2;
}

/* MOBILE */
@media(max-width:992px){

    .contact-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .contact-hero h1{
        font-size:36px;
    }

    .contact-form-box,
    .contact-info-box{
        padding:25px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-cta h2{
        font-size:28px;
    }

}

/* =========================
   PAGE MENTIONS LEGALES
========================= */

.legal-page{
    background:#fff;
}

/* HERO */
.legal-hero{
    padding:100px 20px 70px;
    text-align:center;
    background:linear-gradient(135deg,#f8fff9,#ffffff);
}

.legal-badge{
    display:inline-block;
    background:#16a34a;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.legal-hero h1{
    font-size:52px;
    font-weight:800;
    margin-bottom:15px;
    color:#111;
}

.legal-hero h1 span{
    color:#16a34a;
}

.legal-hero p{
    font-size:18px;
    color:#666;
    max-width:760px;
    margin:auto;
    line-height:1.6;
}

/* CONTENU */
.legal-wrapper{
    padding:70px 0;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.legal-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.legal-card h2{
    font-size:26px;
    margin-bottom:18px;
    color:#111;
}

.legal-card p{
    font-size:16px;
    color:#555;
    line-height:1.8;
    margin-bottom:10px;
}

/* CTA */
.legal-cta{
    background:#16a34a;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.legal-cta h2{
    font-size:36px;
    font-weight:800;
    margin-bottom:20px;
}

.legal-btn{
    display:inline-block;
    background:#fff;
    color:#16a34a;
    padding:15px 28px;
    border-radius:12px;
    font-weight:700;
    text-decoration:none;
    transition:0.3s ease;
}

.legal-btn:hover{
    background:#f2f2f2;
    transform:translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:768px){

    .legal-hero{
        padding:80px 15px 50px;
    }

    .legal-hero h1{
        font-size:36px;
    }

    .legal-hero p{
        font-size:16px;
    }

    .legal-wrapper{
        padding:50px 0;
        gap:18px;
    }

    .legal-card{
        padding:22px;
        border-radius:14px;
    }

    .legal-card h2{
        font-size:22px;
    }

    .legal-card p{
        font-size:15px;
    }

    .legal-cta h2{
        font-size:28px;
    }

    .legal-btn{
        width:100%;
        max-width:320px;
    }
}

/* =========================
   PAGE CGV
========================= */

.cgv-page{
    background:#fff;
}

/* HERO */
.cgv-hero{
    padding:100px 20px 70px;
    text-align:center;
    background:linear-gradient(135deg,#f8fff9,#ffffff);
}

.cgv-badge{
    display:inline-block;
    background:#16a34a;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.cgv-hero h1{
    font-size:52px;
    font-weight:800;
    margin-bottom:15px;
    color:#111;
}

.cgv-hero h1 span{
    color:#16a34a;
}

.cgv-hero p{
    max-width:760px;
    margin:auto;
    font-size:18px;
    color:#666;
    line-height:1.6;
}

/* TRUST */
.cgv-trust{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-top:-20px;
    margin-bottom:50px;
}

.trust-box{
    background:#fff;
    border:1px solid #eee;
    border-radius:14px;
    padding:18px;
    text-align:center;
    font-weight:700;
    box-shadow:0 8px 25px rgba(0,0,0,0.04);
}

/* CONTENT */
.cgv-wrapper{
    display:flex;
    flex-direction:column;
    gap:22px;
    padding-bottom:70px;
}

.cgv-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.cgv-card h2{
    font-size:26px;
    margin-bottom:18px;
    color:#111;
}

.cgv-card p,
.cgv-card li{
    font-size:16px;
    color:#555;
    line-height:1.8;
}

.cgv-card ul{
    margin:10px 0 10px 20px;
}

/* CTA */
.cgv-cta{
    background:#16a34a;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.cgv-cta h2{
    font-size:36px;
    font-weight:800;
    margin-bottom:20px;
}

.cgv-btn{
    display:inline-block;
    background:#fff;
    color:#16a34a;
    padding:15px 28px;
    border-radius:12px;
    font-weight:700;
    text-decoration:none;
    transition:0.3s ease;
}

.cgv-btn:hover{
    background:#f2f2f2;
    transform:translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:992px){

    .cgv-trust{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .cgv-hero{
        padding:80px 15px 50px;
    }

    .cgv-hero h1{
        font-size:36px;
    }

    .cgv-hero p{
        font-size:16px;
    }

    .cgv-trust{
        grid-template-columns:1fr;
        margin-bottom:35px;
    }

    .trust-box{
        padding:14px;
    }

    .cgv-card{
        padding:22px;
        border-radius:14px;
    }

    .cgv-card h2{
        font-size:22px;
    }

    .cgv-card p,
    .cgv-card li{
        font-size:15px;
    }

    .cgv-cta h2{
        font-size:28px;
    }

    .cgv-btn{
        width:100%;
        max-width:320px;
    }
}

/* =========================
   BLOG
========================= */

.blog-section {
    padding: 90px 0;
    background: #f9fafb;
}

.blog-section .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* Bouton */
.btn-articles {
    background: #f3f3f3;
    color: #111;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.btn-articles:hover {
    background: #ddd;
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .3s;
}

.blog-card:hover {
    transform: translateY(-6px);
}

/* Image */
.blog-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

/* Content */
.blog-content {
    padding: 22px;
}

.blog-tag {
    display: inline-block;
    background: #e8f8ec;
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-content a {
    color: #16a34a;
    font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 70px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-card img {
        height: 180px;
    }
}

/* =========================
BLOG PAGE
========================= */

.blog-page {
    padding: 60px 0;
}

.blog-page .container {
    max-width: 900px;
}

/* HERO */
.blog-hero {
    margin-bottom: 40px;
}

.blog-category {
    display: inline-block;
    background: #e8f8ec;
    color: #16a34a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-hero h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.blog-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.blog-hero img {
    width: 100%;
    border-radius: 14px;
}

/* CONTENT */
.blog-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 20px;
    margin-top: 25px;
}

.blog-content p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.blog-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.blog-content li {
    margin-bottom: 8px;
}

/* CTA */
.blog-cta {
    background: #f4faf5;
    padding: 25px;
    border-radius: 14px;
    margin-top: 40px;
    text-align: center;
}

.blog-cta a {
    display: inline-block;
    margin-top: 10px;
    background: #16a34a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
}

/* RELATED */
.related-articles {
    padding: 60px 0;
    background: #fafafa;
}

/* =========================
   BREADCRUMB
========================= */

.breadcrumb {
    padding: 18px 0;
    background: #f9fafb;
    font-size: 14px;
}

.breadcrumb .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Liens */
.breadcrumb a {
    color: #16a34a;
    text-decoration: none;
    font-weight: 500;
    transition: .2s;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Séparateur */
.separator {
    margin: 0 8px;
    color: #999;
}

/* Page actuelle */
.breadcrumb .current {
    color: #555;
    font-weight: 500;
}

/* =========================
   PAGE LOCALE
========================= */

.local-page {
    padding: 60px 0;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HERO */
.local-hero {
    text-align: center;
    margin-bottom: 60px;
}

.local-hero .badge {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.local-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.local-hero .intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

/* CONTENT */
.local-content {
    margin-bottom: 60px;
}

.local-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.local-content p {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
}

.local-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.local-content li {
    margin-bottom: 8px;
}

/* PROOF */
.local-proof {
    background: #f9fafb;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 60px;
}

/* CTA */
.local-cta {
    text-align: center;
}

.local-cta h2 {
    margin-bottom: 15px;
}

.local-cta p {
    margin-bottom: 25px;
}

/* BUTTONS */
.btn-primary {
    background: #16a34a;
    color: #fff;
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: #15803d;
}

.btn-secondary {
    background: #eee;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #111;
}

.btn-secondary:hover {
    background: #ddd;
}

/* MOBILE */
@media (max-width: 768px) {

    .local-hero h1 {
        font-size: 30px;
    }

    .local-hero .intro {
        font-size: 16px;
    }

    .local-proof {
        padding: 25px;
    }
}