/* =========================================================
   TASKINE SOLUTION — STYLE V4
   Version propre / sans héritage / sans doublons
   ========================================================= */

:root{
  --navy:#0B2545;
  --blue:#1565C0;
  --orange:#F28C28;
  --orange-dark:#D97300;
  --white:#FFFFFF;
  --bg:#F7F9FC;
  --bg-2:#EEF3F8;
  --text:#20324A;
  --muted:#6F7D90;
  --border:#DDE6F1;
  --success:#2E8B57;
  --danger:#D64545;
  --shadow-sm:0 10px 25px rgba(13,42,82,.08);
  --shadow-md:0 18px 45px rgba(11,37,69,.12);
  --shadow-lg:0 30px 70px rgba(11,37,69,.18);
  --radius:22px;
  --container:1280px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Inter",Arial,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

a{
  color:inherit;
  text-decoration:none;
}

ul{
  list-style:none;
}

button,
input{
  font:inherit;
}

button{
  cursor:pointer;
  border:0;
}

.container{
  width:min(92%,var(--container));
  margin-inline:auto;
}

section{
  position:relative;
  padding:100px 0;
}

.section-light{
  background:var(--bg);
}

.section-white{
  background:#fff;
}

h1,h2,h3,h4{
  color:var(--navy);
  line-height:1.12;
  letter-spacing:-.025em;
}

h1{
  font-size:clamp(2.8rem,5.1vw,5rem);
}

h2{
  font-size:clamp(2.15rem,3.8vw,3.25rem);
}

h3{
  font-size:1.35rem;
}

p{
  color:var(--muted);
}

strong{
  color:inherit;
}

/* =========================================================
   HEADER
   ========================================================= */

.header.glass-nav{
  position:fixed;
  inset:0 0 auto 0;
  z-index:9999;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid rgba(11,37,69,.08);
  box-shadow:0 6px 24px rgba(11,37,69,.05);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.header.glass-nav .container{
  width:min(94%,1380px);
}

.navbar{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
}

.logo-img{
  width:46px;
  height:46px;
  object-fit:contain;
}

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.15;
}

.logo-text strong{
  color:var(--navy);
  font-size:1rem;
  font-weight:800;
}

.logo-text span{
  margin-top:4px;
  color:var(--orange);
  font-size:.76rem;
  font-weight:700;
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:26px;
  margin-left:auto;
}

.nav-links a{
  position:relative;
  color:var(--navy);
  font-size:.84rem;
  font-weight:700;
  white-space:nowrap;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  border-radius:999px;
  background:var(--orange);
  transition:.2s ease;
}

.nav-links a:hover{
  color:var(--blue);
}

.nav-links a:hover::after{
  width:100%;
}

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

.mobile-menu{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  background:#fff;
  border:1px solid var(--border);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}

.mobile-menu span{
  width:22px;
  height:2px;
  border-radius:999px;
  background:var(--navy);
}

/* =========================================================
   BOUTONS
   ========================================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 22px;
  border-radius:999px;
  font-weight:800;
  font-size:.88rem;
  line-height:1.2;
  transition:.2s ease;
  text-align:center;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:var(--navy);
  color:#fff;
  box-shadow:var(--shadow-sm);
}

.btn-primary:hover{
  background:#071B34;
}

.btn-secondary{
  background:var(--orange);
  color:#fff;
  box-shadow:var(--shadow-sm);
}

.btn-secondary:hover{
  background:var(--orange-dark);
}

.btn-outline{
  border:1.5px solid var(--navy);
  color:var(--navy);
  background:#fff;
}

.btn-outline:hover{
  background:var(--navy);
  color:#fff;
}

.w-100{
  width:100%;
}

/* =========================================================
   HERO ACCUEIL
   IMPORTANT : image sans texte / sans logo
   ========================================================= */

.hero.hero-premium{
  min-height:100vh;
  padding:84px 0 0;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    linear-gradient(
      90deg,
      rgba(4,24,47,.95) 0%,
      rgba(4,28,55,.89) 32%,
      rgba(6,36,68,.58) 58%,
      rgba(6,36,68,.12) 100%
    ),
    url("../images/hero-taskine-final.png") center center / cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(3,20,39,.22));
  pointer-events:none;
}

.hero-premium-container{
  position:relative;
  z-index:2;
  width:min(90%,1380px);
  padding:74px 0 84px;
}

.hero-premium-content{
  width:min(720px,100%);
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  margin-bottom:22px;
  padding:9px 16px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.035em;
  backdrop-filter:blur(7px);
}

.hero.hero-premium h1{
  max-width:720px;
  margin-bottom:24px;
  color:#fff;
  font-weight:800;
}

.hero-description{
  max-width:650px;
  margin-bottom:30px;
  color:rgba(255,255,255,.88);
  font-size:1.08rem;
  line-height:1.75;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:13px;
  margin-bottom:40px;
}

.hero.hero-premium .hero-buttons .btn{
  min-height:52px;
  padding:14px 23px;
}

.hero.hero-premium .hero-buttons .btn-primary{
  background:var(--orange);
  border:2px solid var(--orange);
  box-shadow:0 12px 30px rgba(242,140,40,.25);
}

.hero.hero-premium .hero-buttons .btn-primary:hover{
  background:var(--orange-dark);
  border-color:var(--orange-dark);
}

.btn-hero-outline{
  color:#fff;
  border:1px solid rgba(255,255,255,.6);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(7px);
}

.btn-hero-outline:hover{
  color:var(--navy);
  background:#fff;
}

.hero-trust{
  max-width:650px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid rgba(255,255,255,.22);
  padding-top:22px;
}

.trust-item{
  display:flex;
  flex-direction:column;
  padding:0 22px;
  border-right:1px solid rgba(255,255,255,.18);
}

.trust-item:first-child{
  padding-left:0;
}

.trust-item:last-child{
  border-right:0;
}

.trust-item strong{
  color:#fff;
  font-size:1rem;
  font-weight:800;
}

.trust-item span{
  margin-top:4px;
  color:rgba(255,255,255,.68);
  font-size:.78rem;
}

/* =========================================================
   TITRES DE SECTION
   ========================================================= */

.section-title{
  max-width:800px;
  margin:0 auto 58px;
  text-align:center;
}

.section-title > span{
  display:inline-block;
  margin-bottom:16px;
  padding:8px 16px;
  border-radius:999px;
  background:#EAF2FD;
  color:var(--blue);
  font-size:.84rem;
  font-weight:800;
}

.section-title h2{
  margin-bottom:18px;
}

.section-title p{
  font-size:1.08rem;
}

/* =========================================================
   CARTES / EXPERTISES
   ========================================================= */

.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.card{
  min-height:100%;
  padding:32px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 8px 24px rgba(11,37,69,.05);
  transition:.25s ease;
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-md);
}

.card-icon{
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
  border-radius:16px;
  background:#EDF4FF;
  font-size:1.55rem;
}

.card h3{
  margin-bottom:12px;
}

.card p{
  font-size:.98rem;
}

/* =========================================================
   CITATION
   ========================================================= */

.quote-box{
  margin-top:44px;
}

blockquote{
  padding:30px 34px;
  border-left:5px solid var(--orange);
  border-radius:18px;
  background:#fff;
  color:var(--navy);
  box-shadow:var(--shadow-sm);
  font-style:italic;
}

/* =========================================================
   MÉTHODE
   ========================================================= */

.method-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
}

.step{
  padding:28px 22px;
  text-align:center;
}

.step-number{
  width:62px;
  height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:#fff;
  font-size:1.12rem;
  font-weight:800;
  box-shadow:var(--shadow-sm);
}

.step h3{
  margin-bottom:10px;
}

.step p{
  font-size:.95rem;
}

/* =========================================================
   OFFRES
   ========================================================= */

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}

.pricing-card{
  position:relative;
  display:flex;
  flex-direction:column;
  padding:30px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow-sm);
}

.pricing-card.featured{
  border:2px solid var(--orange);
  box-shadow:var(--shadow-md);
}

.pricing-badge{
  position:absolute;
  top:-14px;
  left:24px;
  padding:7px 14px;
  border-radius:999px;
  background:var(--orange);
  color:#fff;
  font-size:.76rem;
  font-weight:800;
}

.pricing-header{
  margin-bottom:20px;
}

.pricing-header h3{
  margin-bottom:12px;
}

.pricing-price{
  margin-bottom:8px;
  color:var(--navy);
  font-size:2rem;
  line-height:1;
  font-weight:800;
}

.pricing-price span{
  font-size:.85rem;
  color:var(--muted);
}

.pricing-header p:last-child{
  font-size:.94rem;
}

.pricing-list{
  display:flex;
  flex-direction:column;
  gap:11px;
  margin:4px 0 24px;
  flex:1;
}

.pricing-list li{
  position:relative;
  padding-left:22px;
  color:var(--text);
  font-size:.92rem;
}

.check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--success);
  font-weight:900;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq{
  max-width:900px;
  margin-inline:auto;
}

.faq-item{
  margin-bottom:14px;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
}

.faq-question{
  width:100%;
  padding:20px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  background:#fff;
  color:var(--navy);
  text-align:left;
  font-weight:800;
}

.faq-question span:last-child{
  color:var(--orange);
  font-size:1.4rem;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

.faq-answer p{
  padding:0 24px 22px;
}

/* =========================================================
   BAROMÈTRE
   ========================================================= */

.barometre-section{
  background:linear-gradient(180deg,#F7F9FC 0%,#EEF4FA 100%);
}

.barometre-header{
  max-width:880px;
  margin:0 auto 48px;
  text-align:center;
}

.section-kicker{
  display:inline-block;
  margin-bottom:16px;
  padding:8px 16px;
  border-radius:999px;
  background:#EAF2FD;
  color:var(--blue);
  font-size:.82rem;
  font-weight:800;
}

.barometre-header h2{
  margin-bottom:16px;
}

.barometre-intro{
  max-width:720px;
  margin:0 auto 24px;
  font-size:1.06rem;
}

.barometre-scale{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
}

.barometre-scale span{
  padding:9px 13px;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
  color:var(--text);
  font-size:.82rem;
  box-shadow:0 4px 14px rgba(11,37,69,.04);
}

#taskine-barometre{
  max-width:940px;
  margin-inline:auto;
}

.barometre-question{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:20px;
  padding:24px;
  margin-bottom:15px;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  box-shadow:0 6px 20px rgba(11,37,69,.04);
}

.question-number{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  font-weight:800;
}

.question-content h3{
  margin-bottom:16px;
  font-size:1.05rem;
  line-height:1.45;
}

.barometre-answers{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.barometre-answers label{
  position:relative;
  cursor:pointer;
}

.barometre-answers input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.barometre-answers span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:9px 15px;
  border:1px solid var(--border);
  border-radius:999px;
  background:var(--bg);
  color:var(--text);
  font-size:.86rem;
  font-weight:700;
  transition:.18s ease;
}

.barometre-answers label:hover span{
  border-color:var(--blue);
  background:#EDF5FF;
}

.barometre-answers input:checked + span{
  border-color:var(--navy);
  background:var(--navy);
  color:#fff;
}

.barometre-submit{
  padding-top:22px;
  text-align:center;
}

.barometre-submit .btn{
  min-height:50px;
  padding-inline:26px;
}

.barometre-submit p{
  margin-top:10px;
  font-size:.82rem;
}

.barometre-resultat{
  max-width:820px;
  margin:46px auto 0;
  padding:38px;
  border:1px solid var(--border);
  border-top:6px solid var(--blue);
  border-radius:22px;
  background:#fff;
  text-align:center;
  box-shadow:var(--shadow-md);
}

.barometre-resultat[hidden]{
  display:none !important;
}

.result-label{
  color:var(--blue);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.06em;
}

.result-score{
  margin:14px 0 8px;
}

.result-score strong{
  color:var(--navy);
  font-size:3.6rem;
  line-height:1;
}

.result-score span{
  color:var(--muted);
  font-size:1.2rem;
}

.barometre-resultat h3{
  margin:10px 0 12px;
  font-size:1.75rem;
}

.result-prioritaire{
  border-top-color:var(--danger);
}

.result-prioritaire h3{
  color:var(--danger);
}

.result-preparer{
  border-top-color:var(--orange);
}

.result-preparer h3{
  color:var(--orange-dark);
}

.result-engage{
  border-top-color:var(--success);
}

.result-engage h3{
  color:var(--success);
}

.result-cta{
  margin-top:24px;
  padding-top:24px;
  border-top:1px solid var(--border);
}

.result-cta p{
  margin-bottom:16px;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer{
  padding:72px 0 28px;
  background:#081C36;
  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.2fr;
  gap:36px;
  margin-bottom:44px;
}

.footer-col h4{
  margin-bottom:16px;
  color:#fff;
}

.footer-col p{
  color:rgba(255,255,255,.72);
  font-size:.92rem;
}

.footer-col li{
  margin-bottom:10px;
}

.footer-col a{
  color:rgba(255,255,255,.75);
  font-size:.92rem;
}

.footer-col a:hover{
  color:#fff;
}

.footer-bottom{
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.1);
  color:rgba(255,255,255,.55);
  text-align:center;
  font-size:.86rem;
}

.mt-2{margin-top:16px;}
.mt-4{margin-top:40px;}
.text-slate-400{color:#94A3B8!important;}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width:1180px){
  .nav-links{
    gap:16px;
  }

  .nav-links a{
    font-size:.77rem;
  }

  .logo-text{
    display:none;
  }

  .cards-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .pricing-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .method-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:900px){
  .header.glass-nav{
    position:fixed;
  }

  .navbar{
    min-height:72px;
  }

  .logo-text{
    display:flex;
  }

  .nav-links,
  .nav-actions{
    display:none;
  }

  .mobile-menu{
    display:flex;
  }

  .hero.hero-premium{
    min-height:100svh;
    padding-top:72px;
    align-items:flex-end;
    background:
      linear-gradient(
        180deg,
        rgba(4,24,47,.12) 0%,
        rgba(4,24,47,.45) 34%,
        rgba(4,24,47,.90) 70%,
        rgba(4,24,47,.98) 100%
      ),
      url("../images/hero-taskine-final.png") 66% center / cover no-repeat;
  }

  .hero-premium-container{
    padding:170px 0 44px;
  }

  .hero-premium-content{
    width:100%;
  }

  .hero.hero-premium h1{
    font-size:clamp(2.45rem,9vw,4rem);
  }

  .hero-description{
    font-size:1rem;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-buttons .btn{
    width:100%;
  }

  .hero-trust{
    grid-template-columns:1fr;
    padding-top:10px;
  }

  .trust-item,
  .trust-item:first-child{
    padding:11px 0;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.14);
  }

  .trust-item:last-child{
    border-bottom:0;
  }

  section{
    padding:76px 0;
  }

  .cards-grid,
  .pricing-grid,
  .method-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:680px){
  .container{
    width:90%;
  }

  .logo-img{
    width:40px;
    height:40px;
  }

  .logo-text strong{
    font-size:.9rem;
  }

  .logo-text span{
    font-size:.65rem;
  }

  .hero-premium-container{
    padding-top:145px;
  }

  .hero-badge{
    font-size:.66rem;
    line-height:1.35;
  }

  .hero.hero-premium h1{
    font-size:2.45rem;
  }

  .barometre-question{
    grid-template-columns:1fr;
    padding:20px;
  }

  .question-number{
    width:44px;
    height:44px;
  }

  .barometre-answers{
    flex-direction:column;
  }

  .barometre-answers label{
    width:100%;
  }

  .barometre-answers span{
    width:100%;
    justify-content:flex-start;
    border-radius:12px;
  }

  .barometre-resultat{
    padding:28px 20px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }
}/* =========================================
   FLÈCHE DE SCROLL — HERO
========================================= */

.hero {
    position: relative;
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 20;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;

    background: rgba(7, 37, 69, .35);
    color: #ffffff;

    text-decoration: none;
    font-size: 24px;
    line-height: 1;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    animation: taskineScroll 1.8s ease-in-out infinite;
    transition: .25s ease;
}

.scroll-down:hover {
    background: #ffffff;
    color: #0b2545;
    border-color: #ffffff;
}

@keyframes taskineScroll {
    0%, 100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 8px);
    }
}/* =========================================================
   OUTILS TASKINE
   ========================================================= */

.tools-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}

.tool-card{
    position:relative;
    display:flex;
    flex-direction:column;

    min-height:100%;

    padding:34px;

    border:1px solid var(--border);
    border-radius:22px;

    background:#fff;

    box-shadow:0 8px 24px rgba(11,37,69,.06);

    transition:.25s ease;
}

.tool-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-md);
}

.tool-card-featured{
    border:2px solid var(--orange);
}

.tool-badge{
    position:absolute;
    top:-13px;
    right:22px;

    padding:7px 14px;

    border-radius:999px;

    background:var(--orange);
    color:#fff;

    font-size:.75rem;
    font-weight:800;
}

.tool-icon{
    width:58px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:22px;

    border-radius:16px;

    background:#EDF4FF;

    font-size:1.6rem;
}

.tool-card h3{
    margin-bottom:14px;
}

.tool-card p{
    margin-bottom:22px;
    flex:1;
}

.tool-meta{
    display:flex;
    flex-wrap:wrap;
    gap:8px;

    margin-bottom:24px;
}

.tool-meta span{
    padding:7px 11px;

    border-radius:999px;

    background:var(--bg);

    color:var(--navy);

    font-size:.76rem;
    font-weight:700;
}

@media(max-width:900px){

    .tools-grid{
        grid-template-columns:1fr;
    }

}/* =========================================================
   PARTENAIRES TASKINE
   ========================================================= */

.partners-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

.partner-card{
    padding:30px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    box-shadow:0 8px 24px rgba(11,37,69,.05);
    transition:.25s ease;
}

.partner-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-md);
}

.partner-logo-box{
    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:20px;

    border-radius:18px;

    background:#EDF4FF;
    color:var(--navy);

    font-weight:900;
    font-size:.9rem;
}

.partner-card h3{
    margin-bottom:12px;
}

.partner-card p{
    font-size:.94rem;
}

.partners-cta{
    margin-top:38px;
    padding:32px 36px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;

    border-radius:22px;

    background:var(--navy);
    color:#fff;
}

.partners-cta h3{
    margin:8px 0 10px;
    color:#fff;
}

.partners-cta p{
    max-width:700px;
    margin:0;
    color:rgba(255,255,255,.75);
}

.partners-cta .section-kicker{
    margin:0;
    background:rgba(255,255,255,.12);
    color:#fff;
}

.partners-cta .btn{
    flex-shrink:0;
    background:var(--orange);
    color:#fff;
}

@media(max-width:1000px){

    .partners-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:680px){

    .partners-grid{
        grid-template-columns:1fr;
    }

    .partners-cta{
        flex-direction:column;
        align-items:flex-start;
    }

    .partners-cta .btn{
        width:100%;
    }

}/* =========================================================
   GUIDE TASKINE 2026
   ========================================================= */

.guide-page-hero {
    padding: 150px 0 90px;
    background:
        linear-gradient(135deg, rgba(7, 34, 65, .97), rgba(12, 61, 104, .92));
    color: #fff;
    text-align: center;
}

.guide-page-hero .container {
    max-width: 950px;
}

.guide-page-hero .section-kicker {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.guide-page-hero h1 {
    max-width: 900px;
    margin: 0 auto 24px;
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.guide-page-hero p {
    max-width: 760px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
    line-height: 1.75;
}

.guide-page-hero .hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.guide-page-hero .btn-outline {
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
    background: transparent;
}

.guide-page-hero .btn-outline:hover {
    background: #fff;
    color: var(--navy);
}


/* CONTENU DU GUIDE */

.guide-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 50px;
}

.guide-chapter {
    position: relative;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 8px 28px rgba(11, 37, 69, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.guide-chapter:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(11, 37, 69, .10);
}

.guide-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 14px;
    background: #EDF4FF;
    color: var(--navy);
    font-size: .9rem;
    font-weight: 800;
}

.guide-chapter h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 1.2rem;
}

.guide-chapter p {
    margin: 0;
    color: var(--text);
    line-height: 1.7;
}


/* CTA FINAL */

.guide-final-cta {
    margin-top: 70px;
    padding: 55px 60px;
    border-radius: 26px;
    background: var(--navy);
    color: #fff;
    text-align: center;
}

.guide-final-cta .section-kicker {
    color: #fff;
    background: rgba(255, 255, 255, .12);
}

.guide-final-cta h2 {
    max-width: 800px;
    margin: 16px auto;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.guide-final-cta p {
    max-width: 700px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}


/* RESPONSIVE GUIDE */

@media (max-width: 800px) {

    .guide-page-hero {
        padding: 120px 0 70px;
    }

    .guide-content-grid {
        grid-template-columns: 1fr;
    }

    .guide-final-cta {
        padding: 40px 24px;
    }
}

@media (max-width: 520px) {

    .guide-page-hero h1 {
        font-size: 2.35rem;
    }

    .guide-page-hero .hero-buttons {
        flex-direction: column;
    }

    .guide-page-hero .hero-buttons .btn {
        width: 100%;
    }

    .guide-chapter {
        padding: 26px 22px;
    }
}/* =========================================================
   MENU MOBILE TASKINE
   ========================================================= */

@media (max-width: 900px) {

    .header.glass-nav .navbar{
        position:relative;
    }

    .header.glass-nav .nav-links{
        position:absolute;
        top:72px;
        left:0;
        right:0;

        display:none;
        flex-direction:column;
        align-items:stretch;

        gap:0;

        padding:14px;

        background:#ffffff;
        border:1px solid var(--border);
        border-radius:18px;

        box-shadow:0 18px 45px rgba(11,37,69,.16);
    }

    .header.glass-nav .nav-links.open{
        display:flex;
    }

    .header.glass-nav .nav-links li{
        width:100%;
    }

    .header.glass-nav .nav-links a{
        display:block;
        width:100%;

        padding:14px 16px;

        border-radius:12px;

        font-size:.95rem;
        color:var(--navy);
    }

    .header.glass-nav .nav-links a:hover{
        background:#F3F7FC;
    }

    .mobile-menu.active span:nth-child(1){
        transform:translateY(7px) rotate(45deg);
    }

    .mobile-menu.active span:nth-child(2){
        opacity:0;
    }

    .mobile-menu.active span:nth-child(3){
        transform:translateY(-7px) rotate(-45deg);
    }

}/* =========================================================
   PAGE CONTACT
   ========================================================= */

.contact-page-hero{
    padding:150px 0 85px;
    background:linear-gradient(135deg,#0B2545,#174F7F);
    text-align:center;
}

.contact-page-hero .container{
    max-width:900px;
}

.contact-page-hero h1{
    margin:10px 0 20px;
    color:#fff;
    font-size:clamp(2.6rem,5vw,4.4rem);
}

.contact-page-hero p{
    max-width:720px;
    margin:0 auto;
    color:rgba(255,255,255,.82);
    font-size:1.08rem;
}

.contact-page-hero .section-kicker{
    background:rgba(255,255,255,.12);
    color:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:28px;
}

.contact-card{
    padding:40px;
    border:1px solid var(--border);
    border-radius:24px;
    background:#fff;
    box-shadow:var(--shadow-sm);
}

.contact-card h2{
    margin:12px 0 18px;
    font-size:1.8rem;
}

.contact-card > p{
    margin-bottom:22px;
}

@media(max-width:800px){
    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-page-hero{
        padding:120px 0 65px;
    }

    .contact-card{
        padding:30px 24px;
    }
}/* =========================================================
   PAGES OFFRES
   ========================================================= */

.offer-page-hero{
    padding:150px 0 90px;
    background:linear-gradient(135deg,#0B2545,#174F7F);
    text-align:center;
}

.offer-page-hero .container{
    max-width:900px;
}

.offer-page-hero h1{
    margin:12px auto 22px;
    color:#fff;
    font-size:clamp(2.5rem,5vw,4.3rem);
}

.offer-page-hero p{
    max-width:720px;
    margin:0 auto 26px;
    color:rgba(255,255,255,.82);
    font-size:1.08rem;
}

.offer-page-hero .section-kicker{
    background:rgba(255,255,255,.12);
    color:#fff;
}

.offer-price{
    margin:18px 0 28px;
    color:#fff;
    font-size:2.3rem;
    font-weight:800;
}

.offer-content{
    display:grid;
    grid-template-columns:minmax(0,1.6fr) minmax(280px,.8fr);
    gap:36px;
    align-items:start;
}

.offer-main h2{
    margin:10px 0 26px;
}

.offer-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.offer-list li{
    position:relative;
    padding:16px 18px 16px 44px;
    border:1px solid var(--border);
    border-radius:14px;
    background:#fff;
    box-shadow:0 6px 18px rgba(11,37,69,.04);
}

.offer-list li::before{
    content:"✓";
    position:absolute;
    left:18px;
    top:15px;
    color:var(--success);
    font-weight:900;
}

.offer-side{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.offer-side-card{
    padding:24px;
    border:1px solid var(--border);
    border-radius:18px;
    background:var(--bg);
}

.offer-side-card h3{
    margin-bottom:10px;
}

@media(max-width:850px){
    .offer-content{
        grid-template-columns:1fr;
    }

    .offer-page-hero{
        padding:120px 0 70px;
    }
}/* =========================================================
   PAGES LÉGALES TASKINE
   ========================================================= */

.legal-page{
    padding:150px 0 90px;
    background:#f7f9fc;
}

.legal-container{
    max-width:900px;
}

.legal-page h1{
    margin:12px 0 18px;
    color:var(--navy);
    font-size:clamp(2.5rem,5vw,4rem);
}

.legal-intro{
    margin-bottom:45px;
    font-size:1.08rem;
    color:var(--text);
}

.legal-block{
    margin-bottom:22px;
    padding:30px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:0 6px 20px rgba(11,37,69,.04);
}

.legal-block h2{
    margin:0 0 16px;
    color:var(--navy);
    font-size:1.3rem;
}

.legal-block p{
    margin:0 0 14px;
    line-height:1.75;
}

.legal-block p:last-child{
    margin-bottom:0;
}

.legal-block a{
    text-decoration:underline;
}

@media(max-width:700px){
    .legal-page{
        padding:120px 0 60px;
    }

    .legal-block{
        padding:24px 20px;
    }
}
