/* ================================================================
   WIZAN CV — landing.css
   Inspiré de cv.fr · moncvparfait.fr · resume.io
   Thème : Clean Professional White + Bold Blue Accents
   Polices : Plus Jakarta Sans + Instrument Serif
   ================================================================ */

:root {
  --blue:       #1A56DB;
  --blue-d:     #1447B5;
  --blue-l:     #EBF5FF;
  --blue-xl:    #F0F7FF;
  --dark:       #0D1526;
  --g900:       #1E293B;
  --g700:       #374151;
  --g500:       #6B7280;
  --g300:       #D1D5DB;
  --g200:       #E5E7EB;
  --g100:       #F3F4F6;
  --g50:        #F9FAFB;
  --white:      #FFFFFF;
  --green:      #059669;
  --green-l:    #ECFDF5;
  --gold:       #D97706;
  --gold-l:     #FFFBEB;
  --red:        #DC2626;
  --purple:     #7C3AED;
  --purple-l:   #F5F3FF;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.15);
  --r:          10px;
  --r-lg:       18px;
  --r-xl:       28px;
  --nav:        68px;
  --mw:         1200px;
  --ff:         'Plus Jakarta Sans', sans-serif;
  --ffd:        'Instrument Serif', Georgia, serif;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff);
  color: var(--g900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ================================================================
   UTILITIES
   ================================================================ */
.container { max-width: var(--mw); margin: 0 auto; padding: 0 24px; }
.bg-gray   { background: var(--g50); border-top: 1px solid var(--g200); border-bottom: 1px solid var(--g200); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* ================================================================
   BOUTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff); font-weight: 700; border-radius: var(--r);
  cursor: pointer; transition: all .2s; border: none; white-space: nowrap;
  letter-spacing: .01em;
}
.btn-blue    { background: var(--blue); color: #fff; padding: 11px 24px; font-size: .9rem; box-shadow: 0 2px 8px rgba(26,86,219,.3); }
.btn-blue:hover    { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,86,219,.4); }
.btn-outline { background: transparent; border: 1.5px solid var(--g300); color: var(--g700); padding: 10px 22px; font-size: .9rem; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-xl); }
.btn-white   { background: #fff; color: var(--blue); padding: 11px 24px; font-size: .9rem; }
.btn-white:hover { background: var(--blue-l); transform: translateY(-1px); }
.btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,.35); color: rgba(255,255,255,.85); padding: 10px 22px; font-size: .9rem; }
.btn-outline-white:hover { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-sm  { padding: 8px 16px; font-size: .82rem; border-radius: 8px; }
.btn-lg  { padding: 14px 32px; font-size: 1rem; border-radius: var(--r-lg); }
.btn-xl  { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--r-lg); }
.btn-full { width: 100%; }

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--blue); color: #fff;
  text-align: center; padding: 9px 20px;
  font-size: .8rem; font-weight: 500;
}
.trust-bar strong { font-weight: 700; }
.trust-bar a { color: #fff; text-decoration: underline; margin-left: 8px; font-weight: 700; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--g200);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  height: var(--nav);
  display: flex; align-items: center; gap: 28px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-brand-text { font-family: var(--ffd); font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.brand-accent { color: var(--blue); }
.nav-brand-badge {
  background: var(--blue-l); color: var(--blue);
  font-size: .6rem; font-weight: 700; padding: 2px 7px;
  border-radius: 20px; letter-spacing: .06em; text-transform: uppercase;
}
.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-item  { position: relative; }
.nav-link  {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px; font-size: .87rem; font-weight: 600;
  color: var(--g700); border-radius: 8px;
  transition: all .18s; cursor: pointer; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { background: var(--g50); color: var(--blue); }
.nav-link svg { width: 13px; height: 13px; transition: transform .2s; }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  min-width: 280px; padding: 10px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all .22s;
  z-index: 300;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px; transition: background .15s;
}
.nav-drop-item:hover { background: var(--g50); }
.nav-drop-icon { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.nav-drop-title { font-size: .86rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.nav-drop-sub   { font-size: .74rem; color: var(--g500); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }

/* Burger mobile */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--g700); border-radius: 2px; transition: all .3s; }
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav) - 38px);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px max(48px, calc((100vw - var(--mw)) / 2 + 24px)) 72px;
  padding-right: 60px;
  background: var(--white);
}
.hero-right {
  background: linear-gradient(145deg, #1A56DB 0%, #0D1526 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 40px; position: relative; overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-l); color: var(--blue);
  font-size: .74rem; font-weight: 700; padding: 5px 14px;
  border-radius: 20px; letter-spacing: .04em;
  margin-bottom: 22px; width: fit-content;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-h1 {
  font-family: var(--ffd);
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -.02em;
  color: var(--dark); margin-bottom: 18px;
}
.hero-h1 em { font-style: italic; color: var(--blue); }
.hero-sub {
  font-size: 1.05rem; color: var(--g500);
  line-height: 1.78; margin-bottom: 34px; max-width: 500px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-checks {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 32px;
}
.hero-checks li {
  font-size: .82rem; color: var(--g500);
  display: flex; align-items: center; gap: 7px;
}
.hero-checks li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: .9rem; }
.hero-trust {
  display: flex; align-items: center; gap: 20px;
  padding-top: 28px; border-top: 1px solid var(--g200);
}
.trust-stat { display: flex; flex-direction: column; gap: 2px; }
.trust-num  { font-family: var(--ffd); font-size: 1.35rem; font-weight: 700; color: var(--dark); line-height: 1; }
.trust-lbl  { font-size: .72rem; color: var(--g500); }
.trust-divider { width: 1px; height: 30px; background: var(--g200); }

/* ----------------------------------------------------------------
   Mockup CV dans le hero
   ---------------------------------------------------------------- */
.hero-visual { position: relative; width: 100%; max-width: 370px; z-index: 1; }
.cv-card-mockup {
  background: #fff; border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.1);
  animation: mockFloat 6s ease-in-out infinite;
}
@keyframes mockFloat { 0%,100%{transform:translateY(0) rotate(-.4deg)} 50%{transform:translateY(-12px) rotate(.4deg)} }
.cv-card-top { height: 6px; background: linear-gradient(90deg, var(--blue), #6366F1); }
.cv-card-body { display: flex; min-height: 340px; }
.cv-sidebar-mock {
  width: 105px; padding: 16px 12px;
  background: #F8FAFF; border-right: 1px solid #EEF2FF;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
}
.cv-av {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, #BFDBFE, #C7D2FE);
  margin-bottom: 5px;
  border: 3px solid #fff; box-shadow: 0 2px 8px rgba(99,102,241,.2);
}
.cv-wl { height: 5px; border-radius: 3px; background: #BFDBFE; width: 100%; }
.cv-wl.s { width: 60%; }
.cv-main-mock { flex: 1; padding: 16px 14px; display: flex; flex-direction: column; gap: 0; }
.cv-name-line  { height: 10px; width: 68%; border-radius: 3px; background: var(--g900); margin-bottom: 7px; }
.cv-title-line { height: 6px; width: 48%; border-radius: 3px; background: var(--blue); margin-bottom: 14px; }
.cv-section-line { height: 5px; width: 38%; border-radius: 3px; background: var(--g200); margin-bottom: 7px; }
.cv-section-line.mt { margin-top: 12px; }
.cv-text-line { height: 4px; border-radius: 2px; background: var(--g100); margin-bottom: 5px; }
.cv-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.cv-tag { height: 14px; background: var(--blue-l); border-radius: 7px; }

/* Badges flottants */
.hero-badge {
  position: absolute;
  background: #fff; border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 11px 15px;
  display: flex; align-items: center; gap: 10px;
  animation: badgeFloat 4s ease-in-out infinite;
}
.badge-ats { top: -16px; right: -18px; }
.badge-tpl { bottom: -14px; left: -18px; animation-delay: 2s; }
.badge-emoji { font-size: 1.2rem; }
.badge-info strong { display: block; font-size: .82rem; font-weight: 700; color: var(--dark); }
.badge-info span   { font-size: .72rem; color: var(--g500); }
@keyframes badgeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* Pill live */
.hero-live-pill {
  position: absolute; top: 50%; left: -88px;
  transform: translateY(-50%);
  background: #fff; border-radius: 20px;
  padding: 7px 14px; box-shadow: var(--shadow-lg);
  font-size: .74rem; font-weight: 700; color: var(--dark);
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
  animation: badgeFloat 5s ease-in-out 1s infinite;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: blink 1.5s ease-in-out infinite; }

/* ================================================================
   SECTIONS — Header commun
   ================================================================ */
.section { padding: 96px 0; }
.section-header { margin-bottom: 56px; }
.section-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.section-eyebrow::before { content: ''; display: inline-block; width: 18px; height: 2px; background: var(--blue); border-radius: 1px; }
.section-h {
  font-family: var(--ffd);
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  font-weight: 700; color: var(--dark);
  letter-spacing: -.02em; line-height: 1.12; margin-bottom: 14px;
}
.section-h em { font-style: italic; color: var(--blue); }
.section-sub { font-size: 1rem; color: var(--g500); line-height: 1.78; max-width: 600px; }
.section-cta { text-align: center; margin-top: 44px; }
.cta-note { font-size: .8rem; color: var(--g400); margin-top: 10px; }

/* ================================================================
   COMMENT ÇA MARCHE
   ================================================================ */
.how-steps {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 48px;
  position: relative;
}
.how-steps::before {
  content: ''; position: absolute;
  top: 43px; left: calc(16.7% + 16px); right: calc(16.7% + 16px);
  height: 2px; background: linear-gradient(90deg, var(--blue-l), var(--blue), var(--blue-l));
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-step-circle {
  width: 86px; height: 86px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--blue-l);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: var(--shadow-md);
  transition: all .3s; position: relative;
}
.how-step-circle::after {
  content: attr(data-num);
  font-family: var(--ffd); font-size: 1.75rem; font-weight: 700; color: var(--blue);
}
.how-step:hover .how-step-circle { background: var(--blue); border-color: var(--blue); box-shadow: 0 8px 24px rgba(26,86,219,.35); }
.how-step:hover .how-step-circle::after { color: #fff; }
.how-step-icon  { font-size: 1.8rem; margin-bottom: 6px; }
.how-step-title { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.how-step-desc  { font-size: .9rem; color: var(--g500); line-height: 1.65; }

/* ================================================================
   TEMPLATES
   ================================================================ */
.tpl-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.tpl-tab {
  padding: 7px 18px; border-radius: 20px; font-size: .82rem; font-weight: 600;
  border: 1.5px solid var(--g200); color: var(--g500); cursor: pointer; transition: all .2s;
  background: var(--white);
}
.tpl-tab:hover   { border-color: var(--blue); color: var(--blue); }
.tpl-tab.active  { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 2px 8px rgba(26,86,219,.25); }
.tpl-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 16px;
}
.tpl-card {
  border-radius: var(--r-lg); overflow: hidden;
  border: 2px solid var(--g100); cursor: pointer;
  transition: all .28s; background: var(--white); position: relative;
}
.tpl-card:hover {
  border-color: var(--blue); transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,86,219,.15);
}
.tpl-badge {
  position: absolute; top: 8px; right: 8px;
  font-size: .6rem; font-weight: 700; padding: 2px 7px;
  border-radius: 10px; letter-spacing: .03em; z-index: 2;
}
.ats-badge     { background: var(--green-l); color: var(--green); border: 1px solid #BBF7D0; }
.premium-badge { background: var(--gold-l); color: var(--gold); border: 1px solid #FDE68A; }
.tpl-preview { height: 210px; padding: 10px; overflow: hidden; }
.tpl-info {
  padding: 9px 12px; border-top: 1px solid var(--g100); background: var(--g50);
  display: flex; flex-direction: column; gap: 2px;
}
.tpl-name { font-size: .82rem; font-weight: 700; color: var(--dark); }
.tpl-cat  { font-size: .72rem; color: var(--g500); }

/* Prévisualisations internes */
.tpl-preview-single { display: flex; flex-direction: column; gap: 5px; }
.tpl-name-bar  { height: 10px; width: 65%; border-radius: 3px; }
.tpl-title-bar { height: 5px; width: 45%; border-radius: 2px; margin-bottom: 5px; }
.tpl-line      { height: 4px; background: var(--g100); border-radius: 2px; margin-bottom: 3px; }

.tpl-preview-dark { display: flex; gap: 7px; height: 100%; }
.tpl-d-side { width: 36%; background: #1E293B; border-radius: 7px; padding: 9px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.tpl-d-av   { width: 30px; height: 30px; border-radius: 50%; margin-bottom: 3px; }
.tpl-d-wl   { height: 3px; background: rgba(255,255,255,.2); border-radius: 2px; }
.tpl-d-main { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.tpl-d-name { height: 7px; border-radius: 2px; width: 80%; }
.tpl-d-line { height: 3.5px; background: rgba(255,255,255,.12); border-radius: 2px; }

.tpl-preview-creative { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 5px; }
.tpl-preview-creative { --c: #2563EB; }
.tpl-c-circle  { position: absolute; border-radius: 50%; background: var(--c); opacity: .2; }
.tpl-c-circle.c1 { width: 70px; height: 70px; top: -20px; right: -15px; }
.tpl-c-circle.c2 { width: 40px; height: 40px; bottom: -10px; left: -8px; opacity: .12; }
.tpl-c-name  { height: 11px; background: var(--c); border-radius: 3px; width: 70%; position: relative; z-index: 1; }
.tpl-c-sub   { height: 5px; background: color-mix(in srgb, var(--c) 50%, transparent); border-radius: 2px; width: 50%; }
.tpl-c-tags  { display: flex; gap: 4px; margin: 4px 0; }
.tpl-c-tag   { flex: 1; height: 14px; background: color-mix(in srgb, var(--c) 12%, transparent); border-radius: 5px; }
.tpl-c-line  { height: 4px; background: var(--g100); border-radius: 2px; }

.tpl-preview-two { display: flex; gap: 7px; height: 100%; }
.tpl-t-side  { width: 37%; border-radius: 7px; padding: 9px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.tpl-t-av    { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.3); margin-bottom: 3px; }
.tpl-t-wl   { height: 3px; background: rgba(255,255,255,.45); border-radius: 2px; }
.tpl-t-main { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.tpl-t-name { height: 9px; background: var(--g900); border-radius: 3px; width: 80%; margin-bottom: 3px; }
.tpl-t-title { height: 5px; border-radius: 2px; width: 56%; margin-bottom: 7px; }
.tpl-t-line { height: 3.5px; background: var(--g100); border-radius: 2px; }

/* Carte "Voir tous" */
.tpl-more {
  display: flex; align-items: center; justify-content: center;
  min-height: 240px;
  background: linear-gradient(135deg, var(--blue-xl), var(--purple-l));
  border-color: var(--g200) !important;
}
.tpl-more:hover { border-color: var(--blue) !important; transform: translateY(-6px); }
.tpl-more-inner { text-align: center; padding: 20px; }
.tpl-more-num  { font-family: var(--ffd); font-size: 2.4rem; font-weight: 700; color: var(--blue); line-height: 1; }
.tpl-more-lbl  { font-weight: 700; font-size: .85rem; color: var(--g700); margin-top: 4px; }
.tpl-more-cta  { font-size: .75rem; color: var(--g500); margin-top: 6px; }

/* ================================================================
   FONCTIONNALITÉS
   ================================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card {
  background: var(--white); border: 1px solid var(--g100);
  border-radius: var(--r-lg); padding: 30px;
  transition: all .28s; position: relative; overflow: hidden;
}
.feat-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--purple)); opacity: 0; transition: opacity .3s; }
.feat-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feat-card:hover::after { opacity: 1; }
.feat-card.feat-featured { background: linear-gradient(135deg, var(--blue), #4F46E5); border-color: transparent; grid-column: span 1; }
.feat-icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.ic-blue   { background: var(--blue-l); }
.ic-green  { background: var(--green-l); }
.ic-gold   { background: var(--gold-l); }
.ic-purple { background: var(--purple-l); }
.ic-white  { background: rgba(255,255,255,.2); }
.feat-card.feat-featured .feat-icon { background: rgba(255,255,255,.2); }
.feat-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feat-desc  { font-size: .88rem; color: var(--g500); line-height: 1.65; }
.feat-card.feat-featured .feat-title,
.feat-card.feat-featured .feat-desc { color: #fff; }
.feat-card.feat-featured .feat-desc { color: rgba(255,255,255,.75); }
.feat-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .82rem; font-weight: 700; color: var(--blue);
  margin-top: 14px; transition: gap .2s;
}
.feat-link:hover { gap: 8px; }

/* Barres ATS */
.ats-bars { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.ats-bar-row { display: flex; align-items: center; gap: 10px; }
.ats-bar-lbl  { font-size: .72rem; width: 120px; flex-shrink: 0; }
.ats-bar-track { flex: 1; height: 5px; background: var(--g100); border-radius: 3px; overflow: hidden; }
.ats-bar-fill  { height: 100%; border-radius: 3px; animation: atsGrow 2s ease both; }
@keyframes atsGrow { from { width: 0 !important; } }
.ats-bar-val   { font-size: .72rem; font-weight: 700; width: 28px; text-align: right; }

/* ================================================================
   SECTION ATS
   ================================================================ */
.ats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ats-tips  { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.ats-tip   {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; background: var(--white);
  border: 1px solid var(--g100); border-radius: 12px;
  box-shadow: var(--shadow-sm); transition: all .22s;
}
.ats-tip:hover { border-color: var(--blue-l); box-shadow: var(--shadow-md); transform: translateX(4px); }
.ats-tip-icon  { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ats-tip-title { font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.ats-tip-desc  { font-size: .78rem; color: var(--g500); line-height: 1.5; }

.ats-score-card {
  background: var(--white); border: 1px solid var(--g100);
  border-radius: var(--r-xl); padding: 36px; box-shadow: var(--shadow-md);
}
.ats-score-label { font-size: .78rem; font-weight: 600; color: var(--g500); text-transform: uppercase; letter-spacing: .08em; text-align: center; margin-bottom: 12px; }
.ats-ring-wrap   { width: 140px; height: 140px; margin: 0 auto 28px; position: relative; }
.ats-ring-svg    { width: 100%; height: 100%; }
.ats-ring-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ats-ring-val    { font-family: var(--ffd); font-size: 2.4rem; font-weight: 700; color: var(--dark); line-height: 1; }
.ats-ring-max    { font-size: .78rem; color: var(--g500); }
.ats-compare     { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.ats-compare-title { font-size: .78rem; font-weight: 600; color: var(--g500); margin-bottom: 6px; text-align: center; }
.ats-cmp-row { display: flex; align-items: center; gap: 10px; }
.ats-cmp-lbl { font-size: .8rem; color: var(--g600,var(--g500)); width: 130px; flex-shrink: 0; }
.ats-cmp-track { flex: 1; height: 6px; background: var(--g100); border-radius: 3px; overflow: hidden; }
.ats-cmp-fill  { height: 100%; border-radius: 3px; animation: atsGrow 1.8s ease both; }
.ats-cmp-val   { font-size: .78rem; font-weight: 700; width: 28px; text-align: right; }

/* ================================================================
   AVIS CLIENTS
   ================================================================ */
.reviews-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.reviews-overall { display: flex; align-items: center; gap: 18px; }
.reviews-score-big { font-family: var(--ffd); font-size: 4rem; font-weight: 700; color: var(--dark); line-height: 1; }
.stars { font-size: 1rem; color: #F59E0B; letter-spacing: 1px; }
.reviews-count { font-size: .82rem; color: var(--g500); margin-top: 4px; }
.reviews-bar-wrap { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.reviews-bar-wrap > div { width: 80px; height: 5px; background: var(--g100); border-radius: 3px; overflow: hidden; }
.reviews-bar-fill { height: 100%; width: 96%; background: #F59E0B; border-radius: 3px; }
.reviews-bar-wrap span { font-size: .72rem; color: var(--g500); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review-card {
  background: var(--white); border: 1px solid var(--g100);
  border-radius: var(--r-lg); padding: 24px;
  transition: all .28s;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-l); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-av {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.review-name { font-size: .9rem; font-weight: 700; color: var(--dark); }
.review-meta { font-size: .74rem; color: var(--g500); margin-top: 2px; }
.review-text { font-size: .88rem; color: var(--g500); line-height: 1.68; }
.review-badge {
  display: inline-block; margin-top: 12px;
  font-size: .7rem; font-weight: 700;
  background: var(--green-l); color: var(--green);
  padding: 2px 10px; border-radius: 10px;
}

/* ================================================================
   COMPARAISON
   ================================================================ */
.compare-wrap { overflow-x: auto; }
.cmp-table { border: 1px solid var(--g200); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm); }
.cmp-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; border-bottom: 1px solid var(--g100); }
.cmp-row:last-child { border-bottom: none; }
.cmp-cell { padding: 15px 22px; font-size: .88rem; display: flex; align-items: center; gap: 7px; border-right: 1px solid var(--g100); }
.cmp-cell:last-child { border-right: none; }
.cmp-head .cmp-cell { background: var(--g50); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--g500); }
.cmp-head .wizan-col { background: var(--blue-xl); color: var(--blue); }
.cmp-even { background: var(--g50); }
.wizan-col { background: rgba(26,86,219,.03); }
.cmp-feat { color: var(--g600,var(--g500)); }
.cmp-val  { font-size: .82rem; color: var(--g500); }
.ico-ok { color: var(--green); font-weight: 700; font-size: 1rem; }
.ico-no { color: var(--red); font-size: 1rem; }
.ico-pt { color: var(--gold); font-size: 1rem; }

/* ================================================================
   TARIFS
   ================================================================ */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 760px; margin: 56px auto 0; }
.price-card {
  border-radius: var(--r-xl); padding: 38px;
  border: 2px solid var(--g100); background: var(--white);
  transition: all .28s; position: relative;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-pro {
  border-color: var(--blue);
  background: linear-gradient(155deg, var(--blue-xl), var(--white));
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
}
.price-popular-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--blue); color: #fff;
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
}
.price-plan   { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--g400,var(--g500)); margin-bottom: 10px; }
.price-amount { font-family: var(--ffd); font-size: 3rem; font-weight: 700; color: var(--dark); line-height: 1; margin-bottom: 6px; }
.price-pro .price-amount { color: var(--blue); }
.price-period { font-size: .85rem; color: var(--g500); margin-bottom: 24px; }
.price-divider { height: 1px; background: var(--g100); margin-bottom: 22px; }
.price-feats  { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.pf {
  display: flex; align-items: center; gap: 9px;
  font-size: .88rem; color: var(--g600,var(--g500));
}
.pf::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-l); color: var(--green);
  font-size: .62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pf.off { opacity: .4; text-decoration: line-through; }
.pf.off::before { background: var(--g100); color: var(--g300); content: '—'; font-size: .5rem; }
.price-note { font-size: .78rem; color: var(--g400,var(--g500)); text-align: center; margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-item { border: 1px solid var(--g100); border-radius: var(--r-lg); overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: var(--blue-l); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; background: var(--white);
  font-size: .93rem; font-weight: 700; color: var(--dark);
  gap: 14px; width: 100%; text-align: left;
  border: none; font-family: var(--ff);
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue-xl); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 300; flex-shrink: 0; transition: all .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 22px 18px; font-size: .87rem; color: var(--g500); line-height: 1.75; border-top: 1px solid var(--g100); }
.faq-item.open .faq-a { max-height: 500px; }

/* ================================================================
   CTA FINAL
   ================================================================ */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1A56DB 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--ffd); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; color: #fff; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 14px; }
.cta-inner h2 em { font-style: italic; color: #93C5FD; }
.cta-inner p  { font-size: 1.05rem; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 38px; }
.cta-actions  { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-trust-list {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin-top: 28px; flex-wrap: wrap;
}
.cta-trust-list li { font-size: .82rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 6px; }
.cta-trust-list li::before { content: '✓'; color: #86EFAC; font-weight: 700; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.55); padding: 72px 0 40px; }
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-text { font-family: var(--ffd); font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-brand-text span { color: #93C5FD; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 270px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700; transition: all .2s;
}
.soc-btn:hover { background: var(--blue); color: #fff; }
.footer-ct { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.footer-col a { display: block; font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 36px; font-size: .78rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .tpl-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-brand-col { grid-column: span 3; }
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 24px; }
  .hero-h1, .hero-sub, .hero-eyebrow { max-width: none; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .ats-inner { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-actions .btn-outline { display: none; }
  .nav-burger { display: flex; }
  .nav-menu.open { display: flex; flex-direction: column; gap: 4px; position: fixed; top: calc(var(--nav) + 38px); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--g200); padding: 16px; box-shadow: var(--shadow-lg); z-index: 300; }
  .tpl-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .how-steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cmp-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .cmp-cell { padding: 12px 10px; font-size: .78rem; }
  .reviews-top { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: span 2; }
}
