:root {
    --orange: #E8622A;
    --orange-light: #F4956A;
    --terra: #C94E1F;
    --cream: #FAF6F0;
    --sand: #EDE5D8;
    --dark: #1C1612;
    --mid: #5C4A38;
    --muted: #9C8878;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    background: rgba(250,246,240,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232,98,42,0.12);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 4px 30px rgba(28,22,18,0.08); }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo-mark {
    width: 38px; height: 38px;
    background: var(--orange); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-family: var(--font-display);
    font-size: 18px; font-weight: 700; letter-spacing: -1px;
  }
  .logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--dark); letter-spacing: -0.3px; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--mid); font-size: 14px; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta { background: var(--orange) !important; color: white !important; padding: 10px 22px; border-radius: 50px; font-size: 14px !important; font-weight: 500 !important; }
  .nav-cta:hover { background: var(--terra) !important; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; padding: 72px 5% 0; gap: 60px;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(232,98,42,0.08) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 90% 80%, rgba(201,78,31,0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,98,42,0.1); color: var(--orange);
    border: 1px solid rgba(232,98,42,0.25);
    padding: 6px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 500; margin-bottom: 28px;
  }
  .hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
  .hero-title { font-family: var(--font-display); font-size: clamp(42px,5vw,72px); font-weight: 900; line-height: 1.05; letter-spacing: -2px; color: var(--dark); margin-bottom: 24px; }
  .hero-title em { font-style: italic; color: var(--orange); }
  .hero-sub { font-size: 18px; font-weight: 300; color: var(--mid); max-width: 480px; margin-bottom: 40px; line-height: 1.8; }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary { background: var(--orange); color: white; padding: 16px 32px; border-radius: 50px; text-decoration: none; font-weight: 500; font-size: 15px; transition: background 0.2s, transform 0.15s; box-shadow: 0 8px 24px rgba(232,98,42,0.28); }
  .btn-primary:hover { background: var(--terra); transform: translateY(-2px); }
  .btn-secondary { background: transparent; color: var(--dark); padding: 16px 32px; border-radius: 50px; text-decoration: none; font-weight: 500; font-size: 15px; border: 1.5px solid rgba(28,22,18,0.2); transition: border-color 0.2s, color 0.2s; }
  .btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
  .hero-visual { position: relative; }
  .hero-card-main { background: white; border-radius: 20px; padding: 32px; box-shadow: 0 24px 80px rgba(28,22,18,0.12); position: relative; z-index: 1; }
  .logo-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--sand) 0%, rgba(232,98,42,0.08) 100%); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border: 2px dashed rgba(232,98,42,0.3); margin-bottom: 20px; }
  .logo-placeholder span:first-child { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--orange); letter-spacing: -1px; }
  .logo-placeholder span:last-child { font-size: 12px; color: var(--muted); }
  .hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 20px; }
  .hero-stat { text-align: center; }
  .hero-stat strong { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--orange); line-height: 1; }
  .hero-stat span { font-size: 12px; color: var(--muted); }
  .hero-badge { position: absolute; top: -18px; right: -18px; background: var(--orange); color: white; width: 90px; height: 90px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; text-align: center; line-height: 1.3; box-shadow: 0 8px 24px rgba(232,98,42,0.35); z-index: 2; }
  .hero-badge strong { font-size: 16px; font-weight: 700; }

  /* ── SECTIONS ── */
  section { padding: 100px 5%; }
  .section-label { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
  .section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--orange); }
  .section-title { font-family: var(--font-display); font-size: clamp(32px,3.5vw,52px); font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; color: var(--dark); margin-bottom: 20px; }
  .section-title em { font-style: italic; color: var(--orange); }
  .section-sub { font-size: 17px; color: var(--mid); max-width: 540px; font-weight: 300; line-height: 1.8; }

  /* ── PROBLEME ── */
  #probleme { background: var(--dark); color: var(--cream); }
  #probleme .section-label { color: var(--orange-light); }
  #probleme .section-label::before { background: var(--orange-light); }
  #probleme .section-title { color: var(--cream); }
  #probleme .section-sub { color: rgba(250,246,240,0.6); }
  .pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px; align-items: center; }
  .pain-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
  .pain-item { display: flex; gap: 18px; align-items: flex-start; padding: 24px; background: rgba(250,246,240,0.04); border-radius: 14px; border: 1px solid rgba(250,246,240,0.08); transition: border-color 0.2s, background 0.2s; cursor: default; }
  .pain-item:hover { background: rgba(232,98,42,0.08); border-color: rgba(232,98,42,0.3); }
  .pain-icon { flex-shrink: 0; width: 40px; height: 40px; background: rgba(232,98,42,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
  .pain-item h4 { font-size: 15px; font-weight: 500; color: var(--cream); margin-bottom: 4px; }
  .pain-item p { font-size: 14px; color: rgba(250,246,240,0.55); line-height: 1.6; }
  .pain-solution { background: var(--orange); border-radius: 20px; padding: 40px; text-align: center; }
  .pain-solution h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: white; margin-bottom: 16px; line-height: 1.2; }
  .pain-solution p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 28px; }
  .btn-white { background: white; color: var(--orange); padding: 14px 28px; border-radius: 50px; text-decoration: none; font-weight: 500; font-size: 14px; display: inline-block; transition: transform 0.15s; }
  .btn-white:hover { transform: translateY(-2px); }

  /* ── SERVICES ── */
  #services { background: var(--cream); }
  .services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 60px; }
  .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .service-card { background: white; border-radius: 20px; padding: 36px 28px; border: 1px solid rgba(28,22,18,0.07); transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; cursor: pointer; position: relative; overflow: hidden; }
  .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(28,22,18,0.12); border-color: rgba(232,98,42,0.2); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-emoji { font-size: 32px; margin-bottom: 20px; display: block; }
  .service-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 12px; letter-spacing: -0.5px; }
  .service-card p { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 20px; }
  .service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .tag { background: var(--sand); color: var(--mid); padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 500; }

  /* ── POURQUOI ── */
  #pourquoi { background: var(--sand); }
  .pourquoi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; align-items: center; }
  .chiffres-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
  .chiffre-card { background: white; border-radius: 16px; padding: 28px 24px; border: 1px solid rgba(28,22,18,0.06); transition: transform 0.2s; }
  .chiffre-card:hover { transform: translateY(-3px); }
  .chiffre-card strong { display: block; font-family: var(--font-display); font-size: 42px; font-weight: 900; color: var(--orange); line-height: 1; letter-spacing: -2px; margin-bottom: 6px; }
  .chiffre-card span { font-size: 14px; color: var(--mid); }
  .valeurs-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
  .valeur-item { display: flex; gap: 16px; align-items: flex-start; }
  .valeur-num { flex-shrink: 0; width: 36px; height: 36px; background: var(--orange); color: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
  .valeur-item h4 { font-size: 15px; font-weight: 500; color: var(--dark); margin-bottom: 4px; }
  .valeur-item p { font-size: 14px; color: var(--mid); line-height: 1.6; }

  /* ── PORTFOLIO ── */
  #portfolio { background: var(--cream); }
  .portfolio-filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 40px 0 32px; }
  .filter-btn { padding: 8px 20px; border-radius: 50px; border: 1.5px solid rgba(28,22,18,0.15); background: transparent; color: var(--mid); font-size: 14px; font-weight: 500; cursor: pointer; font-family: var(--font-body); transition: all 0.2s; }
  .filter-btn:hover, .filter-btn.active { background: var(--orange); color: white; border-color: var(--orange); }
  .portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .portfolio-item { border-radius: 16px; overflow: hidden; background: white; border: 1px solid rgba(28,22,18,0.07); transition: transform 0.25s, box-shadow 0.25s; cursor: pointer; }
  .portfolio-item:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(28,22,18,0.1); }
  .portfolio-thumb { aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; font-size: 12px; color: var(--muted); }
  .portfolio-thumb .thumb-icon { font-size: 28px; }
  .portfolio-info { padding: 18px 20px; }
  .portfolio-cat { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange); margin-bottom: 6px; }
  .portfolio-info h4 { font-size: 15px; font-weight: 500; color: var(--dark); line-height: 1.3; }
  .portfolio-info p { font-size: 13px; color: var(--muted); margin-top: 4px; }
  .p1 .portfolio-thumb { background: linear-gradient(135deg,#FEE8D8,#FDDCC4); }
  .p2 .portfolio-thumb { background: linear-gradient(135deg,#E8F4E8,#D4EDD4); }
  .p3 .portfolio-thumb { background: linear-gradient(135deg,#E8EEF8,#D4DFF4); }
  .p4 .portfolio-thumb { background: linear-gradient(135deg,#F8F0E8,#F4E8D4); }
  .p5 .portfolio-thumb { background: linear-gradient(135deg,#F4E8F0,#EDD4E8); }
  .p6 .portfolio-thumb { background: linear-gradient(135deg,#F0F4E8,#E4EDD4); }

  /* ── TEMOIGNAGES ── */
  #temoignages { background: var(--dark); }
  #temoignages .section-label { color: var(--orange-light); }
  #temoignages .section-label::before { background: var(--orange-light); }
  #temoignages .section-title { color: var(--cream); }
  .temoignages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
  .temoignage-card { background: rgba(250,246,240,0.05); border: 1px solid rgba(250,246,240,0.1); border-radius: 20px; padding: 32px 28px; transition: background 0.2s, border-color 0.2s; }
  .temoignage-card:hover { background: rgba(232,98,42,0.08); border-color: rgba(232,98,42,0.3); }
  .stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
  .temoignage-card blockquote { font-size: 15px; color: rgba(250,246,240,0.8); line-height: 1.7; font-weight: 300; margin-bottom: 24px; font-style: italic; }
  .temoignage-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
  .author-name { font-size: 14px; font-weight: 500; color: var(--cream); }
  .author-role { font-size: 13px; color: rgba(250,246,240,0.45); }

  /* ── PROCESSUS ── */
  #processus { background: var(--cream); }
  .processus-intro { text-align: center; max-width: 600px; margin: 0 auto; }
  .processus-steps { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 60px; position: relative; }
  .processus-steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg,var(--orange),var(--orange-light)); z-index: 0; }
  .step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
  .step-num { width: 72px; height: 72px; background: white; border: 3px solid var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--orange); margin: 0 auto 24px; transition: background 0.2s, color 0.2s; }
  .step:hover .step-num { background: var(--orange); color: white; }
  .step h4 { font-size: 16px; font-weight: 500; color: var(--dark); margin-bottom: 8px; }
  .step p { font-size: 13px; color: var(--mid); line-height: 1.6; }

  /* ── CONTACT ── */
  #contact { background: var(--sand); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; align-items: start; }
  .contact-info h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 12px; letter-spacing: -0.5px; }
  .contact-info > p { font-size: 16px; color: var(--mid); line-height: 1.7; margin-bottom: 36px; font-weight: 300; }
  .contact-details { display: flex; flex-direction: column; gap: 16px; }
  .contact-detail { display: flex; gap: 14px; align-items: center; font-size: 15px; color: var(--dark); }
  .contact-detail-icon { width: 40px; height: 40px; background: var(--orange); color: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
  .contact-form { background: white; border-radius: 20px; padding: 40px; box-shadow: 0 12px 40px rgba(28,22,18,0.08); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--mid); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 1.5px solid rgba(28,22,18,0.12); border-radius: 10px; font-family: var(--font-body); font-size: 15px; color: var(--dark); background: var(--cream); outline: none; transition: border-color 0.2s; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-submit { width: 100%; background: var(--orange); color: white; border: none; padding: 16px; border-radius: 50px; font-family: var(--font-body); font-size: 16px; font-weight: 500; cursor: pointer; transition: background 0.2s, transform 0.15s; box-shadow: 0 8px 24px rgba(232,98,42,0.25); }
  .form-submit:hover { background: var(--terra); transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer { background: var(--dark); color: rgba(250,246,240,0.6); padding: 60px 5% 30px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
  .footer-brand .logo-text { color: var(--cream); margin-bottom: 12px; display: block; }
  .footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
  .footer-col h5 { font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; color: var(--cream); margin-bottom: 16px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 14px; color: rgba(250,246,240,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--orange-light); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(250,246,240,0.08); font-size: 13px; }
  .social-links { display: flex; gap: 12px; }
  .social-link { width: 36px; height: 36px; background: rgba(250,246,240,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 16px; transition: background 0.2s; }
  .social-link:hover { background: var(--orange); }

  /* ── TARIFS ── */
  #tarifs { background: var(--cream); }

  .tarifs-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 40px 0 56px;
  }
  .toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--mid);
    transition: color 0.2s;
  }
  .toggle-label.active { color: var(--dark); }
  .toggle-badge {
    background: rgba(232,98,42,0.12);
    color: var(--orange);
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(232,98,42,0.25);
  }
  .toggle-switch {
    position: relative;
    width: 52px; height: 28px;
    background: var(--sand);
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid rgba(28,22,18,0.1);
    transition: background 0.25s;
    flex-shrink: 0;
  }
  .toggle-switch.annual { background: var(--orange); border-color: var(--orange); }
  .toggle-knob {
    pointer-events: none;
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    background: white;
    border-radius: 50%;
    transition: transform 0.25s;
    box-shadow: 0 1px 4px rgba(28,22,18,0.2);
  }
  .toggle-switch.annual .toggle-knob { transform: translateX(24px); }

  .tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
  }
  .tarif-card {
    background: white;
    border-radius: 24px;
    padding: 36px 32px 40px;
    border: 1.5px solid rgba(28,22,18,0.08);
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .tarif-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(28,22,18,0.1); }
  .tarif-card.popular {
    border-color: var(--orange);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(232,98,42,0.15);
  }
  .tarif-card.popular:hover { transform: translateY(-14px); }

  .popular-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.5px;
  }
  .tarif-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
  }
  .tarif-icon.icon-starter { background: rgba(232,98,42,0.08); }
  .tarif-icon.icon-growth  { background: rgba(232,98,42,0.15); }
  .tarif-icon.icon-pro     { background: var(--dark); }

  .tarif-name {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .tarif-desc {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 42px;
  }
  .tarif-price-block { margin-bottom: 28px; border-bottom: 1px solid rgba(28,22,18,0.07); padding-bottom: 24px; }
  .tarif-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
  }
  .price-currency { font-size: 20px; font-weight: 700; color: var(--dark); margin-top: 6px; }
  .price-amount {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    letter-spacing: -2px;
    transition: opacity 0.2s;
  }
  .tarif-card.popular .price-amount { color: var(--orange); }
  .price-period { font-size: 14px; color: var(--muted); align-self: flex-end; margin-bottom: 6px; }
  .price-annual-note {
    font-size: 12px;
    color: var(--orange);
    font-weight: 500;
    min-height: 18px;
  }
  .tarif-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }
  .tarif-feature {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--mid);
    line-height: 1.5;
  }
  .feature-check {
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(232,98,42,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
    color: var(--orange);
    margin-top: 1px;
  }
  .tarif-card.popular .feature-check { background: rgba(232,98,42,0.15); }

  .tarif-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
  }
  .tarif-cta.cta-outline {
    border: 1.5px solid rgba(28,22,18,0.2);
    color: var(--dark);
    background: transparent;
  }
  .tarif-cta.cta-outline:hover { border-color: var(--orange); color: var(--orange); }
  .tarif-cta.cta-filled {
    background: var(--orange);
    color: white;
    border: none;
    box-shadow: 0 8px 24px rgba(232,98,42,0.28);
  }
  .tarif-cta.cta-filled:hover { background: var(--terra); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,98,42,0.38); }
  .tarif-cta.cta-dark {
    background: var(--dark);
    color: white;
    border: none;
  }
  .tarif-cta.cta-dark:hover { background: #2e261f; transform: translateY(-2px); }

  .tarifs-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--muted);
  }
  .tarifs-note span { color: var(--orange); font-weight: 500; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .tarifs-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .tarif-card.popular { transform: none; }
    .tarif-card.popular:hover { transform: translateY(-4px); }
    #hero { grid-template-columns: 1fr; padding-top: 100px; }
    .hero-visual { display: none; }
    .services-header, .pain-grid, .pourquoi-grid, .contact-grid { grid-template-columns: 1fr; }
    .services-grid, .portfolio-grid, .temoignages-grid { grid-template-columns: 1fr 1fr; }
    .processus-steps { grid-template-columns: 1fr 1fr; gap: 30px; }
    .processus-steps::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
  }
  @media (max-width: 600px) {
    .services-grid, .portfolio-grid, .temoignages-grid, .processus-steps { grid-template-columns: 1fr; }
    .chiffres-grid, .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    section { padding: 70px 5%; }
  }