<?php
// Activation du log temporaire
file_put_contents("cf-log.txt", json_encode([
    "received" => $_POST,
    "timestamp" => date("c")
]));

// Réponse JSON
header("Content-Type: application/json");
echo json_encode(["status" => "ok"]);
