/* ═══════════════════════════════════════
   AFRICA FOX EXPERIENCE — style.css
   Partagé par toutes les pages du site
═══════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --or:      #F47B20;
  --or2:     #FF9640;
  --or3:     #C85E10;
  --noir:    #080808;
  --noir2:   #111111;
  --noir3:   #1A1A1A;
  --noir4:   #242424;
  --blanc:   #FAFAFA;
  --gris:    #888888;
  --gris2:   #555555;
  --bronze:  #CD7F32;
  --silver:  #B0B8C1;
  --gold:    #F47B20;
  --r:       8px;
  --r2:      16px;
  --r3:      24px;
  --shadow-or: 0 8px 32px rgba(244,123,32,.28);
  --shadow:    0 4px 24px rgba(0,0,0,.4);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  background: var(--noir);
  color: var(--blanc);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
button { font-family: inherit; cursor:pointer; border:none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--noir2); }
::-webkit-scrollbar-thumb { background: var(--or); border-radius: 3px; }

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

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
#nav {
  position: fixed; top:0; left:0; right:0; z-index: 1000;
  height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244,123,32,.15);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.4); }

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
}
.nav-fox {
  width: 38px; height: 38px;
  background: var(--or); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  box-shadow: var(--shadow-or);
}
.nav-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem; letter-spacing: .1em; line-height: 1.1;
}
.nav-name span { color: var(--or); display: block; }

.nav-links {
  display: flex; align-items: center; gap: 1.6rem;
  list-style: none;
}
.nav-links a {
  font-size: .77rem; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--or); border-bottom-color: var(--or); }

.nav-cta {
  background: var(--or) !important;
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: var(--r) !important;
  border-bottom: none !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-or);
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--or3) !important; }

/* Hamburger */
.ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 5px;
}
.ham span {
  display: block; width: 24px; height: 2px;
  background: var(--blanc); border-radius: 2px;
  transition: all .3s;
}

/* Menu mobile */
.mob-menu {
  display: none; position: fixed;
  top: 66px; left: 0; right: 0;
  background: rgba(8,8,8,.99);
  backdrop-filter: blur(20px);
  padding: 1.5rem 5vw 2rem;
  flex-direction: column; gap: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(244,123,32,.15);
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s;
}
.mob-menu a:hover { color: var(--or); }
.mob-menu .mob-cta {
  color: var(--or) !important;
  font-weight: 700 !important;
}

/* ══════════════════════════════════════
   BOUTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  border-radius: var(--r);
  font-size: .88rem; font-weight: 600;
  transition: all .22s; cursor: pointer; border: none;
}
.btn-or {
  background: var(--or); color: #fff;
  box-shadow: var(--shadow-or);
}
.btn-or:hover { background: var(--or3); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-ghost:hover { border-color: var(--or); color: var(--or); transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--or3); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.2); }

.btn-white-o {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.45);
}
.btn-white-o:hover { border-color: #fff; transform: translateY(-2px); }

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.sec { padding: 80px 5vw; }
.sec-dark { background: var(--noir2); }
.sec-light { background: var(--noir3); }

.s-label {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--or); margin-bottom: .8rem;
  display: flex; align-items: center; gap: 8px;
}
.s-label::before {
  content: ''; display: block;
  width: 22px; height: 2px; background: var(--or);
}

.s-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  letter-spacing: .04em; line-height: 1;
  margin-bottom: 1rem;
}

.s-desc {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,.5);
  line-height: 1.8; max-width: 580px;
  margin-bottom: 2.5rem;
}

/* ══════════════════════════════════════
   PAGE HEADER (pages internes)
══════════════════════════════════════ */
.page-hdr {
  padding: 110px 5vw 55px;
  background: var(--noir2);
  position: relative; overflow: hidden;
}
.page-hdr::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,123,32,.1), transparent 70%);
  pointer-events: none;
}
.page-hdr h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: .04em; line-height: 1;
  margin-bottom: .8rem;
}
.page-hdr p {
  font-size: 1rem; color: rgba(255,255,255,.5);
  max-width: 580px; line-height: 1.8;
}

/* ══════════════════════════════════════
   TICKER (bande défilante)
══════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(244,123,32,.18);
  border-bottom: 1px solid rgba(244,123,32,.18);
  background: rgba(244,123,32,.04);
  padding: 11px 0;
}
.ticker {
  display: flex;
  animation: tickAnim 35s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .9rem; letter-spacing: .12em;
  color: rgba(255,255,255,.28);
  padding: 0 2.5rem;
}
.ticker-item b { color: var(--or); font-weight: 400; }
@keyframes tickAnim {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   CARTES GÉNÉRIQUES
══════════════════════════════════════ */
.card {
  background: var(--noir3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r3);
  padding: 2rem;
  transition: border-color .3s, transform .3s;
}
.card:hover {
  border-color: rgba(244,123,32,.25);
  transform: translateY(-4px);
}

.card-icon {
  width: 50px; height: 50px;
  background: rgba(244,123,32,.1);
  border: 1px solid rgba(244,123,32,.18);
  border-radius: var(--r2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}

/* ══════════════════════════════════════
   GRILLES
══════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-band {
  padding: 70px 5vw;
  background: linear-gradient(135deg, var(--or3), var(--or), var(--or2));
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: 'AFRICA FOX';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13vw; color: rgba(0,0,0,.07);
  white-space: nowrap; pointer-events: none;
}
.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  letter-spacing: .05em; color: #fff;
  margin-bottom: .7rem; position: relative;
}
.cta-band p {
  font-size: .93rem; color: rgba(255,255,255,.82);
  max-width: 440px; margin: 0 auto 2rem;
  line-height: 1.7; position: relative;
}
.cta-btns {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  position: relative;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--noir);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 55px 5vw 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-brand p {
  font-size: .82rem; color: var(--gris);
  line-height: 1.7; max-width: 250px; margin-top: .8rem;
}
.footer-socials { display: flex; gap: 8px; margin-top: 1rem; }
.footer-soc {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.footer-soc:hover { background: var(--or); border-color: var(--or); }
.footer-col h4 {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--or); margin-bottom: .9rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a {
  font-size: .82rem; color: var(--gris);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--or); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.3rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .8rem;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.18); }
.footer-bottom span { color: var(--or); }

/* ══════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════ */
#btt {
  position: fixed; bottom: 26px; right: 26px; z-index: 500;
  width: 42px; height: 42px;
  background: var(--or); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; cursor: pointer;
  box-shadow: var(--shadow-or);
  opacity: 0; visibility: hidden;
  transition: all .3s; border: none;
}
#btt.show { opacity: 1; visibility: visible; }
#btt:hover { transform: translateY(-3px); background: var(--or3); }

/* ══════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--noir3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r2);
  overflow: hidden; transition: border-color .3s;
}
.faq-item.open { border-color: rgba(244,123,32,.3); }
.faq-q {
  padding: 1.2rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: .9rem;
}
.faq-q span { font-size: .92rem; font-weight: 600; }
.faq-arrow {
  width: 26px; height: 26px; flex-shrink: 0;
  background: rgba(244,123,32,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--or);
  transition: transform .3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  padding: 0 1.5rem;
}
.faq-item.open .faq-body { max-height: 300px; padding: 0 1.5rem 1.2rem; }
.faq-body p { font-size: .85rem; color: var(--gris); line-height: 1.75; }

/* ══════════════════════════════════════
   FORMULAIRE
══════════════════════════════════════ */
.form-grid { display: flex; flex-direction: column; gap: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--noir3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 11px 13px;
  font-family: inherit; font-size: .88rem;
  color: var(--blanc); outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--or);
  box-shadow: 0 0 0 3px rgba(244,123,32,.1);
}
.form-group select option { background: var(--noir2); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  background: var(--or); color: #fff;
  padding: 13px; border-radius: var(--r);
  font-size: .9rem; font-weight: 700;
  transition: all .22s;
  box-shadow: var(--shadow-or);
  display: flex; align-items: center; justify-content: center;
  gap: 8px; width: 100%;
}
.form-submit:hover { background: var(--or3); transform: translateY(-2px); }
.form-note { font-size: .72rem; color: rgba(255,255,255,.3); text-align: center; }
.form-success {
  display: none;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: var(--r2);
  padding: 1.4rem; text-align: center;
  color: #86efac; font-size: .9rem;
}

/* ══════════════════════════════════════
   TABLEAU BUDGET
══════════════════════════════════════ */
.table-wrap {
  background: var(--noir3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r3);
  overflow: hidden;
}
.table-header {
  padding: 1.8rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.table-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: .08em; color: var(--or);
}
.table-header p { font-size: .8rem; color: var(--gris); }
.table-total .big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: var(--or); letter-spacing: .04em;
}
.table-total small { font-size: .7rem; color: var(--gris); display: block; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
thead tr { background: rgba(244,123,32,.07); }
thead th {
  padding: 12px 16px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--or); text-align: left;
  border-bottom: 1px solid rgba(244,123,32,.18);
}
tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .2s;
}
tbody tr:hover { background: rgba(255,255,255,.02); }
tbody td { padding: 12px 16px; font-size: .82rem; color: rgba(255,255,255,.7); }
tfoot tr { background: rgba(244,123,32,.08); border-top: 2px solid rgba(244,123,32,.28); }
tfoot td { padding: 14px 16px; font-weight: 700; }
.td-cat { font-size: .67rem !important; color: rgba(255,255,255,.3) !important; }
.td-amount {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: .97rem !important; color: var(--or) !important;
  text-align: right; white-space: nowrap;
}
.tf-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .95rem; letter-spacing: .08em; color: var(--blanc);
}
.tf-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; color: var(--or); text-align: right;
}

/* badges catégories budget */
.cat-badge {
  display: inline-block;
  padding: 2px 8px; border-radius: 100px;
  font-size: .65rem; font-weight: 600;
}
.cat-log  { background: rgba(59,130,246,.1);  color: #93c5fd; }
.cat-tra  { background: rgba(168,85,247,.1);  color: #c4b5fd; }
.cat-nour { background: rgba(34,197,94,.1);   color: #86efac; }
.cat-prod { background: rgba(244,123,32,.1);  color: var(--or2); }
.cat-rec  { background: rgba(251,191,36,.1);  color: #fde68a; }
.cat-dep  { background: rgba(239,68,68,.1);   color: #fca5a5; }
.cat-ope  { background: rgba(99,153,34,.1);   color: #c0dd97; }

/* ══════════════════════════════════════
   PACKAGES
══════════════════════════════════════ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; align-items: start;
}
.pkg-card {
  background: var(--noir3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r3);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.pkg-card.gold {
  border: 2px solid var(--or);
  background: var(--noir2);
}
.pkg-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--or); color: #fff;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 100px;
  white-space: nowrap;
}
.pkg-head {
  padding: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pkg-card.gold .pkg-head {
  background: linear-gradient(135deg, rgba(244,123,32,.1), rgba(244,123,32,.03));
  border-bottom-color: rgba(244,123,32,.18);
}
.pkg-tier {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: .08em; margin-bottom: .3rem;
}
.pkg-card.bronze .pkg-tier { color: var(--bronze); }
.pkg-card.silver .pkg-tier { color: var(--silver); }
.pkg-card.gold   .pkg-tier { color: var(--or); }
.pkg-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem; color: var(--blanc); line-height: 1;
}
.pkg-price sup {
  font-size: .85rem; color: var(--gris);
  font-family: inherit; vertical-align: super;
}
.pkg-excl {
  margin-top: 7px;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(244,123,32,.1);
  border: 1px solid rgba(244,123,32,.22);
  color: var(--or2); font-size: .65rem; font-weight: 600;
  padding: 3px 9px; border-radius: 100px;
}
.pkg-body { padding: 1.6rem; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pkg-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.4;
}
.pkg-features li.dim { opacity: .3; }
.chk {
  width: 17px; height: 17px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; margin-top: 1px;
}
.chk.yes { background: rgba(244,123,32,.2); color: var(--or); }
.chk.no  { background: rgba(255,255,255,.04); color: rgba(255,255,255,.2); }
.pkg-foot { padding: 0 1.6rem 1.6rem; }
.pkg-btn {
  display: block; text-align: center;
  padding: 12px; border-radius: var(--r);
  font-weight: 700; font-size: .85rem;
  cursor: pointer; border: none;
  font-family: inherit; transition: all .2s; width: 100%;
}
.pkg-card:not(.gold) .pkg-btn {
  background: rgba(255,255,255,.06); color: var(--blanc);
  border: 1px solid rgba(255,255,255,.1);
}
.pkg-card:not(.gold) .pkg-btn:hover { background: var(--or); border-color: var(--or); }
.pkg-card.gold .pkg-btn { background: var(--or); color: #fff; box-shadow: var(--shadow-or); }
.pkg-card.gold .pkg-btn:hover { background: var(--or3); }

/* ══════════════════════════════════════
   CANDIDATS
══════════════════════════════════════ */
.cand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.cand-card {
  background: var(--noir3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r3);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.cand-card:hover { border-color: rgba(244,123,32,.28); transform: translateY(-5px); }
.cand-img {
  height: 200px; overflow: hidden;
  position: relative;
}
.cand-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform .4s;
  display: block;
}
.cand-card:hover .cand-img img { transform: scale(1.05); }
.cand-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(to top, var(--noir3), transparent);
}
.cand-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--or3), var(--or2));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.cand-body { padding: 1.3rem; }
.cand-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .72rem; letter-spacing: .12em;
  color: var(--or); margin-bottom: .3rem;
}
.cand-body h3 { font-weight: 700; font-size: .95rem; margin-bottom: .25rem; }
.cand-role {
  font-size: .72rem; color: var(--or);
  font-weight: 600; letter-spacing: .05em;
  margin-bottom: .6rem;
}
.cand-body p { font-size: .78rem; color: var(--gris); line-height: 1.5; margin-bottom: .9rem; }
.cand-chips { display: flex; gap: 5px; flex-wrap: wrap; }
.cand-chip {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .65rem; padding: 2px 8px;
  border-radius: 100px; color: rgba(255,255,255,.45);
}

/* ══════════════════════════════════════
   TIMELINE
══════════════════════════════════════ */
.timeline { display: flex; flex-direction: column; }
.tl-item { display: flex; gap: 1.3rem; position: relative; }
.tl-item:not(:last-child)::after {
  content: '';
  position: absolute; left: 18px; top: 40px; bottom: -16px;
  width: 2px;
  background: linear-gradient(to bottom, var(--or), rgba(244,123,32,.1));
}
.tl-dot {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(244,123,32,.12);
  border: 2px solid var(--or); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; z-index: 1;
}
.tl-body { padding-bottom: 2rem; }
.tl-tag {
  display: inline-block;
  background: rgba(244,123,32,.1); color: var(--or2);
  font-size: .65rem; font-weight: 600;
  padding: 2px 9px; border-radius: 100px;
  margin-bottom: 4px; letter-spacing: .06em;
}
.tl-body h4 { font-weight: 700; font-size: .92rem; margin-bottom: 3px; }
.tl-body p { font-size: .8rem; color: var(--gris); line-height: 1.6; }

/* ══════════════════════════════════════
   OBJECTIFS
══════════════════════════════════════ */
.obj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.obj-card {
  background: var(--noir3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r3);
  padding: 1.9rem;
  position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.obj-card:hover { transform: translateY(-5px); border-color: rgba(244,123,32,.25); }
.obj-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: rgba(244,123,32,.07);
  line-height: 1;
  position: absolute; top: .6rem; right: 1.1rem;
}
.obj-icon { font-size: 1.7rem; margin-bottom: .7rem; }
.obj-card h3 { font-size: .92rem; font-weight: 700; margin-bottom: .5rem; }
.obj-card p { font-size: .78rem; color: var(--gris); line-height: 1.6; }

/* ══════════════════════════════════════
   COUNTDOWN
══════════════════════════════════════ */
.cd-strip {
  background: rgba(244,123,32,.07);
  border-top: 1px solid rgba(244,123,32,.15);
  border-bottom: 1px solid rgba(244,123,32,.15);
  padding: 1.3rem 5vw;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1.2rem;
}
.cd-left h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: .07em; color: var(--or);
}
.cd-left p { font-size: .78rem; color: var(--gris); margin-top: 1px; }
.cd-units { display: flex; gap: 8px; }
.cdu {
  background: var(--noir3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 9px 14px; text-align: center; min-width: 56px;
}
.cdu-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; color: var(--or); line-height: 1; display: block;
}
.cdu-l { font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gris); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .ham { display: flex; }
  .grid-2, .grid-3, .obj-grid, .pkg-grid, .cand-grid { grid-template-columns: 1fr 1fr; }
  .cd-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .sec { padding: 55px 5vw; }
  .grid-2, .grid-3, .obj-grid, .pkg-grid, .cand-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hdr { padding: 90px 5vw 40px; }
}
