@import url('/Satoshi_Complete/Fonts/WEB/css/satoshi.css');

@font-face {
    font-family: 'Inter';
    src: url('Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 1000;
    font-stretch: 25% 151%;
}

/* ====== Variables & Reset ====== */
:root{
  --bg-900:#0F1115;       /* noir graphite */
  --bg-800:#181B21;       /* anthracite */
  --text-100:#F5F7FA;     /* blanc doux */
  --text-300:#E6E8EA;
  --text-500:#D1D5DB;
  --text-700:#9CA3AF;
  --brand:#3164F4;        /* bleu technique */
  --brand-2:#42B4E6;      /* turquoise hover */
  --radius:8px;
  --container:1100px;
  --shadow:0 10px 30px rgba(0,0,0,.25);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text-300);
  background:var(--bg-900);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* ====== Layout helpers ====== */
.container{
  max-width:var(--container);
  margin-inline:auto;
  padding: 0 2rem;
}

/* ====== Header minimal (optionnel) ====== */
.hero .hero-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.25rem 0;
}
.hero .logo{
  letter-spacing:.08em;
  font-weight:700;
  color:var(--text-100);
}
.hero nav a{
  color:var(--text-500);
  text-decoration:none;
  margin-left:1.25rem;
  font-size:.95rem;
}
.hero nav a:hover{color:var(--text-300)}

/* ====== HERO full-bleed ====== */
.hero{
  position:relative;
  width:100vw;           /* full bleed */
  min-height:100vh;
  display:flex;
  align-items:center;
  isolation:isolate;     /* pour les effets de fond */
  overflow:hidden;
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(66,180,230,.15), transparent 70%),
    radial-gradient(900px 450px at -10% 80%, rgba(49,100,244,.12), transparent 70%),
    linear-gradient(180deg, var(--bg-900) 0%, var(--bg-800) 100%);
}

/* Motif géométrique très discret (maillage) */
.hero::before{
  content:"";
  position:absolute; inset:0;
  opacity:.08;
  background-image:
     linear-gradient(transparent 95%, rgba(255,255,255,.15) 95%),
     linear-gradient(90deg, transparent 95%, rgba(255,255,255,.15) 95%);
  background-size: 48px 48px;
  pointer-events:none;
}

/* ====== Contenu ====== */
.hero-content{
  padding: 5rem 0 6rem;
}
.hero h1{
  margin:0 0 .5rem 0;
  font-family: 'Satoshi-Regular';
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height:1.05;
  color:var(--text-100);
  font-weight:800;
}
.hero h2{
  margin:.25rem 0 1.25rem;
  font-family: 'Satoshi-Regular';
  font-size: clamp(1.15rem, 2.6vw, 1.75rem);
  color:var(--text-500);
  font-style:italic;
  letter-spacing:.01em;
}
.hero p{
  margin:0 0 2rem 0;
  max-width: 46ch;
  color:var(--text-700);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* ====== CTA ====== */
.cta{
  display:inline-block;
  background:var(--brand);
  color:#fff;
  padding: .95rem 1.5rem;
  border-radius: var(--radius);
  text-decoration:none;
  font-weight:600;
  box-shadow: var(--shadow);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.cta:hover{
  background:var(--brand-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(49,100,244,.25);
}
.cta:focus-visible{
  outline:2px solid var(--brand-2);
  outline-offset:3px;
  border-radius: calc(var(--radius) + 2px);
}

/* ====== Responsive header collapse (optionnel) ====== */
@media (max-width: 720px){
  .hero .hero-header{padding:.75rem 0}
  .hero nav{display:none} /* menu burger plus tard */
}

/* ====== Prefers-reduced-motion ====== */
@media (prefers-reduced-motion: reduce){
  .cta{transition:none}
}

/* */

/* ====== OFFERS SECTION ====== */
.offers{
  background: var(--bg-800);
  padding: 6rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.offers-head{
  text-align:center;
  margin-bottom: 2.5rem;
}
.offers-head h3{
  margin:0 0 .5rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--text-100);
  letter-spacing:.01em;
}
.offers-head p{
  margin:0 auto;
  max-width: 60ch;
  color: var(--text-700);
  font-size: 1.05rem;
}

/* Grid cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.5rem;
  display:flex;
  flex-direction:column;
  gap: 1rem;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
}

.card:hover{
  transform: translateY(-2px);
  border-color: rgba(66,180,230,.25);
  box-shadow: 0 16px 44px rgba(0,0,0,.28);
}

.card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
}
.card h4{
  margin:0;
  color: var(--text-100);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing:.01em;
}
.tag{
  display:inline-block;
  padding: .25rem .6rem;
  border-radius: 999px;
  font-size: .8rem;
  color: #cfeaff;
  background: rgba(49,100,244,.15);
  border: 1px solid rgba(49,100,244,.35);
}

.lead{
  margin:0;
  color: var(--text-500);
  font-size: 1.05rem;
}

.features{
  list-style:none;
  padding:0; margin:.25rem 0 0;
  display:flex; flex-direction:column; gap:.5rem;
}
.features li{
  position:relative;
  padding-left: 1.25rem;
  color: var(--text-700);
}
.features li::before{
  content:"";
  position:absolute; left:.2rem; top:.55rem;
  width:.5rem; height:.5rem; border-radius:999px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  opacity:.9;
}

.card-foot{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.price{
  color: var(--text-300);
  font-weight: 700;
}

/* CTA variante "ghost" pour ne pas voler la vedette au hero */
.cta.ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text-300);
  box-shadow:none;
}
.cta.ghost:hover{
  background: rgba(66,180,230,.10);
  border-color: rgba(66,180,230,.45);
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px){
  .cards{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px){
  .cards{ grid-template-columns: 1fr; }
  .card-foot{ flex-direction:column; align-items:flex-start }
}


/* ====== POURQUOI FABRIK8 ====== */
.why{
  background: var(--bg-900);
  padding: 6rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.why-head{
  text-align:center;
  margin-bottom: 2.5rem;
}
.why-head h3{
  margin:0 0 .5rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--text-100);
  letter-spacing:.01em;
}
.why-head .kicker{
  margin: 0 auto;
  max-width: 60ch;
  color: var(--text-700);
  font-size: 1.05rem;
}

/* Grid / layout */
.why-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem 3rem;
  align-items:center;
}

.why-copy p{
  margin: 0 0 1rem 0;
  line-height: 1.65;
  color: var(--text-500);
}
.why-copy p strong{
  color: var(--text-100);
  font-weight: 700;
}
.why-copy .outcomes{
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .35rem;
  color: var(--text-300);
  font-weight: 600;
}

/* Diagramme */
.why-diagram{
  color: var(--text-300);          /* color hérite dans l'SVG (stroke/fill currentColor) */
  display:flex;
  align-items:center;
  justify-content:center;
  overflow: visible;
}
.why-diagram svg{
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.25));
}

/* Accents plus visibles en thème clair secondaire (option) */
@media (prefers-color-scheme: dark){
  .why-diagram { color: #cfeaff; }
}

/* Hover subtil sur la colonne schéma (optionnel) */
.why-diagram:hover{
  color: var(--brand-2);
  transition: color .2s ease;
}

/* Responsive */
@media (max-width: 1024px){
  .why-grid{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .why-diagram{
    order: -1; /* schéma au-dessus du texte sur tablette/mobile (option) */
  }
}
@media (max-width: 640px){
  .why{
    padding: 4.5rem 0;
  }
  .why-head .kicker{ font-size: 1rem; }
  .why-copy p{ font-size: 1.02rem; }
}

/* ====== NOTRE APPROCHE ====== */
.approach{
  background: var(--bg-800);
  padding: 6rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.approach-head{
  text-align:center;
  margin-bottom: 2.5rem;
}
.approach-head h3{
  margin:0 0 .5rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--text-100);
}
.approach-head .kicker{
  margin:0 auto;
  max-width: 70ch;
  color: var(--text-700);
  font-size: 1.05rem;
}

/* Steps grid */
.steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.step{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.25rem;
  display:flex;
  flex-direction:column;
  gap:.75rem;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
}
.step:hover{
  transform: translateY(-2px);
  border-color: rgba(66,180,230,.25);
  box-shadow: 0 16px 44px rgba(0,0,0,.28);
}

.step .icon{
  color: var(--brand-2);
  width: 44px; height: 44px;
}
.step .icon svg{
  width: 44px; height: 44px; display:block;
}

.step h4{
  margin:.25rem 0 0;
  color: var(--text-100);
  font-size: 1.05rem;
  letter-spacing:.01em;
}
.step p{
  margin:0;
  color: var(--text-500);
  line-height: 1.6;
  font-size: .98rem;
}

/* Responsive */
@media (max-width: 1100px){
  .steps{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .approach{ padding: 4.5rem 0; }
  .steps{ grid-template-columns: 1fr; }
  .step{ padding: 1rem; }
}

/* ====== PHILOSOPHIE ====== */
.philosophy{
  background: var(--bg-900);
  padding: 7rem 0 6rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

.philo-head{
  text-align:center;
  margin-bottom: 2rem;
}
.philo-head h3{
  margin:0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--text-100);
  letter-spacing:.01em;
}

/* Corps de texte centré et rythmé */
.philo-body{
  max-width: 72ch;
  margin: 0 auto;
  text-align: center;
}
.philo-body p{
  margin: 0 0 1rem 0;
  color: var(--text-500);
  line-height: 1.75;
  font-size: clamp(1.02rem, 1.4vw, 1.12rem);
}
.philo-body p strong{
  color: var(--text-100);
  font-weight: 700;
}

/* Ligne de respiration subtile au-dessus du dernier bloc */
.philo-body .philo-epigraph{
  margin-top: 2rem;
  padding-top: 1.5rem;
  color: var(--text-300);
  font-weight: 600;
  letter-spacing: .005em;
  position: relative;
}
.philo-body .philo-epigraph::before{
  content:"";
  position:absolute; left:50%; transform:translateX(-50%);
  top:0;
  width: 120px; height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
}

/* Option italique sur “agile” rendu par _em_ */
.philo-body em, .philo-body i { font-style: italic; }

/* Responsive */
@media (max-width: 640px){
  .philosophy{ padding: 5rem 0 4rem; }
  .philo-body{ padding: 0 0.25rem; }
}

/* ====== CONTACT ====== */
.contact{
  background: var(--bg-800);
  padding: 6rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.contact-head{
  text-align:center;
  margin-bottom: 2rem;
}
.contact-head h3{
  margin:0 0 .5rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--text-100);
}
.contact-head .kicker{
  margin: 0 auto;
  max-width: 60ch;
  color: var(--text-700);
  font-size: 1.05rem;
}

/* Form */
.contact-form{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
}

/* Honeypot anti-spam (visuellement masqué) */
.contact-form .hp{
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.field{ display:flex; flex-direction:column; gap:.5rem; }
.field--full{ grid-column: 1 / -1; }

.field label{
  color: var(--text-300);
  font-size: .95rem;
}
.field input,
.field select,
.field textarea{
  background: rgba(255,255,255,.04);
  color: var(--text-100);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .85rem .9rem;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.field textarea{ resize: vertical; }

.field input::placeholder,
.field textarea::placeholder{
  color: rgba(230,232,234,.45);
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(66,180,230,.6);
  box-shadow: 0 0 0 3px rgba(66,180,230,.18);
  background: rgba(255,255,255,.055);
}

/* Checkbox consent */
.consent .checkbox{
  display:flex; align-items:center; gap:.6rem;
  color: var(--text-500);
  user-select:none;
}
.consent input[type="checkbox"]{
  width: 18px; height: 18px; margin: 0;
  accent-color: var(--brand);
  border-radius: 4px;
}

/* Actions */
.actions{
  display:flex; align-items:center; gap: 1rem; flex-wrap: wrap;
}
.actions .note{
  margin:0;
  color: var(--text-700);
}
.actions .link{
  color: var(--brand-2);
  text-decoration:none;
}
.actions .link:hover{ text-decoration:underline; }

.contact-feedback{
  margin: 0;
  padding: .9rem 1rem;
  border-radius: 10px;
  font-size: .95rem;
  background: rgba(66,180,230,.12);
  color: var(--text-100);
  transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}
.contact-feedback[data-status="pending"]{
  background: rgba(66,180,230,.18);
  color: var(--text-100);
}
.contact-feedback[data-status="error"]{
  background: rgba(220,76,70,.18);
  color: #ffbdb9;
}
.contact-feedback[data-status="success"]{
  background: rgba(56,220,136,.12);
  color: #bff3d6;
}

/* Responsive */
@media (max-width: 820px){
  .form-grid{ grid-template-columns: 1fr; }
  .actions{ flex-direction: column; align-items:flex-start; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .field input, .field select, .field textarea{ transition: none; }
}



.field select option {
  background-color: var(--bg-900);
  color: var(--text-100);
}

