/* =========================
   VARIABLES
========================= */
:root {
    --bg-top: #2f2f2f;
    --bg-mid: #1c1c1c;
    --bg-bottom: #111111;

    --panel: rgba(255,255,255,0.035);
    --panel-border: rgba(255,255,255,0.08);

    --accent: #22c55e;
    --accent-soft: rgba(34,197,94,0.18);

    --text: #e6e6e6;
    --muted: #b0b0b0;
}

/* =========================
   RESET
========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =========================
   BODY / BACKGROUND
========================= */
body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background:
        radial-gradient(circle at top, #3a3a3a 0%, #141414 55%);
    color: var(--text);
    padding: 32px 16px;
}

/* texture très discrète */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
    repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.02) 0,
        rgba(255,255,255,0.02) 1px,
        transparent 1px,
        transparent 18px
    );

}

/* =========================
   SHELL
========================= */
.shell {
    padding-top: 6px;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(180deg, #1c1c1c, #141414);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 20px 50px rgba(0,0,0,.55);
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    overflow: hidden;
}

@media (max-width: 900px) {
    .shell {
        grid-template-columns: 1fr;
    }
}

/* =========================
   COLONNES
========================= */
.left {
    padding: 36px 40px;
    min-width: 0;
}

.right {
    padding: 30px 32px;
    border-left: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
    .right {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        min-width: 0;
    }
}

/* =========================
   BADGE
========================= */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.logo {
    width: 42px;
    border-radius: 10px;
    opacity: 0.95;
     filter: saturate(0.9) contrast(1.05);

}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(34,197,94,.7);
}

.badge-text {
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}

/* =========================
   TITRES & TEXTE
========================= */
h1 {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.lead {
    font-size: 0.95rem;
    opacity: 0.85;
    max-width: 360px;
}


h1 span {
    color: var(--accent);
}

.lead {
    font-size: .98rem;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 24px;
    line-height: 1.5;
}
a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   STEPS
========================= */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 26px;
}

@media (max-width: 700px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

.step {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    opacity: 0;
    transform: translateY(14px);
    animation: step-in .6s ease forwards;
}

.step:nth-child(1) { animation-delay: .15s; }
.step:nth-child(2) { animation-delay: .3s; }
.step:nth-child(3) { animation-delay: .45s; }

@keyframes step-in {
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    font-size: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.step-title {
    font-size: .85rem;
    font-weight: 600;
}

.step-txt {
    font-size: .8rem;
    color: rgba(230,230,230,0.75);
    line-height: 1.45;
}

/* =========================
   CTA
========================= */
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn-primary {
    padding: 13px 22px;
    font-size: 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow:
        0 10px 25px rgba(34,197,94,0.35),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);

}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    70% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.btn-ghost {
    color: var(--muted);
    text-decoration: none;
    font-size: .85rem;
}

.tiny-note {
    font-size: .75rem;
    color: var(--muted);
    margin-top: 8px;
}
a.btn-printer {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(34,197,94,0.6);
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #022c22 !important;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(34,197,94,.35);
}

/* =========================
   PILLS
========================= */
.pill-row {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    min-width: 0;
}

.pill {
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: .72rem;
    color: var(--muted);
}

/* =========================
   RGPD
========================= */
.panel-title {
    font-size: .95rem;
    margin-bottom: 12px;
}

.rgpd-box {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 14px;
}

.rgpd-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
    margin-bottom: 8px;
}

.rgpd-label {
    font-size: .72rem;
    color: var(--accent);
}

.rgpd-text {
    font-size: .8rem;
    color: var(--muted);
}

.chips {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.chip {
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: .72rem;
    margin-bottom: 10px;
}
.field-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-row input {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: #e6e6e6;
     width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
}

.field-row input::placeholder {
    color: rgba(255,255,255,0.4);
}

.field-row input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
}
.field-row input[type="submit"] {
    margin-top: 8px;
    width: 100%;
}
.field-row label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
}

.hint a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}
.field-row label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
}

.hint a:hover {
    text-decoration: underline;
}
.page-wrapper {
    max-width: 420px;
    margin: 0 auto;
    padding: 48px 28px;
}

/* =========================
   FOOTER
========================= */
.footer-full {
    margin-top: 36px;
    border-top: 1px solid rgba(34,197,94,0.35);
}

.footer-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
}

.footer-left {
    color: #b6f2b6;
}
