@charset "UTF-8";
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --noir: #0a0a0a;
  --dore: #c8a84e;
  --blanc: #f5f5f5;
  --noir-profond: #050505;
  --gris-sombre: #1a1a1a;
  --font: "Gotham", "Montserrat", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--blanc);
  line-height: 1.6;
  background: var(--noir);
}

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

.nowrap {
  white-space: nowrap;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--noir);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 2rem;
}
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: var(--dore);
}

.nav-has-dropdown {
  position: relative;
}
.nav-has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}
.nav-has-dropdown .nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.nav-has-dropdown .nav-chevron {
  font-size: 0.65rem;
  transition: transform 0.25s;
}
.nav-has-dropdown .nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--noir);
  border: 1px solid var(--gris-sombre);
  border-radius: 6px;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 180px;
  white-space: nowrap;
  z-index: 200;
}
.nav-has-dropdown .nav-dropdown li a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.nav-has-dropdown .nav-dropdown li a:hover {
  color: var(--dore);
}
.nav-has-dropdown:hover .nav-dropdown {
  display: block;
}
.nav-has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: 0 0;
  border: 0;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--blanc);
  transition: transform 0.3s, opacity 0.3s;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-home {
  height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  pointer-events: none;
}

.hero-home-content {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  align-items: stretch;
}

.hero-home-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 2rem 2.5rem;
  overflow: hidden;
}

.hero-home-copy {
  text-align: center;
}
.hero-home-copy h1 {
  font-size: clamp(1.4rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--blanc);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.hero-home-copy .hero-sub {
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}

.dore {
  color: var(--dore);
}

.hero-home-right {
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.hero-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
}

.linktree-btn.linktree-btn--primary {
  background: var(--dore);
  border-color: var(--dore);
  color: var(--noir);
}
.linktree-btn.linktree-btn--primary i {
  color: var(--noir);
}
.linktree-btn.linktree-btn--primary:hover {
  background: #b8982e;
  border-color: #b8982e;
  color: var(--noir);
}

.hero-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2rem 3rem;
  flex-wrap: wrap;
}

.hero-category-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-category-links a {
  padding: 0.4rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blanc);
  transition: color 0.3s;
}
.hero-category-links a:not(:last-child) {
  border-right: 1px solid var(--dore);
}
.hero-category-links a:hover {
  color: var(--dore);
}

.linktree-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(200, 168, 78, 0.35);
  background: var(--gris-sombre);
  color: var(--blanc);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.linktree-btn i {
  color: var(--dore);
  width: 1.2rem;
  text-align: center;
}
.linktree-btn svg {
  flex-shrink: 0;
  color: var(--dore);
  transition: transform 0.3s;
}
.linktree-btn:hover {
  background: rgba(200, 168, 78, 0.1);
  border-color: var(--dore);
  color: var(--dore);
}
.linktree-btn:hover svg {
  transform: translateX(5px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  font-family: var(--font);
}

.btn-primary {
  background: var(--dore);
  color: var(--noir);
}
.btn-primary:hover {
  background: #b8982e;
  transform: translateY(-2px);
}

.btn-outline {
  background: 0 0;
  color: var(--dore);
  border: 2px solid var(--dore);
}
.btn-outline:hover {
  background: var(--dore);
  color: var(--noir);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff !important;
  gap: 0.5rem;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dore);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.section-cta {
  text-align: center;
}

#entreprises,
#publics {
  position: relative;
  overflow: hidden;
}

.entreprises-bg {
  position: absolute;
  inset: 0;
  background: url(/images/entreprise-bg.webp) center/cover no-repeat;
  transform: scale(1.05);
}

.entreprises-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
}

.publics-bg {
  position: absolute;
  inset: 0;
  background: url(/images/public-bg.webp) center/cover no-repeat;
  filter: blur(3px);
  transform: scale(1.05);
}

.publics-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
}

#entreprises > .section,
#publics > .section {
  position: relative;
  z-index: 1;
}

.entreprises-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.entreprises-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.entreprises-img {
  flex: 1;
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
}
.entreprises-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.entreprises-content {
  display: flex;
  flex-direction: column;
  background: var(--gris-sombre);
  border: 1px solid var(--dore);
  border-radius: 8px;
  overflow: visible;
  padding: 2rem 2rem 1.5rem;
  margin-top: 1.5rem;
}

.offer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  margin: -3rem 1.5rem 1rem;
  background: var(--noir-profond);
  border: 1px solid var(--dore);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.offer-text h3 {
  font-size: 1.3rem;
  color: var(--dore);
  margin-bottom: 0.2rem;
}
.offer-text p {
  opacity: 0.7;
  font-size: 0.9rem;
}

.offer-price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.offer-price {
  text-align: center;
  white-space: nowrap;
}
.offer-price .price {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
}

.price-label {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.7;
}

.price-note {
  font-size: 0.72rem;
  opacity: 0.6;
  font-style: italic;
  text-align: center;
  max-width: 14rem;
}

.content-h3 {
  font-size: 1.1rem;
  color: var(--dore);
  font-weight: 700;
  padding: 1.2rem 1.5rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0.8rem 1.5rem 1.2rem;
}

.benefit-col {
  padding: 0.5rem 0.8rem 0.5rem 0.4rem;
}
.benefit-col:last-child {
  padding-left: 0.8rem;
}
.benefit-col:first-child {
  border-right: 1px solid #2a2a2a;
}
.benefit-col h4 {
  font-size: 0.95rem;
  color: var(--dore);
  margin-bottom: 0.6rem;
}
.benefit-col ul {
  list-style: none;
}
.benefit-col ul li {
  padding: 0.3rem 0;
  font-size: 0.88rem;
  line-height: 1.6;
}
.benefit-col ul li::before {
  content: "✓";
  color: var(--dore);
  margin-right: 0.35rem;
  font-weight: 700;
}

.how-highlight {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  position: relative;
  padding: 1.2rem 1.5rem;
}
.how-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: #2a2a2a;
}
.how-highlight h3 {
  font-size: 1.1rem;
  color: var(--dore);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.how-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.how-item {
  font-size: 1rem;
}
.how-item::before {
  content: "•";
  color: var(--dore);
  margin-right: 0.6rem;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
  vertical-align: middle;
}

.pricing-tag {
  display: inline-block;
  margin: 0 0.4rem 0 0;
  padding: 0.15rem 0.6rem;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  font-size: 0.95rem;
}

.pricing-disclaimer {
  text-align: right;
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

#entreprises > .section {
  max-width: 860px;
}

.entreprises-title {
  color: var(--blanc);
}

.entreprises-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dore);
  margin-bottom: 1.5rem;
}

.cells-label {
  text-align: center;
  margin-bottom: 0.75rem;
}
.cells-label strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}
.cells-label span {
  font-size: 0.85rem;
  opacity: 0.65;
}

.entreprises-cells {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.entreprises-cells--vcenter {
  align-items: center;
}
.entreprises-cells--vcenter .cell-plug {
  margin-top: 0;
}

@media (min-width: 769px) {
  .entreprises-cells--vcenter .cell-img {
    width: 340px;
    height: 230px;
  }
}
.cell-ou {
  margin-top: calc(140px - 0.9rem);
}

.cell-plug {
  margin-top: 95px;
}

.cell-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.cell-option strong {
  font-size: 1rem;
  font-weight: 700;
}
.cell-option span {
  font-size: 0.85rem;
  opacity: 0.65;
}

.cell-img {
  width: 220px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
}
.cell-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cell-ou {
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.5;
}

.cell-plug {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border: 2px solid var(--dore);
  border-radius: 50%;
  text-align: center;
  gap: 0.3rem;
  flex-shrink: 0;
}
.cell-plug i {
  font-size: 1.2rem;
  color: var(--dore);
}
.cell-plug span {
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
  color: var(--blanc);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.how-step p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.step-num {
  font-size: 1.4rem;
  font-weight: 700;
}

.step-sub {
  font-size: 0.85rem;
}

.section-divider {
  border: none;
  border-top: 1px solid rgba(200, 168, 78, 0.3);
  margin: 0 0 2.5rem;
}

.entreprises-solutions-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blanc);
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--blanc);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-card {
  background: var(--noir);
  border: 1px solid var(--dore);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card-head {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(200, 168, 78, 0.2);
  text-align: center;
}
.pricing-card-head h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dore);
  margin-bottom: 0.2rem;
}
.pricing-card-head p {
  font-size: 0.82rem;
  color: #fff;
}

.pricing-card-zero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(200, 168, 78, 0.2);
}

.price-zero-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price-zero {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.price-zero-label {
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.5;
}

.price-zero-mention {
  font-size: 0.6rem;
  opacity: 0.5;
  font-style: italic;
  text-align: center;
  line-height: 1.3;
  width: 100%;
  margin-top: 0.6rem;
  margin-bottom: -0.6rem;
}

.entreprises-benefit-list {
  list-style: none;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.entreprises-benefit-list li {
  font-size: 0.88rem;
  line-height: 1.5;
  padding-left: 1.4rem;
  position: relative;
}
.entreprises-benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--dore);
  font-weight: 900;
}
.entreprises-benefit-list li.no-check {
  padding-left: 0;
}
.entreprises-benefit-list li.no-check::before {
  display: none;
}

.pricing-tiers {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-tier {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  flex: 1;
}
.pricing-tier:first-child {
  border-bottom: 1px solid rgba(200, 168, 78, 0.15);
}

.tier-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 7rem;
  flex-shrink: 0;
  text-align: center;
}

.tier-name {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.1rem;
  white-space: nowrap;
}

.tier-amount {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.tier-period {
  font-size: 0.68rem;
  opacity: 0.6;
  margin-top: 0.1rem;
}

.entreprises-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(200, 168, 78, 0.15);
  margin-bottom: 1rem;
}
.entreprises-benefits .benefit-col {
  padding: 0;
  border: none;
}
.entreprises-benefits .benefit-col h4 {
  font-size: 0.95rem;
  color: var(--dore);
  margin-bottom: 0.75rem;
}
.entreprises-benefits .benefit-col ul {
  list-style: none;
}
.entreprises-benefits .benefit-col ul li {
  padding: 0.3rem 0;
  font-size: 0.88rem;
  line-height: 1.6;
  padding-left: 1.4rem;
  position: relative;
}
.entreprises-benefits .benefit-col ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--dore);
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-family: var(--font);
  background: var(--gris-sombre);
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  color: var(--blanc);
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--dore);
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.resil-block {
  background: rgba(200, 168, 78, 0.06);
  border: 1px solid rgba(200, 168, 78, 0.3);
  border-radius: 6px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.2s, background 0.2s;
}
.resil-block.resil-error {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.06);
}
.resil-block.resil-error .resil-question::after {
  content: " - Veuillez sélectionner une raison";
  color: #c0392b;
  font-weight: 400;
  font-size: 0.85rem;
}

.resil-question {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dore);
}

.resil-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.resil-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.9rem;
}
.resil-option input[type=radio] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--dore);
  cursor: pointer;
}
.resil-option:hover span {
  color: var(--dore);
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--dore);
  margin-bottom: 1.5rem;
}
.contact-info p {
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.05rem;
}
.contact-info a {
  color: var(--dore);
  transition: opacity 0.3s;
}
.contact-info a:hover {
  opacity: 0.8;
}

.abo-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.abo-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 3rem;
}

.abo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.abo-card {
  position: relative;
  background: var(--gris-sombre);
  border: 1px solid rgba(200, 168, 78, 0.2);
  border-radius: 12px;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}
.abo-card--featured {
  border-color: var(--dore);
  border-width: 2px;
}

.abo-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dore);
  color: var(--noir);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
}
.abo-badge i {
  margin-right: 0.3rem;
}

.abo-formula {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.abo-divider {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(200, 168, 78, 0.2);
  margin: 0.4rem 0;
}

.abo-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.5rem 0;
}

.abo-amount {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

.abo-period {
  font-size: 1rem;
  opacity: 0.65;
}

.abo-cagnotte {
  font-size: 0.9rem;
}
.abo-cagnotte s {
  opacity: 0.5;
}

.abo-savings {
  color: var(--dore);
  font-size: 0.9rem;
  font-weight: 600;
}

.abo-sessions {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 0.4rem;
}

.abo-sessions-num {
  font-size: 1.6rem;
  font-weight: 900;
  vertical-align: middle;
}

.abo-example {
  font-size: 0.85rem;
  color: var(--dore);
  opacity: 0.85;
}

.abo-btn {
  width: 100%;
  margin-top: 1rem;
}

.abo-engagement {
  text-align: center;
  border-top: 1px solid rgba(200, 168, 78, 0.25);
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.abo-engagement-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.abo-engagement-sub {
  font-size: 0.95rem;
  opacity: 0.8;
}

.abo-resil-btn {
  display: inline-flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
  padding: 0.85rem 2.5rem;
}

@media (max-width: 600px) {
  .abo-cards {
    grid-template-columns: 1fr;
  }
  .abo-title {
    font-size: 1.5rem;
  }
  .abo-amount {
    font-size: 2.8rem;
  }
}
.site-footer {
  background: var(--noir-profond);
  border-top: 1px solid var(--gris-sombre);
  padding: 3rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--dore);
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.5;
}

.whatsapp-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.legal-page {
  padding-top: 2rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.4rem;
  color: var(--dore);
  margin: 2.5rem 0 1rem;
}
.legal-content p {
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.legal-content ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.legal-content ul li {
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.7;
}
.legal-content ul li::before {
  content: "•";
  color: var(--dore);
  position: absolute;
  left: 0;
}
.legal-content a {
  color: var(--dore);
  transition: opacity 0.3s;
}
.legal-content a:hover {
  opacity: 0.8;
}

.legal-updated {
  margin-top: 3rem;
  font-style: italic;
  opacity: 0.6;
}

#publics > .section {
  max-width: 860px;
}

.publics-title {
  color: var(--blanc);
}

.cell-plus {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dore);
  margin-top: calc(140px - 0.8rem);
  flex-shrink: 0;
}

.publics-props {
  text-align: center;
  margin-bottom: 2rem;
}

.publics-prop-sm {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.publics-prop-md {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.publics-prop-lg {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0;
}

.publics-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.revenus-card {
  background: var(--noir);
  border: 1px solid var(--dore);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.revenus-card-head {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(200, 168, 78, 0.2);
  text-align: center;
}
.revenus-card-head h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dore);
}

.revenus-amounts {
  display: flex;
  border-bottom: 1px solid rgba(200, 168, 78, 0.2);
}

.revenu-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 0.75rem;
  text-align: center;
  gap: 0.3rem;
}
.revenu-item:first-child {
  border-right: 1px solid rgba(200, 168, 78, 0.2);
}

.revenu-amount {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.revenu-label {
  font-size: 0.72rem;
  opacity: 0.65;
  line-height: 1.4;
}

.revenu-mention {
  font-size: 0.6rem;
  opacity: 0.5;
  font-style: italic;
  text-align: center;
  line-height: 1.3;
}

.revenu-item--highlight {
  border-color: var(--dore);
  gap: 0.4rem;
}

.revenu-icon-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  color: var(--dore);
}
.revenu-icon-stack i:first-child {
  font-size: 1rem;
}
.revenu-icon-stack i:last-child {
  font-size: 1.3rem;
}

.revenu-deal-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}

.revenu-deal-sub {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.publics-lieux {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.lieux-list {
  list-style: none;
}
.lieux-list li {
  font-size: 0.95rem;
  color: #fff;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(200, 168, 78, 0.12);
}
.lieux-list li:first-child {
  border-top: 1px solid rgba(200, 168, 78, 0.12);
}
.lieux-list li::before {
  content: "–";
  color: var(--dore);
  margin-right: 0.5rem;
}

.lieux-mention {
  background: rgba(200, 168, 78, 0.08);
  border: 1px solid rgba(200, 168, 78, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dore);
  line-height: 1.5;
}

.solutions-section {
  padding-top: 4rem;
}
.solutions-section .section-title {
  color: #fff;
}
.solutions-section .section-subtitle {
  color: #fff;
  opacity: 1;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr auto;
  column-gap: 1.5rem;
  margin-top: 2.5rem;
}

.solution-card {
  background: var(--gris-sombre);
  border: 1px solid rgba(200, 168, 78, 0.4);
  border-radius: 12px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
}

.solution-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  min-height: 6rem;
}

.solution-card-title {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.solution-card-title strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.1;
}
.solution-card-title span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dore);
}

.solution-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 8rem;
  height: 5rem;
  padding: 0 0.9rem;
  border-radius: 8px;
  flex-shrink: 0;
}
.solution-badge i {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.solution-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.solution-badge-main {
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.solution-badge-sub {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
  opacity: 0.85;
}

.solution-badge--gratuit {
  background: #1a5c35;
  color: #fff;
  border: 1px solid #2d8a52;
}
.solution-badge--gratuit i {
  color: #6effa8;
}

.solution-badge--revenus {
  background: rgba(200, 168, 78, 0.12);
  color: var(--dore);
  border: 1px solid var(--dore);
}
.solution-badge--revenus i {
  color: var(--dore);
}

.solution-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.solution-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.solution-card-img:hover img {
  transform: scale(1.03);
}

.solution-features {
  list-style: none;
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.solution-features li {
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 1.4rem;
  position: relative;
}
.solution-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--dore);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.5;
}

.solution-card-footer {
  padding: 0 1.5rem 1.5rem;
}

.solution-btn {
  width: 100%;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 6px;
}

.sitemap-content ul {
  margin-bottom: 2rem;
}
.sitemap-content ul li a {
  display: inline-block;
  padding: 0.2rem 0;
}

@media (max-width: 1024px) {
  .hero-home-copy .hero-sub {
    font-size: 1rem;
  }
  #entreprises > .section {
    max-width: 100%;
  }
  .cell-img {
    width: 180px;
    height: 130px;
  }
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--noir);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--gris-sombre);
  }
  .main-nav.open {
    display: flex;
  }
  .nav-has-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-has-dropdown .nav-chevron {
    display: none;
  }
  .nav-has-dropdown .nav-dropdown {
    display: flex;
    flex-direction: column;
    position: static;
    transform: none;
    background: transparent;
    border: none;
    padding: 0;
    gap: 0.5rem;
    min-width: unset;
  }
  .nav-has-dropdown .nav-dropdown li a {
    padding: 0 0 0 1rem;
    font-size: 0.85rem;
    opacity: 0.75;
  }
  .hero-home {
    height: auto;
    min-height: unset;
    overflow-x: hidden;
  }
  .hero-home-content {
    grid-template-columns: 1fr;
    overflow-x: hidden;
  }
  .hero-home-right {
    order: -1;
    max-height: 45vw;
    overflow: hidden;
  }
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-home-text {
    padding: 1.5rem 1.5rem 2rem;
  }
  .hero-home-copy h1 {
    font-size: 1.5rem;
  }
  .hero-home-copy .hero-sub {
    font-size: 0.95rem;
  }
  .hero-cta {
    padding: 1rem 1.5rem;
  }
  .hero-cta .linktree-btn {
    flex: 1;
    justify-content: center;
  }
  .entreprises-grid {
    grid-template-columns: 1fr;
  }
  .entreprises-images {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .entreprises-img {
    flex: 1;
    max-height: 250px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit-col:first-child {
    border-right: none;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 0.8rem;
  }
  .offer-header {
    flex-direction: column;
    gap: 0.5rem;
    margin: -3rem 1rem 1rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2rem;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
  #entreprises > .section,
  #publics > .section {
    max-width: 100%;
    padding: 2.5rem 1rem;
  }
  .publics-bottom {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .publics-prop-lg {
    font-size: 1.6rem;
  }
  .entreprises-content {
    padding: 1.5rem 1rem 1rem;
  }
  .entreprises-cells {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .cell-ou {
    margin-top: 0;
    font-size: 1.1rem;
  }
  .cell-plug {
    margin-top: 0.5rem;
  }
  .cell-option {
    width: 100%;
  }
  .cell-img {
    width: 100%;
    height: 200px;
  }
  .how-steps {
    gap: 1rem;
  }
  .how-steps .how-step p {
    font-size: 0.9rem;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .entreprises-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .entreprises-solutions-title {
    font-size: 1.15rem;
  }
  .entreprises-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .solution-card-header {
    flex-direction: column;
    align-items: flex-start;
    min-height: unset;
    gap: 0.6rem;
  }
  .solution-badge {
    width: auto;
    height: 2.2rem;
    padding: 0 0.9rem;
    flex-direction: row;
    align-items: center;
  }
  .solution-badge-text {
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
  }
  .solution-badge-main {
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .solution-badge-sub {
    font-size: 0.75rem;
    white-space: nowrap;
  }
  .solutions-section .section-title {
    font-size: 1.6rem;
  }
  .solution-card-title strong {
    font-size: 1.25rem;
  }
  .solution-card-title span {
    font-size: 0.9rem;
  }
  .solution-btn {
    font-size: 0.8rem;
    padding: 0.65rem 1rem;
  }
  .hero-home-copy h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .hero-home-copy .hero-sub {
    font-size: 0.85rem;
  }
  .hero-category-links a {
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
    white-space: nowrap;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }
  .hero-cta .linktree-btn {
    width: 100%;
    justify-content: center;
  }
  .entreprises-images {
    flex-direction: column;
  }
  .entreprises-img {
    max-height: 200px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .section {
    padding: 3rem 1rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  .entreprises-cells {
    gap: 1rem;
  }
  .cell-img {
    width: 100%;
    height: 180px;
  }
  .cell-plug {
    width: 70px;
    height: 70px;
  }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  .entreprises-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .entreprises-solutions-title {
    font-size: 1.1rem;
  }
  .publics-props {
    text-align: center;
  }
  .publics-prop-sm {
    font-size: 0.82rem;
  }
  .publics-prop-md {
    font-size: 0.78rem;
  }
  .publics-prop-lg {
    font-size: 0.95rem;
  }
  .publics-bottom {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .cell-plus {
    margin-top: 0;
  }
}
.merci-section {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.merci-contact,
.merci-resil {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 480px;
}

.merci-icon {
  font-size: 3rem;
  color: var(--dore);
}

.merci-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--blanc);
  line-height: 1.2;
}

.merci-body {
  font-size: 1.05rem;
  color: rgba(245, 245, 245, 0.75);
  line-height: 1.6;
}

/*# sourceMappingURL=main.css.map */