/* ============================================================
   AUTHENTIFICATION-RECHARGE.COM — THÈME LIGHT v4
   Palette : Rouge #E2001A · Blanc #FFFFFF · Gris doux
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Couleurs principales */
  --red:         #E2001A;
  --red-dark:    #B8001A;
  --red-muted:   rgba(226,0,26,0.08);
  --red-border:  rgba(226,0,26,0.2);
  --red-glow:    0 4px 24px rgba(226,0,26,0.25);

  /* Fond clair */
  --bg:          #FFFFFF;
  --bg2:         #F7F8FA;
  --bg3:         #EFF1F5;
  --bg4:         #E8EAEF;

  /* Textes */
  --text:        #111111;
  --text-mid:    #444444;
  --text-muted:  #777777;
  --text-light:  #999999;

  /* Bordures */
  --border:      #E2E5EC;
  --border-mid:  #CDD0D8;

  /* Statuts */
  --success:     #16A34A;
  --success-bg:  rgba(22,163,74,0.08);
  --warning:     #D97706;
  --warning-bg:  rgba(217,119,6,0.08);

  /* Géométrie */
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06), 0 2px 12px rgba(0,0,0,0.04);
  --shadow:      0 4px 20px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.10);

  /* Typo */
  --fh: 'Outfit', sans-serif;
  --fb: 'Inter', sans-serif;
  --t:  0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--fb); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--fh); line-height: 1.15; letter-spacing: -.02em; color: var(--text); }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--text-mid); line-height: 1.7; }

.accent { color: var(--red); }

/* ─── LAYOUT ─── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 2rem 0; }
.section-sm { padding: 3rem 0; }

/* ─── HEADER ─── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1140px; margin: 0 auto; padding: 0 2rem;
}
.logo { display: flex; align-items: center; gap: .6rem; font-family: var(--fh); font-size: 1.1rem; font-weight: 800; }
.logo-badge { width: 34px; height: 34px; border-radius: 8px; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 900; color: #fff; }
.logo-text { color: var(--text); letter-spacing: -.02em; }
.logo-text span { color: var(--red); }

.header-nav { display: flex; align-items: center; gap: .2rem; }
.header-nav a { padding: .45rem .9rem; border-radius: 8px; font-size: .875rem; font-weight: 500; color: var(--text-muted); transition: color var(--t), background var(--t); }
.header-nav a:hover { color: var(--text); background: var(--bg2); }
.header-nav a.active { color: var(--red); font-weight: 600; }
.header-cta { background: var(--red) !important; color: #fff !important; padding: .5rem 1.15rem !important; border-radius: 8px !important; font-weight: 600 !important; font-size: .85rem !important; box-shadow: var(--red-glow); transition: background var(--t), transform .15s !important; }
.header-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero { position: relative; overflow: hidden; padding: 5rem 0 4.5rem; background: var(--bg); }
.hero-bg { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 85% 40%, rgba(226,0,26,.06) 0%, transparent 65%),
              radial-gradient(ellipse 40% 40% at 5% 80%, rgba(226,0,26,.04) 0%, transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .5rem; background: var(--red-muted); border: 1px solid var(--red-border); color: var(--red); padding: .35rem .9rem; border-radius: 100px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.hero-title { color: var(--text); margin-bottom: 1.25rem; }
.hero-desc { font-size: 1rem; font-weight: 400; color: var(--text-mid); margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── BOUTONS ─── */
.btn { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--fh); font-weight: 600; font-size: .92rem; border-radius: var(--radius); padding: .78rem 1.5rem; cursor: pointer; border: none; transition: all var(--t); text-decoration: none; }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--red-glow); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border-mid); }
.btn-outline:hover { border-color: var(--red); color: var(--red); background: var(--red-muted); }
.btn-sm { padding: .55rem 1.1rem; font-size: .82rem; }
.btn svg { flex-shrink: 0; transition: transform var(--t); }
.btn:hover svg { transform: translateX(3px); }

/* ─── COUPON MOCKUP ─── */
.hero-visual { display: flex; justify-content: center; }
.coupon-mockup { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.2rem; width: 100%; max-width: 360px; box-shadow: var(--shadow-lg); position: relative; }
.coupon-mockup::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.coupon-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.75rem; }
.coupon-brand { font-family: var(--fh); font-weight: 800; font-size: 1.2rem; color: var(--text); }
.coupon-brand span { color: var(--red); }
.coupon-badge { background: var(--red-muted); border: 1px solid var(--red-border); color: var(--red); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 6px; }
.coupon-number { font-family: var(--fh); font-size: 1.4rem; font-weight: 700; letter-spacing: .1em; color: var(--text); text-align: center; padding: 1.25rem 0; border-top: 1px dashed var(--border); border-bottom: 1px dashed var(--border); margin-bottom: 1.5rem; }
.coupon-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .7rem; }
.coupon-row:last-child { margin-bottom: 0; }
.coupon-lbl { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }
.coupon-val { font-size: .9rem; font-weight: 600; color: var(--text); }
.coupon-amount { font-size: 1.5rem; font-weight: 800; color: var(--red); }
.status-ok { display: inline-flex; align-items: center; gap: .4rem; background: var(--success-bg); border: 1px solid rgba(22,163,74,.2); color: var(--success); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 100px; }
.status-ok::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--success); }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.trust-bar-inner { display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap; align-items: center; }
.trust-item { display: flex; align-items: center; gap: .55rem; font-size: .84rem; font-weight: 500; color: var(--text-mid); }
.trust-item svg { color: var(--red); flex-shrink: 0; }

/* ─── SECTION TITLES ─── */
.section-label { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-bottom: .65rem; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered p.section-desc { margin: 0 auto; }
.section-header p.section-desc { max-width: 520px; color: var(--text-mid); }

/* ─── CARDS ─── */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: border-color var(--t), transform var(--t), box-shadow var(--t); }
.card:hover { border-color: var(--red-border); transform: translateY(-3px); box-shadow: var(--shadow); }
.card-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--red-muted); border: 1px solid var(--red-border); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; font-size: 1.3rem; }

/* ─── STEPS ─── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 23px; left: calc(16.7% + 1rem); right: calc(16.7% + 1rem); height: 2px; background: linear-gradient(90deg, var(--border), var(--red), var(--border)); }
.step-card { text-align: center; }
.step-num { width: 46px; height: 46px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--fh); font-weight: 800; font-size: .95rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; position: relative; z-index: 1; box-shadow: var(--red-glow); }
.step-card h3 { color: var(--text); margin-bottom: .45rem; }
.step-card p { font-size: .88rem; color: var(--text-mid); }

/* ─── FEATURES ─── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

/* ─── FORM ─── */
.form-page { padding: 3rem 0 5rem; background: var(--bg2); }
.form-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.form-container { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.form-header { background: var(--red); padding: 1.6rem 2.25rem; }
.form-header h2 { color: #fff; font-size: 1.2rem; margin-bottom: .25rem; }
.form-header p { color: rgba(255,255,255,.78); font-size: .85rem; }
.form-body { padding: 2.25rem; }
.fieldset-title { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 1.1rem; padding-bottom: .65rem; border-bottom: 1px solid var(--border); }
.fieldset { margin-bottom: 1.75rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1/-1; }
.field { display: flex; flex-direction: column; gap: .35rem; }

label { font-size: .82rem; font-weight: 600; color: var(--text-mid); }
.req { color: var(--red); }
.field-hint { font-size: .74rem; color: var(--text-light); line-height: 1.4; }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
input[type="number"], select, textarea {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--fb);
  font-size: .93rem;
  padding: .7rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-light); font-weight: 400; }
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226,0,26,.1);
  background: #fff;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select option { background: #fff; color: var(--text); }
input[type="date"]::-webkit-calendar-picker-indicator { opacity: .5; cursor: pointer; }

/* Checkbox */
.checkbox-label { display: flex; align-items: flex-start; gap: .7rem; cursor: pointer; font-size: .84rem; color: var(--text-mid); line-height: 1.5; }
.checkbox-label input { display: none; }
.checkbox-custom { flex-shrink: 0; width: 18px; height: 18px; border: 1.5px solid var(--border-mid); border-radius: 5px; background: var(--bg2); margin-top: 1px; display: flex; align-items: center; justify-content: center; transition: all var(--t); }
.checkbox-label input:checked + .checkbox-custom { background: var(--red); border-color: var(--red); }
.checkbox-label input:checked + .checkbox-custom::after { content: '✓'; font-size: 11px; font-weight: 800; color: #fff; }
.checkbox-label a { color: var(--red); text-decoration: underline; }
.consent-block { margin: 1.5rem 0; }

.form-submit { margin-top: 1.75rem; display: flex; flex-direction: column; gap: .75rem; }
.btn-submit { width: 100%; justify-content: center; padding: .9rem; font-size: .95rem; }
.form-secure { display: flex; align-items: center; justify-content: center; gap: .4rem; font-size: .76rem; color: var(--text-light); }
.form-secure svg { color: var(--success); flex-shrink: 0; }

/* ─── SIDEBAR ─── */
.form-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 88px; }
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.35rem; box-shadow: var(--shadow-sm); }
.sidebar-card h3 { font-size: .88rem; color: var(--text); margin-bottom: .85rem; display: flex; align-items: center; gap: .45rem; }
.sidebar-list { display: flex; flex-direction: column; gap: .5rem; }
.sidebar-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .83rem; color: var(--text-mid); }
.sidebar-list li::before { content: '✓'; color: var(--success); font-weight: 700; font-size: .75rem; flex-shrink: 0; margin-top: 2px; }
.sidebar-warning { display: flex; gap: .6rem; background: var(--warning-bg); border: 1px solid rgba(217,119,6,.2); border-radius: var(--radius); padding: .9rem 1rem; font-size: .82rem; color: var(--text-mid); }
.contact-mini { display: flex; flex-direction: column; gap: .5rem; }
.contact-mini a { display: flex; align-items: center; gap: .45rem; font-size: .83rem; color: var(--text-mid); transition: color var(--t); }
.contact-mini a:hover { color: var(--red); }

/* ─── CONFIRM ─── */
.confirm-wrap { min-height: 75vh; display: flex; align-items: center; justify-content: center; padding: 3rem 2rem; background: var(--bg2); }
.confirm-box { max-width: 580px; width: 100%; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.confirm-top { background: var(--red); padding: 2.25rem; text-align: center; }
.confirm-check { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,.18); border: 2px solid rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 1.1rem; animation: pop .5s cubic-bezier(.34,1.56,.64,1); }
@keyframes pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.confirm-top h2 { color: #fff; font-size: 1.6rem; margin-bottom: .35rem; }
.confirm-top p { color: rgba(255,255,255,.82); font-size: .9rem; }
.confirm-body { padding: 2.25rem; }
.confirm-ref { text-align: center; background: var(--bg2); border: 1px dashed var(--border-mid); border-radius: var(--radius); padding: 1.1rem; margin-bottom: 1.75rem; }
.confirm-ref-lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-light); margin-bottom: .35rem; }
.confirm-ref-val { font-family: var(--fh); font-size: 1.5rem; font-weight: 800; color: var(--red); letter-spacing: .05em; }
.detail-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.detail-table tr { border-bottom: 1px solid var(--border); }
.detail-table tr:last-child { border-bottom: none; }
.detail-table td { padding: .6rem 0; font-size: .87rem; }
.detail-table td:first-child { color: var(--text-light); width: 45%; }
.detail-table td:last-child { color: var(--text); font-weight: 500; }
.confirm-notice { display: flex; gap: .6rem; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: .9rem 1rem; font-size: .82rem; color: var(--text-mid); margin-bottom: 1.5rem; }
.btn-ghost { color: var(--red); font-family: var(--fh); font-weight: 600; font-size: .88rem; display: inline-flex; align-items: center; gap: .45rem; transition: gap var(--t); }
.btn-ghost:hover { gap: .75rem; }

/* ─── PAGES INTÉRIEURES ─── */
.inner-hero { padding: 3.5rem 0 2.5rem; border-bottom: 1px solid var(--border); margin-bottom: 3.5rem; }
.breadcrumb { display: flex; align-items: center; gap: .45rem; font-size: .78rem; color: var(--text-light); margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-light); transition: color var(--t); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); font-weight: 500; }

/* ─── PROSE ─── */
.prose { max-width: 100%; }
.prose h2 { color: var(--text); font-size: 1.3rem; margin: 2.25rem 0 .9rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.prose h3 { color: var(--text); font-size: 1rem; margin: 1.25rem 0 .5rem; }
.prose p { color: var(--text-mid); margin-bottom: .9rem; }
.prose ul { margin-bottom: .9rem; }
.prose ul li { position: relative; padding-left: 1.2rem; margin-bottom: .35rem; font-size: .93rem; color: var(--text-mid); }
.prose ul li::before { content: '—'; position: absolute; left: 0; color: var(--red); }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--red); text-decoration: underline; }
.prose .info-box { background: var(--red-muted); border-left: 3px solid var(--red); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.1rem 1.35rem; margin: 1.25rem 0; }
.prose .info-box p { margin: 0; font-size: .88rem; color: var(--text-mid); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.channel-card { display: flex; align-items: center; gap: .9rem; padding: 1.25rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 1rem; box-shadow: var(--shadow-sm); transition: border-color var(--t), transform var(--t); }
.channel-card:hover { border-color: var(--red); transform: translateX(3px); }
.channel-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--red-muted); border: 1px solid var(--red-border); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.channel-info h3 { font-size: .9rem; margin-bottom: .2rem; }
.channel-info p { font-size: .81rem; color: var(--text-muted); margin: 0; }
.channel-info a { color: var(--red); font-weight: 600; }

/* ─── SECURITY CARDS ─── */
.security-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.security-big { grid-column: 1/-1; }
.security-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.security-card.highlight { border-color: var(--red-border); background: var(--red-muted); }
.security-card h3 { color: var(--text); margin-bottom: .65rem; display: flex; align-items: center; gap: .6rem; }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { padding: 1.1rem 1.35rem; font-size: .92rem; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color var(--t); }
.faq-q:hover { color: var(--red); }
.faq-q svg { flex-shrink: 0; transition: transform var(--t); color: var(--red); }
.faq-a { padding: 0 1.35rem 1.1rem; font-size: .88rem; color: var(--text-mid); line-height: 1.7; }

/* ─── STATS ─── */
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; text-align: center; }
.stat-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.stat-number { font-family: var(--fh); font-size: 2.2rem; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: .4rem; }
.stat-label { font-size: .82rem; color: var(--text-light); }
.advantage-list { display: flex; flex-direction: column; gap: .6rem; }
.advantage-list li { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--text-mid); }
.advantage-list li::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; background: var(--red); color: #fff; border-radius: 50%; font-size: .6rem; font-weight: 800; flex-shrink: 0; }

/* ─── ANTI-FRAUDE BANNER ─── */
.antifraude-bar { background: #FFF8E1; border-top: 2px solid #FFC107; border-bottom: 1px solid #FFE082; padding: .85rem 0; }
.antifraude-inner { display: flex; align-items: center; justify-content: center; gap: .65rem; flex-wrap: wrap; font-size: .8rem; color: #6D4C00; font-weight: 500; text-align: center; }
.antifraude-inner strong { color: #B45309; }

/* ─── FOOTER ─── */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: .85rem; color: var(--text-muted); margin-top: .9rem; max-width: 270px; }
.footer-col h4 { font-family: var(--fh); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); margin-bottom: .9rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .85rem; color: var(--text-muted); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.35rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-bottom p { font-size: .76rem; color: var(--text-light); }

/* ─── ANTI-FRAUDE FOOTER STRIP ─── */
.fraud-strip { background: #1A1A1A; padding: .9rem 2rem; text-align: center; }
.fraud-strip p { font-size: .73rem; color: #bbb; line-height: 1.6; }
.fraud-strip strong { color: #E2001A; }

/* ─── RESPONSIVE ─── */
@media(max-width:960px) {
  .hero-grid, .form-layout, .contact-grid, .security-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .form-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .security-big { grid-column: 1; }
}
@media(max-width:640px) {
  .header-nav { display: none; }
  .burger { display: block !important; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
