/* styles.css
   Palette : vert #77d030 et blanc
   Police : Lato Regular (via Google Fonts)
   Taille par défaut : 12px
*/

:root{
  --green: #77d030;
  --white: #ffffff;
  --bg: #f6fbf6; /* très léger fond vert-blanc */
  --muted: #6b6b6b;
  --card-shadow: 0 6px 22px rgba(18, 52, 18, 0.06);
  --max-width: 780px;
  --radius: 12px;
  font-family: "Lato", Arial, sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* { box-sizing: border-box; }

html,body {
  height: 100%;
  margin: 0;
  background: linear-gradient(180deg, var(--bg), #ffffff 60%);
  color: #0b3a0b;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

/* Card */
.card {
  width: 100%;
  max-width: var(--max-width);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  border: 1px solid rgba(119,208,48,0.08);
}

/* Header */
.card-header {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  background: linear-gradient(90deg, rgba(119,208,48,0.06), rgba(119,208,48,0.02));
}

.logo-wrap {
  width: 125px;
  height: 125px;
  min-width: 125px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--white), #5fb324);
  box-shadow: 0 6px 18px rgba(119,208,48,0.12);
}

.icon {
  width: 34px;
  height: 34px;
  display: block;
}

/* Header text */
.header-text h1 {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  color: #083b08;
  font-weight: 400;
}

.eyebrow {
  margin: 4px 0 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* Body */
.card-body {
  padding: 20px 22px;
  line-height: 1.45;
  color: #133813;
}

.card-body p {
  margin: 0 0 12px 0;
}

.lead {
  margin-top: 6px;
  font-weight: 600;
  color: #0b3a0b;
}

.steps {
  margin: 8px 0 14px 18px;
  padding: 0;
  list-style: disc;
}

.steps li {
  margin: 8px 0;
  color: #173f17;
}

/* Links */
a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px dotted rgba(119,208,48,0.35);
}

a:hover {
  text-decoration: underline;
}

/* Professional block */
.question {
  font-weight: 600;
  margin-top: 10px;
}

.partner {
  margin: 6px 0 12px 0;
  font-weight: 600;
}

/* Thanks & signature */
.thanks {
  margin-top: 12px;
  font-style: normal;
}

.signature {
  margin-top: 6px;
  font-weight: 600;
  color: #0b3a0b;
}

/* Footer */
.card-footer {
  padding: 12px 22px;
  border-top: 1px solid rgba(0,0,0,0.03);
  background: rgba(119,208,48,0.02);
}

.muted {
  color: var(--muted);
  font-size: 11px;
}

/* Responsive */
@media (max-width: 520px) {
  .card { border-radius: 10px; }
  .logo-wrap { width: 48px; height: 48px; min-width: 48px; }
  .header-text h1 { font-size: 16px; }
  .card-body { padding: 16px; }
  .card-header { padding: 14px 16px; gap: 12px; }
}
