/* =========================================================
   POLE SCHOOL — Feuille de style partagée (direction Éditorial)
   ========================================================= */
:root{
  --ink:#f4efed; --bg:#100d0e; --bg2:#161213; --red:#e11d2e; --red-soft:#ff4356;
  --mut:#9a9092; --line:rgba(255,255,255,.09); --maxw:1240px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Hanken Grotesk',sans-serif;background:var(--bg);color:var(--ink);-webkit-font-smoothing:antialiased;overflow-x:hidden}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit}
ul{list-style:none}
.serif{font-family:'Bodoni Moda',serif}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 40px}
.red{color:var(--red)}
.center{text-align:center}

/* placeholder */
.ph{position:relative;background-color:#201b1c;
  background-image:repeating-linear-gradient(135deg,rgba(255,255,255,.045) 0 1px,transparent 1px 11px);overflow:hidden}
.ph::after{content:attr(data-label);position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  font-family:'Space Grotesk',monospace;font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.38);text-align:center;padding:16px;line-height:1.6}

/* buttons */
.btn-fill{display:inline-flex;align-items:center;gap:9px;background:var(--red);color:#fff;padding:16px 30px;border-radius:46px;font-weight:700;font-size:15px;transition:.2s;white-space:nowrap}
.btn-fill:hover{transform:translateY(-2px);box-shadow:0 14px 34px rgba(225,29,46,.4)}
.btn-out{display:inline-flex;align-items:center;gap:9px;border:1px solid rgba(255,255,255,.25);padding:15px 28px;border-radius:46px;font-weight:600;font-size:15px;transition:.2s;white-space:nowrap}
.btn-out:hover{background:var(--ink);color:var(--bg);border-color:var(--ink)}
.btn-text{font-size:14.5px;font-weight:600;display:inline-flex;align-items:center;gap:8px;transition:.2s}
.btn-text:hover{color:var(--red)}

/* ============ NAV ============ */
nav.top{position:fixed;top:0;left:0;right:0;z-index:1000;transition:.3s;border-bottom:1px solid transparent}
nav.top.scrolled{background:rgba(16,13,14,.9);backdrop-filter:blur(16px);border-bottom-color:var(--line)}
nav.top .inner{display:flex;align-items:center;justify-content:space-between;max-width:var(--maxw);margin:0 auto;padding:18px 40px;transition:.3s}
nav.top.scrolled .inner{padding:12px 40px}
nav.top img.logo{height:60px;width:auto;transition:.3s;display:block}
nav.top.scrolled img.logo{height:50px}
nav.top .links{display:flex;gap:34px;font-size:14.5px;color:var(--mut)}
nav.top .links a{transition:.2s;position:relative}
nav.top .links a:hover{color:var(--ink)}
nav.top .links a.active{color:var(--ink)}
nav.top .links a.active::after{content:"";position:absolute;left:0;right:0;bottom:-7px;height:2px;background:var(--red)}
nav.top .right{display:flex;align-items:center;gap:22px}
nav.top .right .login{font-size:14.5px;font-weight:600}
.navcta{border:1px solid rgba(255,255,255,.25);padding:11px 22px;border-radius:40px;font-size:13.5px;font-weight:600;transition:.2s;white-space:nowrap}
.navcta:hover{background:var(--ink);color:var(--bg);border-color:var(--ink)}
/* burger + mobile menu */
.burger{display:none;flex-direction:column;gap:5px;width:30px;height:30px;justify-content:center;align-items:center}
.burger span{width:22px;height:2px;background:var(--ink);border-radius:2px;transition:.3s}
nav.top.menu-open .burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
nav.top.menu-open .burger span:nth-child(2){opacity:0}
nav.top.menu-open .burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-menu{display:none;flex-direction:column;gap:4px;padding:14px 40px 28px;background:rgba(12,10,11,.98);border-bottom:1px solid var(--line)}
.mobile-menu a{padding:14px 0;font-size:17px;border-bottom:1px solid var(--line)}
.mobile-menu a:last-child{border-bottom:none}
.mobile-menu .btn-fill{margin-top:16px;justify-content:center}
nav.top.menu-open .mobile-menu{display:flex}

/* ============ INTERIOR PAGE BANNER ============ */
.pagehero{padding:170px 0 70px;border-bottom:1px solid var(--line);position:relative;overflow:hidden}
.pagehero .wrap{position:relative;z-index:2}
.pagehero .herobg{position:absolute;inset:0;z-index:0;pointer-events:none;overflow:hidden}
.pagehero .crumbs{font-size:12.5px;letter-spacing:.04em;color:var(--mut);margin-bottom:22px}
.pagehero .crumbs a:hover{color:var(--ink)}
.pagehero .k{font-size:12px;letter-spacing:.22em;text-transform:uppercase;color:var(--red);margin-bottom:20px;display:flex;align-items:center;gap:10px}
.pagehero .k::before{content:"";width:30px;height:1px;background:var(--red)}
.pagehero h1{font-family:'Bodoni Moda',serif;font-weight:500;font-size:clamp(40px,5.4vw,76px);line-height:1.0;letter-spacing:-.01em;max-width:14ch}
.pagehero h1 em{font-style:italic;color:var(--red)}
.pagehero .lead{margin-top:26px;font-size:18.5px;line-height:1.6;color:var(--mut);max-width:560px}
.pagehero .actions{margin-top:34px;display:flex;gap:18px;flex-wrap:wrap}

/* ============ HERO (home) ============ */
/* hero : full-width comme pagehero — le contenu centré est dans .hero-content */
.hero{position:relative;overflow:hidden}
.hero-content{display:grid;grid-template-columns:1.05fr .95fr;gap:50px;align-items:center;max-width:var(--maxw);margin:0 auto;padding:140px 40px 90px;position:relative;z-index:2}
.herobg{position:absolute;inset:0;z-index:0;pointer-events:none;overflow:hidden}
.herobg .hb-glow{position:absolute;width:1050px;height:1050px;right:-280px;top:-360px;border-radius:50%;
  background:radial-gradient(circle,rgba(225,29,46,.55),rgba(225,29,46,.16) 38%,transparent 68%);filter:blur(8px)}
.herobg .hb-glow2{position:absolute;width:620px;height:620px;left:-220px;bottom:-280px;border-radius:50%;
  background:radial-gradient(circle,rgba(225,29,46,.22),transparent 66%);filter:blur(10px)}
.herobg .hb-slash{position:absolute;left:-30%;width:160%;height:1px;top:44%;transform:rotate(-19deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.5) 30%,rgba(255,255,255,.95) 50%,rgba(255,255,255,.5) 70%,transparent);
  box-shadow:0 0 34px 2px rgba(255,255,255,.4)}
.herobg .hb-slash.s2{top:57%;opacity:.30;box-shadow:0 0 22px 1px rgba(255,255,255,.25)}
.herobg .hb-slash.s3{top:38%;opacity:.14;box-shadow:none}
.herobg::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 50%,var(--bg) 97%),linear-gradient(90deg,var(--bg) 6%,rgba(16,13,14,.45) 30%,transparent 52%)}
.kicker{display:inline-flex;align-items:center;gap:10px;font-size:12px;letter-spacing:.22em;text-transform:uppercase;color:var(--red);margin-bottom:26px}
.kicker::before{content:"";width:30px;height:1px;background:var(--red)}
.hero h1{font-family:'Bodoni Moda',serif;font-weight:500;font-size:clamp(46px,5.6vw,82px);line-height:.98;letter-spacing:-.01em}
.hero h1 em{font-style:italic;color:var(--red)}
.hero .sub{margin:28px 0 36px;font-size:18px;line-height:1.6;color:var(--mut);max-width:460px}
.btnrow{display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.hero .note{margin-top:22px;font-size:13px;color:var(--mut);display:flex;align-items:center;gap:8px}
.hero .note::before{content:"✓";color:var(--red);font-weight:700}
.heroimg{position:relative;height:580px;border-radius:8px}
.heroimg .ph{position:absolute;inset:0;border-radius:8px}
.floatcard{position:absolute;bottom:24px;left:-34px;background:rgba(20,17,18,.82);backdrop-filter:blur(10px);
  border:1px solid var(--line);border-radius:14px;padding:18px 22px;display:flex;gap:16px;align-items:center;box-shadow:0 20px 50px rgba(0,0,0,.4)}
.floatcard .num{font-family:'Bodoni Moda',serif;font-size:38px;color:var(--red);line-height:1}
.floatcard .lbl{font-size:12.5px;color:var(--mut);line-height:1.35}
.floattop{position:absolute;top:30px;right:-26px;background:rgba(20,17,18,.82);backdrop-filter:blur(10px);
  border:1px solid var(--line);border-radius:14px;padding:14px 18px;display:flex;gap:12px;align-items:center;box-shadow:0 20px 50px rgba(0,0,0,.4)}
.floattop .dotg{width:10px;height:10px;border-radius:50%;background:#3ec96a;box-shadow:0 0 0 4px rgba(62,201,106,.18)}
.floattop span{font-size:13px;font-weight:600}

/* ============ STRIP ============ */
.strip{border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:28px 0}
.strip .wrap{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:24px}
.strip .lab{font-size:11.5px;letter-spacing:.18em;text-transform:uppercase;color:var(--mut)}
.strip .names{display:flex;gap:40px;font-family:'Bodoni Moda',serif;font-size:20px;color:rgba(255,255,255,.5);flex-wrap:wrap}

/* ============ SECTION SHELL ============ */
.sec{padding:104px 0}
.sec.tight{padding:78px 0}
.sechead{max-width:660px;margin-bottom:58px}
.sechead.center{margin-left:auto;margin-right:auto;text-align:center}
.sechead .k{font-size:12px;letter-spacing:.2em;text-transform:uppercase;color:var(--red);margin-bottom:18px}
.sechead h2{font-family:'Bodoni Moda',serif;font-weight:500;font-size:clamp(34px,3.8vw,54px);line-height:1.04}
.sechead h2 em{font-style:italic;color:var(--red)}
.sechead p{margin-top:18px;font-size:17px;line-height:1.65;color:var(--mut)}

/* features grid */
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line);border-radius:10px;overflow:hidden}
.feat{background:var(--bg);padding:40px 34px;transition:.25s}
.feat:hover{background:var(--bg2)}
.feat .ic{width:48px;height:48px;border-radius:50%;border:1px solid var(--red);display:flex;align-items:center;justify-content:center;color:var(--red);font-family:'Bodoni Moda',serif;font-style:italic;font-size:20px;margin-bottom:24px}
.feat h3{font-size:20px;font-weight:700;margin-bottom:11px;letter-spacing:-.01em}
.feat p{font-size:14.5px;line-height:1.62;color:var(--mut)}

/* ============ FEATURE DETAIL ROWS (fonctionnalités) ============ */
.frow{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;padding:60px 0}
.frow + .frow{border-top:1px solid var(--line)}
.frow.rev .ftext{order:2}
.frow .fimg{height:420px;border-radius:12px}
.frow .fnum{font-family:'Bodoni Moda',serif;font-style:italic;font-size:15px;color:var(--red);margin-bottom:16px}
.frow .ftext h2{font-family:'Bodoni Moda',serif;font-weight:500;font-size:clamp(28px,3.2vw,42px);line-height:1.06;margin-bottom:18px}
.frow .ftext h2 em{font-style:italic;color:var(--red)}
.frow .ftext p{font-size:16px;line-height:1.65;color:var(--mut);margin-bottom:22px;max-width:460px}

/* bibliothèque showcase */
.showcase{display:grid;grid-template-columns:1.05fr .95fr;gap:60px;align-items:center}
.showcase.rev{grid-template-columns:.95fr 1.05fr}
.showcase .biglib{height:500px;border-radius:10px}
.showcase h2{font-family:'Bodoni Moda',serif;font-weight:500;font-size:clamp(32px,3.4vw,48px);line-height:1.05;margin-bottom:22px}
.showcase h2 em{font-style:italic;color:var(--red)}
.showcase .lead{font-size:16.5px;line-height:1.65;color:var(--mut);margin-bottom:26px;max-width:440px}
.checklist{display:flex;flex-direction:column;gap:14px;margin-bottom:30px}
.checklist li{display:flex;gap:13px;align-items:flex-start;font-size:15px;line-height:1.5}
.checklist li::before{content:"";flex:none;width:20px;height:20px;margin-top:1px;border-radius:50%;background:rgba(225,29,46,.14);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23e11d2e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center}
.libtags{display:flex;flex-wrap:wrap;gap:10px}
.libtags span{border:1px solid rgba(255,255,255,.16);padding:8px 16px;border-radius:40px;font-size:13px;transition:.2s}
.libtags span:hover{border-color:var(--red);color:var(--red)}

/* ============ LIBRARY PAGE GALLERY ============ */
.libfilters{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-bottom:46px}
.chip{padding:9px 20px;border-radius:40px;border:1px solid var(--line);font-size:13.5px;font-weight:600;color:var(--mut);transition:.2s}
.chip:hover{color:var(--ink)}
.chip.active{background:var(--red);color:#fff;border-color:var(--red)}
.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.gcard{position:relative;border:1px solid var(--line);border-radius:12px;overflow:hidden;transition:.25s}
.gcard:hover{transform:translateY(-4px);border-color:rgba(255,255,255,.2)}
.gcard .gimg{height:200px}
.gcard .play{position:absolute;top:14px;right:14px;width:34px;height:34px;border-radius:50%;background:rgba(225,29,46,.92);display:flex;align-items:center;justify-content:center;color:#fff;font-size:12px}
.gcard .gmeta{padding:16px 18px}
.gcard .gmeta h4{font-size:15px;font-weight:700;margin-bottom:4px}
.gcard .gmeta .lvl{font-size:12px;color:var(--red);font-weight:600;text-transform:uppercase;letter-spacing:.06em}

/* audiences tabs */
.aud{background:var(--bg2)}
.tabs{display:flex;gap:8px;justify-content:center;margin-bottom:50px;flex-wrap:wrap}
.tab{padding:12px 26px;border-radius:44px;font-size:15px;font-weight:600;color:var(--mut);border:1px solid var(--line);transition:.2s}
.tab:hover{color:var(--ink)}
.tab.active{background:var(--red);color:#fff;border-color:var(--red)}
.panel{display:none;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.panel.active{display:grid}
.panel .pimg{height:420px;border-radius:10px}
.panel h3{font-family:'Bodoni Moda',serif;font-weight:500;font-size:clamp(28px,3vw,40px);line-height:1.08;margin-bottom:18px}
.panel p{font-size:16px;line-height:1.65;color:var(--mut);margin-bottom:26px;max-width:440px}

/* steps */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;counter-reset:s}
.step{position:relative;padding-top:30px}
.step::before{counter-increment:s;content:"0" counter(s);font-family:'Bodoni Moda',serif;font-size:64px;color:rgba(225,29,46,.22);line-height:1;position:absolute;top:-14px;left:0}
.step h3{font-size:21px;font-weight:700;margin:10px 0 10px;letter-spacing:-.01em}
.step p{font-size:14.5px;line-height:1.62;color:var(--mut)}
.step .bar{width:46px;height:2px;background:var(--red);margin-bottom:18px}

/* stats band */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;text-align:center}
.stat .v{font-family:'Bodoni Moda',serif;font-size:clamp(40px,4.4vw,60px);line-height:1;color:var(--red)}
.stat .l{margin-top:12px;font-size:14px;color:var(--mut)}

/* values (about) */
.values{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.value{border:1px solid var(--line);border-radius:14px;padding:34px 30px;transition:.25s}
.value:hover{background:var(--bg2)}
.value .vn{font-family:'Bodoni Moda',serif;font-style:italic;font-size:20px;color:var(--red);margin-bottom:18px}
.value h3{font-size:19px;font-weight:700;margin-bottom:10px}
.value p{font-size:14.5px;line-height:1.6;color:var(--mut)}

/* testimonial */
.quote{text-align:center;max-width:900px;margin:0 auto;padding:0 20px}
.quote .mark{font-family:'Bodoni Moda',serif;font-size:90px;line-height:.6;color:var(--red);height:46px}
.quote blockquote{font-family:'Bodoni Moda',serif;font-weight:500;font-size:clamp(26px,3vw,40px);line-height:1.28;font-style:italic;margin:18px 0 34px}
.quote .who{display:flex;align-items:center;justify-content:center;gap:16px}
.quote .av{width:54px;height:54px;border-radius:50%}
.quote .who .nm{text-align:left}
.quote .who .nm b{display:block;font-size:15px}
.quote .who .nm span{font-size:13px;color:var(--mut)}

/* pricing — single plan */
.single-price{display:grid;grid-template-columns:1fr 1fr;gap:0;max-width:900px;margin:0 auto;
  border:1px solid var(--line);border-radius:20px;overflow:hidden;background:linear-gradient(180deg,rgba(225,29,46,.07),transparent 50%)}
.single-price .sp-left{padding:48px 44px;border-right:1px solid var(--line);display:flex;flex-direction:column;align-items:flex-start}
.sp-trial{background:var(--red);color:#fff;font-size:11.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:6px 14px;border-radius:30px;margin-bottom:26px}
.sp-amt{display:flex;align-items:baseline;gap:9px}
.sp-amt .v{font-family:'Bodoni Moda',serif;font-size:68px;line-height:.9}
.sp-amt .per{font-size:16px;color:var(--mut);font-weight:600}
.sp-billed{font-size:13.5px;color:var(--mut);margin:10px 0 22px}
.sp-desc{font-size:15px;line-height:1.6;color:#ddd3d4;margin-bottom:26px}
.sp-note{margin-top:16px;font-size:12.5px;color:var(--mut);display:flex;align-items:center;gap:8px}
.sp-note::before{content:"✓";color:var(--red);font-weight:700}
.single-price .sp-right{padding:48px 44px;background:rgba(255,255,255,.015)}
.sp-inc{font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--mut);margin-bottom:24px}
.sp-feats{display:grid;grid-template-columns:1fr 1fr;gap:16px 18px}
.sp-feats li{display:flex;gap:11px;font-size:14.5px;line-height:1.4;color:#e6dcdd;align-items:flex-start}
.sp-feats li::before{content:"";flex:none;width:19px;height:19px;margin-top:1px;border-radius:50%;background:rgba(225,29,46,.14);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23e11d2e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center}
.pricenote{text-align:center;margin-top:26px;font-size:13px;color:var(--mut)}

/* FAQ */
.faq{max-width:820px;margin:0 auto}
.qa{border-bottom:1px solid var(--line)}
.qa button{width:100%;text-align:left;display:flex;justify-content:space-between;align-items:center;gap:20px;padding:26px 0;font-size:18px;font-weight:600}
.qa .sign{flex:none;width:26px;height:26px;position:relative;transition:.3s}
.qa .sign::before,.qa .sign::after{content:"";position:absolute;background:var(--red);border-radius:2px}
.qa .sign::before{top:50%;left:0;right:0;height:2px;transform:translateY(-50%)}
.qa .sign::after{left:50%;top:0;bottom:0;width:2px;transform:translateX(-50%);transition:.3s}
.qa.open .sign::after{transform:translateX(-50%) scaleY(0)}
.qa .ans{max-height:0;overflow:hidden;transition:max-height .35s ease}
.qa .ans p{padding:0 0 26px;font-size:15.5px;line-height:1.7;color:var(--mut);max-width:680px}

/* ============ CONTACT ============ */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
.cinfo h3{font-family:'Bodoni Moda',serif;font-weight:500;font-size:30px;margin-bottom:16px}
.cinfo p{font-size:16px;line-height:1.65;color:var(--mut);margin-bottom:30px;max-width:420px}
.cinfo .crow{display:flex;gap:16px;align-items:flex-start;padding:20px 0;border-top:1px solid var(--line)}
.cinfo .crow .ic{flex:none;width:42px;height:42px;border-radius:50%;border:1px solid var(--red);color:var(--red);display:flex;align-items:center;justify-content:center;font-family:'Bodoni Moda',serif;font-style:italic}
.cinfo .crow .ct b{display:block;font-size:15px;margin-bottom:3px}
.cinfo .crow .ct span{font-size:14px;color:var(--mut)}
.cform{border:1px solid var(--line);border-radius:18px;padding:40px 38px;background:var(--bg2)}
.cform .field{margin-bottom:20px}
.cform label{display:block;font-size:13px;font-weight:600;margin-bottom:9px;color:#ddd3d4}
.cform input,.cform select,.cform textarea{width:100%;background:var(--bg);border:1px solid var(--line);border-radius:10px;padding:14px 16px;color:var(--ink);font:inherit;font-size:15px;transition:.2s}
.cform input:focus,.cform select:focus,.cform textarea:focus{outline:none;border-color:var(--red)}
.cform textarea{resize:vertical;min-height:120px}
.cform .row2{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.cform .btn-fill{width:100%;justify-content:center;margin-top:6px}
.cform .formnote{margin-top:16px;font-size:12.5px;color:var(--mut);text-align:center}

/* ============ LEGAL / PROSE ============ */
.prose{max-width:780px;margin:0 auto}
.prose .upd{font-size:13px;color:var(--mut);margin-bottom:40px}
.prose h2{font-family:'Bodoni Moda',serif;font-weight:500;font-size:28px;margin:44px 0 16px;line-height:1.1}
.prose h2:first-child{margin-top:0}
.prose h3{font-size:18px;font-weight:700;margin:26px 0 10px}
.prose p,.prose li{font-size:15.5px;line-height:1.75;color:#cdc4c5;margin-bottom:14px}
.prose ul{padding-left:4px;margin-bottom:16px}
.prose ul li{position:relative;padding-left:22px}
.prose ul li::before{content:"";position:absolute;left:2px;top:11px;width:6px;height:6px;border-radius:50%;background:var(--red)}
.prose a{color:var(--red);text-decoration:underline;text-underline-offset:3px}
.prose .ph-box{border:1px dashed rgba(225,29,46,.5);border-radius:10px;padding:16px 18px;background:rgba(225,29,46,.05);color:#e6b8bc;font-size:14px;margin:8px 0 18px}

/* final cta */
.finalcta{text-align:center;padding:120px 0;border-top:1px solid var(--line);position:relative}
.finalcta h2{font-family:'Bodoni Moda',serif;font-weight:500;font-size:clamp(40px,5.4vw,76px);line-height:1.02;margin-bottom:28px}
.finalcta h2 em{font-style:italic;color:var(--red)}
.finalcta p{color:var(--mut);font-size:17px;margin-bottom:36px}

/* footer */
footer{border-top:1px solid var(--line);padding:70px 0 36px}
.fgrid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px;margin-bottom:54px}
footer .fabout img{height:40px;margin-bottom:20px}
footer .fabout p{font-size:14px;line-height:1.6;color:var(--mut);max-width:300px}
footer h4{font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--mut);margin-bottom:20px}
footer .fcol a{display:block;font-size:14.5px;color:#cdc4c5;margin-bottom:13px;transition:.2s}
footer .fcol a:hover{color:var(--red)}
.fbottom{border-top:1px solid var(--line);padding-top:28px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;font-size:13px;color:var(--mut)}
.fbottom .soc{display:flex;gap:14px}
.fbottom .soc a{width:34px;height:34px;border:1px solid var(--line);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:.2s}
.fbottom .soc a:hover{border-color:var(--red);color:var(--red)}

/* reveal */
.rv{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}
.rv.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){.rv{opacity:1;transform:none;filter:none}}

/* ============ RESPONSIVE ============ */
@media(max-width:920px){
  .wrap{padding:0 24px}
  .hero-content,.showcase,.showcase.rev,.panel.active,.frow,.frow.rev,.contact-grid{grid-template-columns:1fr;gap:40px}
  .frow.rev .ftext{order:0}
  .grid3,.steps,.values{grid-template-columns:1fr}
  .stats,.gallery{grid-template-columns:repeat(2,1fr)}
  .cform .row2{grid-template-columns:1fr}
  .single-price{grid-template-columns:1fr;max-width:480px}
  .single-price .sp-left{border-right:none;border-bottom:1px solid var(--line)}
  .floatcard{left:12px}.floattop{right:12px}
  .hero-content{padding:120px 24px 70px}
  .heroimg{height:420px}
  nav.top .links,nav.top .right .login,nav.top .right .navcta{display:none}
  .burger{display:flex}
  .pagehero{padding:130px 0 56px}
  .fgrid{grid-template-columns:1fr 1fr;gap:32px}
}
@media(max-width:560px){
  .sp-feats{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .fgrid{grid-template-columns:1fr}
  .strip .names{gap:20px;font-size:16px}
}

/* =========================================================
   REFRESH v2 — polish premium, animations & micro-interactions
   ========================================================= */
:root{--ease:cubic-bezier(.22,.72,.24,1)}
::selection{background:var(--red);color:#fff}
html{scroll-padding-top:96px}

/* finer reveal: premium easing + soft blur + per-element stagger (--d set in JS) */
.rv{--d:0s;transition:opacity .85s var(--ease) var(--d),transform .85s var(--ease) var(--d),filter .85s var(--ease) var(--d)}
.rv:not(.in){filter:blur(3px)}
/* balanced display headings */
.hero h1,.pagehero h1,.sechead h2,.finalcta h2,.showcase h2,.frow .ftext h2,.opt-hero h1,.quote blockquote{text-wrap:balance}

/* scroll progress bar */
.scroll-prog{position:fixed;top:0;left:0;height:2px;width:0;z-index:1100;
  background:linear-gradient(90deg,var(--red),var(--red-soft));box-shadow:0 0 12px rgba(225,29,46,.6);pointer-events:none}

/* nav: animated underline for hover + active (unifies old active rule) */
nav.top .links a::after{content:"";position:absolute;left:0;right:auto;bottom:-7px;height:2px;width:0;
  background:var(--red);transition:width .32s var(--ease)}
nav.top .links a:hover::after,nav.top .links a.active::after{width:100%}
.op-plus{color:var(--red);font-weight:800}
nav.top.scrolled{box-shadow:0 14px 40px -20px rgba(0,0,0,.8)}

/* buttons: light sweep + crisper press */
.btn-fill{position:relative;overflow:hidden}
.btn-fill::after{content:"";position:absolute;top:0;left:-130%;width:55%;height:100%;
  background:linear-gradient(100deg,transparent,rgba(255,255,255,.4),transparent);transform:skewX(-18deg);transition:left .65s var(--ease)}
.btn-fill:hover::after{left:150%}
.btn-fill:active,.btn-out:active{transform:translateY(0) scale(.98)}
.btn-out{transition:.2s var(--ease)}
.navcta{position:relative;overflow:hidden}

/* feature cards: top accent draws in + icon fills */
.feat{position:relative}
.feat::before{content:"";position:absolute;top:0;left:0;height:2px;width:0;background:var(--red);transition:width .45s var(--ease)}
.feat:hover::before{width:100%}
.feat .ic{transition:background .3s var(--ease),color .3s var(--ease),transform .3s var(--ease)}
.feat:hover .ic{background:var(--red);color:#fff;transform:rotate(-4deg)}

/* gallery & tiles: gentle zoom under the frame */
.gcard .gimg{transition:transform .55s var(--ease)}
.gcard:hover .gimg{transform:scale(1.06)}

/* value cards: hairline accent on hover */
.value{position:relative;overflow:hidden}
.value::before{content:"";position:absolute;left:0;top:0;bottom:0;width:2px;background:var(--red);transform:scaleY(0);transform-origin:top;transition:transform .4s var(--ease)}
.value:hover::before{transform:scaleY(1)}

/* hero float cards: gentle drift (motion-safe) */
@media (prefers-reduced-motion:no-preference){
  .floatcard{animation:psFloat 6.5s ease-in-out infinite}
  .floattop{animation:psFloat 8s ease-in-out infinite reverse}
}
@keyframes psFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)}}

/* form focus glow */
.cform input:focus,.cform select:focus,.cform textarea:focus{box-shadow:0 0 0 3px rgba(225,29,46,.14)}

/* =========================================================
   OPTION + — page dédiée (site web clé en main)
   ========================================================= */
/* opt-hero : full-width — contenu dans .opt-hero-content */
.opt-hero{position:relative;overflow:hidden}
.opt-hero-content{display:grid;grid-template-columns:1.02fr .98fr;gap:56px;align-items:center;max-width:var(--maxw);margin:0 auto;padding:168px 40px 90px;position:relative;z-index:2}
.opt-hero .crumbs{font-size:12.5px;letter-spacing:.04em;color:var(--mut);margin-bottom:22px}
.opt-hero .crumbs a:hover{color:var(--ink)}
.opt-hero h1{font-family:'Bodoni Moda',serif;font-weight:500;font-size:clamp(42px,5vw,72px);line-height:1.0;letter-spacing:-.01em}
.opt-hero h1 em{font-style:italic;color:var(--red)}
.opt-hero .sub{margin:26px 0 30px;font-size:18px;line-height:1.62;color:var(--mut);max-width:480px}
.opt-hero .note{margin-top:20px;font-size:13px;color:var(--mut);display:flex;align-items:center;gap:8px}
.opt-hero .note::before{content:"✓";color:var(--red);font-weight:700}

/* price tag (reusable) */
.pricetag{display:inline-flex;align-items:baseline;gap:10px;border:1px solid var(--line);border-radius:46px;
  padding:12px 22px;background:rgba(225,29,46,.06);margin-bottom:8px}
.pricetag .pv{font-family:'Bodoni Moda',serif;font-size:30px;line-height:1;color:var(--ink)}
.pricetag .pp{font-size:13.5px;color:var(--mut)}
.pricetag .pp b{color:var(--red-soft);font-weight:700}

/* browser-frame mockup */
.bframe{border:1px solid var(--line);border-radius:16px;overflow:hidden;background:var(--bg2);box-shadow:0 50px 110px -30px rgba(0,0,0,.75)}
.bframe .bbar{display:flex;align-items:center;gap:8px;padding:13px 16px;border-bottom:1px solid var(--line);background:rgba(255,255,255,.025)}
.bframe .bdot{width:11px;height:11px;border-radius:50%;background:rgba(255,255,255,.16)}
.bframe .bdot.r{background:rgba(225,29,46,.6)}
.bframe .burl{margin-left:12px;flex:1;height:26px;border-radius:7px;background:var(--bg);border:1px solid var(--line);
  display:flex;align-items:center;gap:8px;padding:0 12px;font-family:'Space Grotesk',monospace;font-size:11px;color:var(--mut)}
.bframe .bbody{height:400px}

/* mini website preview — école cliente : féminin, élégant, artistique */
.ws{display:flex;flex-direction:column;background:#fdf8f3;color:#1c1512;overflow:hidden}
.ws-nav{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:0 16px;height:46px;border-bottom:1px solid rgba(0,0,0,.07);flex:none;background:#fdf8f3}
.ws-logo{font-family:'Bodoni Moda',serif;font-style:italic;font-size:15px;letter-spacing:.01em;color:#1c1512;display:flex;align-items:baseline;gap:5px}
.ws-logo span{font-family:'Hanken Grotesk',sans-serif;font-style:normal;font-size:8px;letter-spacing:.22em;text-transform:uppercase;color:#b87c8a;font-weight:600}
.ws-links{display:flex;gap:14px;font-size:9.5px;color:#9a8a8d;letter-spacing:.04em}
.ws-cta{font-size:9px;font-weight:700;background:#b87c8a;color:#fff;padding:6px 12px;border-radius:20px;white-space:nowrap;letter-spacing:.02em}
.ws-stage{position:relative;flex:1;overflow:hidden;display:flex;align-items:stretch}
.ws-photo{flex:0 0 48%;background:linear-gradient(145deg,#e8cfd6 0%,#f0dfe3 40%,#e4c8d0 70%,#d4b0bb 100%);position:relative;overflow:hidden}
.ws-dancer{position:absolute;top:50%;left:50%;transform:translate(-50%,-48%);height:95%;width:auto;object-fit:contain}
.ws-htext{flex:1;display:flex;flex-direction:column;justify-content:center;padding:18px 18px 18px 20px}
.ws-k{font-size:8px;letter-spacing:.2em;text-transform:uppercase;color:#b87c8a;margin-bottom:10px;font-weight:600}
.ws-htext h3{font-family:'Bodoni Moda',serif;font-weight:400;font-style:italic;font-size:26px;line-height:1.08;margin-bottom:10px;letter-spacing:-.01em;color:#1c1512}
.ws-htext h3 em{font-style:normal;color:#b87c8a}
.ws-htext p{font-size:10px;color:#9a8a8d;margin-bottom:14px;line-height:1.5;max-width:160px}
.ws-btn{display:inline-block;font-size:9px;font-weight:700;background:#1c1512;color:#fdf8f3;padding:8px 14px;border-radius:20px;letter-spacing:.04em;text-transform:uppercase}
.ws-agenda{display:flex;gap:7px;padding:10px 16px;border-top:1px solid rgba(0,0,0,.07);flex:none;background:#fdf8f3;flex-wrap:wrap;align-items:center}
.ws-slot{font-size:8px;color:#7a6a6d;border:1px solid rgba(0,0,0,.1);border-radius:7px;padding:5px 9px;display:flex;gap:5px;align-items:center;white-space:nowrap}
.ws-slot b{color:#1c1512;font-weight:700}
.ws-slot.ws-full{color:#b87c8a;border-color:rgba(184,124,138,.35);background:rgba(184,124,138,.06)}
.opt-hero .mock{position:relative}
.opt-hero .mockcard{position:absolute;background:rgba(20,17,18,.86);backdrop-filter:blur(10px);border:1px solid var(--line);
  border-radius:13px;padding:13px 17px;box-shadow:0 20px 50px rgba(0,0,0,.45);display:flex;gap:11px;align-items:center}
.opt-hero .mockcard .mi{font-family:'Bodoni Moda',serif;font-style:italic;color:var(--red);font-size:18px;line-height:1}
.opt-hero .mockcard b{display:block;font-size:13px}
.opt-hero .mockcard span{font-size:11.5px;color:var(--mut)}
.opt-hero .mc1{bottom:26px;left:-30px;animation:psFloat 7s ease-in-out infinite}
.opt-hero .mc2{top:34px;right:-26px;animation:psFloat 8.5s ease-in-out infinite reverse}
@media (prefers-reduced-motion:reduce){.opt-hero .mc1,.opt-hero .mc2{animation:none}}

/* included grid (9 items) */
.inc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line);border-radius:12px;overflow:hidden}
.inc{background:var(--bg);padding:34px 32px;transition:.25s;position:relative}
.inc::before{content:"";position:absolute;top:0;left:0;height:2px;width:0;background:var(--red);transition:width .45s var(--ease)}
.inc:hover{background:var(--bg2)}
.inc:hover::before{width:100%}
.inc .inc-n{font-family:'Bodoni Moda',serif;font-style:italic;font-size:15px;color:var(--red);margin-bottom:15px}
.inc h3{font-size:18px;font-weight:700;margin-bottom:9px;letter-spacing:-.01em}
.inc p{font-size:14px;line-height:1.6;color:var(--mut)}

/* 4-page tiles */
.pagetiles{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.ptile{border:1px solid var(--line);border-radius:12px;overflow:hidden;transition:.25s var(--ease);background:var(--bg)}
.ptile:hover{transform:translateY(-5px);border-color:rgba(255,255,255,.2)}
.ptile .pt-top{height:130px}
.ptile .pt-lab{padding:15px 17px;display:flex;justify-content:space-between;align-items:center;font-size:14.5px;font-weight:700}
.ptile .pt-lab .pt-i{font-family:'Bodoni Moda',serif;font-style:italic;color:var(--red);font-size:13px;font-weight:500}

/* option price band */
.optband{max-width:760px;margin:0 auto;border:1px solid var(--line);border-radius:20px;overflow:hidden;
  background:linear-gradient(180deg,rgba(225,29,46,.08),transparent 55%);text-align:center;padding:54px 44px}
.optband .ob-amt{display:flex;align-items:baseline;justify-content:center;gap:9px;margin:6px 0 4px}
.optband .ob-amt .v{font-family:'Bodoni Moda',serif;font-size:64px;line-height:.9}
.optband .ob-amt .per{font-size:16px;color:var(--mut);font-weight:600}
.optband .ob-sub{font-size:14px;color:var(--mut);margin-bottom:26px}
.optband .ob-note{margin-top:18px;font-size:12.5px;color:var(--mut)}

@media(max-width:920px){
  .opt-hero-content{grid-template-columns:1fr;gap:44px;padding:130px 24px 70px}
  .inc-grid{grid-template-columns:1fr}
  .pagetiles{grid-template-columns:repeat(2,1fr)}
  .bframe .bbody{height:320px}
}
@media(max-width:560px){
  .pagetiles{grid-template-columns:1fr}
  .optband{padding:40px 26px}
}

/* =========================================================
   PALETTE REFRESH — plus de rouge & blanc
   ========================================================= */

/* Hero : glow rouge bien plus large + slashes plus lumineux */
.herobg .hb-glow{width:1400px;height:1300px;right:-300px;top:-440px;
  background:radial-gradient(circle,rgba(225,29,46,.75),rgba(225,29,46,.24) 34%,transparent 62%);filter:blur(5px)}
.herobg .hb-glow2{width:900px;height:900px;left:-280px;bottom:-320px;
  background:radial-gradient(circle,rgba(225,29,46,.36),transparent 60%);filter:blur(8px)}
.herobg .hb-slash{
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.68) 28%,rgba(255,255,255,1) 50%,rgba(255,255,255,.68) 72%,transparent);
  box-shadow:0 0 52px 5px rgba(255,255,255,.52)}
.herobg .hb-slash.s2{opacity:.38}

/* Trust strip blanc */
.strip.white{background:#fff;border-top:none;border-bottom:none}
.strip.white .lab{color:#a08688}
.strip.white .names{color:rgba(26,16,18,.28)}

/* Section crème — respiration blanche ("Comment ça marche") */
.sec-cream{background:#f8f3f1;color:#1a1214}
.sec-cream .sechead .k{color:var(--red)}
.sec-cream .sechead h2{color:#1a1214}
.sec-cream .sechead h2 em{color:var(--red)}
.sec-cream .sechead p{color:#7a6668}
.sec-cream .step h3{color:#1a1214}
.sec-cream .step p{color:#7a6668}
.sec-cream .step::before{color:rgba(225,29,46,.13)}
.sec-cream .step .bar{background:var(--red)}

/* Section rouge profond — témoignage */
.sec-deepred{background:linear-gradient(135deg,#1e0305 0%,#2e060c 55%,#1a0204 100%)}
.sec-deepred .quote .mark{color:rgba(255,120,130,.6)}

/* finalcta → fond rouge plein sur toutes les pages */
.finalcta{background:var(--red);border-top:none}
.finalcta::before{content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(135deg,rgba(0,0,0,.22),transparent 55%)}
.finalcta h2{color:#fff}
.finalcta h2 em{font-style:italic;color:rgba(255,255,255,.9)}
.finalcta p{color:rgba(255,255,255,.78)}
.finalcta .btn-fill{background:#fff;color:var(--red)}
.finalcta .btn-fill:hover{background:#f4efed;box-shadow:0 14px 34px rgba(0,0,0,.22)}
.finalcta .btn-fill::after{background:linear-gradient(100deg,transparent,rgba(225,29,46,.1),transparent)}
.finalcta .btn-out{border-color:rgba(255,255,255,.5);color:#fff}
.finalcta .btn-out:hover{background:#fff;color:var(--red);border-color:#fff}

/* sec-cream — overrides composants */
.sec-cream .value{border-color:rgba(26,18,20,.12)}
.sec-cream .value:hover{background:rgba(26,18,20,.04)}
.sec-cream .value .vn{color:var(--red)}
.sec-cream .value h3{color:#1a1214}
.sec-cream .value p{color:#6a5a5d}
.sec-cream .stat .l{color:#6a5a5d}
.sec-cream .frow .ftext h2{color:#1a1214}
.sec-cream .frow .ftext h2 em{color:var(--red)}
.sec-cream .frow .ftext p{color:#6a5a5d}
.sec-cream .frow + .frow{border-top-color:rgba(26,18,20,.1)}
.sec-cream .checklist li{color:#2a1e21}
.sec-cream .btn-text{color:#2a1e21}
.sec-cream .btn-text:hover{color:var(--red)}
/* sec-deepred — overrides composants */
.sec-deepred .qa{border-bottom-color:rgba(255,255,255,.08)}
.sec-deepred .qa .ans p{color:rgba(255,255,255,.65)}

/* ===== PS LOGO — option C (icône + wordmark) ===== */
.ps-logo{display:inline-flex;align-items:center;gap:13px;text-decoration:none;line-height:1;flex:none}
.ps-mark{width:36px;height:38px;position:relative;flex:none;transition:.3s}
.ps-v{position:absolute;left:50%;top:0;bottom:0;width:2px;background:#e11d2e;transform:translateX(-50%);border-radius:1px}
.ps-arc{position:absolute;left:50%;top:50%;width:24px;height:17px;border:2px solid rgba(225,29,46,.6);border-right:none;border-radius:12px 0 0 12px;transform:translate(-52%,-50%);transition:.3s}
.ps-name{font-family:'Bodoni Moda',serif;font-weight:400;font-size:23px;line-height:.95;color:#f4efed;letter-spacing:-.01em;transition:.3s}
.ps-name em{font-style:italic;color:#e11d2e}
nav.top.scrolled .ps-logo .ps-mark{width:28px;height:30px}
nav.top.scrolled .ps-logo .ps-arc{width:18px;height:13px}
nav.top.scrolled .ps-logo .ps-name{font-size:18px}
nav.top.scrolled .ps-logo{gap:10px}
.fabout .ps-logo{margin-bottom:20px}
.fabout .ps-logo .ps-mark{width:28px;height:30px}
.fabout .ps-logo .ps-arc{width:18px;height:13px}
.fabout .ps-logo .ps-name{font-size:17px}

/* compat band */
.compat{padding:40px 0;border-bottom:1px solid var(--line)}
.compat-inner{display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap}
.compat-label{font-size:11.5px;letter-spacing:.18em;text-transform:uppercase;color:var(--mut);white-space:nowrap}
.compat-devices{display:flex;gap:28px;align-items:center}
.compat-device{display:flex;flex-direction:column;align-items:center;gap:8px;color:rgba(244,239,237,.45);font-size:11px;letter-spacing:.06em;transition:.25s}
.compat-device:hover{color:var(--ink)}
.compat-device svg{width:26px;height:26px;fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.compat-sep{width:1px;height:36px;background:var(--line);flex:none}
.compat-os{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.compat-os-item{font-size:13px;font-weight:600;color:rgba(244,239,237,.55);transition:.25s;white-space:nowrap}
.compat-os-item:hover{color:var(--ink)}
.compat-dot{width:3px;height:3px;border-radius:50%;background:rgba(255,255,255,.15);flex:none}
@media(max-width:760px){.compat-inner{justify-content:center;gap:24px}.compat-sep{display:none}.compat-label{width:100%;text-align:center}}

/* =========================================================
   HERO PAGES — rouge qui s'étend vers la droite
   Rendre le placeholder et le mockup semi-transparents
   pour que le halo rouge perce depuis le fond
   ========================================================= */

/* hero/opt-hero full-width : le herobg::after standard s'applique uniformément */

/* Placeholder heroimg : transparent → le halo rouge s'exprime librement
   (sera remplacé par la vraie photo ; l'étiquette reste à peine visible) */
.heroimg .ph {
  background-color: transparent;
  background-image: none;
}
.heroimg .ph::after {
  color: rgba(255,255,255,.12);
}

/* Mockup navigateur opt-hero : cadre semi-transparent */
.opt-hero .bframe {
  background: rgba(22, 18, 19, 0.55);
}


