.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.links {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.link-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 6px 10px 14px;
}

.pricing {
  padding: 80px 16px;
  background:
    radial-gradient(
      900px 500px at 70% 20%,
      rgba(255, 122, 0, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, #090909, #0b0b0b);
  color: var(--text);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pricing-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.pricing-title span {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-sub {
  margin: 0 auto 40px;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  text-align: left;
  transition:
    transform 0.18s ease,
    border 0.18s ease,
    box-shadow 0.18s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border: 1px solid rgba(255, 122, 0, 0.35);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.6);
}

.price-top {
  text-align: center;
}

.price-ico {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.3);
  font-size: 22px;
}

.price-card h3 {
  margin: 6px 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}

.price-from {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
}

.price-from b {
  color: var(--accent);
  font-size: 1.3rem;
}

.price-time {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  flex: 1 1 auto;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.price-btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 13px 16px;
  margin-top: auto;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  color: #0b0b0b;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(255, 122, 0, 0.18);
}

/* Popular card */
.price-card.popular {
  padding-top: 44px;
  border: 1px solid rgba(255, 122, 0, 0.55);
  background: linear-gradient(
    180deg,
    rgba(255, 122, 0, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  transform: translateY(-6px);
}

.badge {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  color: #0b0b0b;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  z-index: 3;
  line-height: 1;
}

.price-card.popular .badge {
  top: 12px;
  transform: translateX(-50%);
}

.pricing-note {
  margin: 26px auto 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.popular {
    transform: none;
  }
}

.process {
  padding: 80px 16px;
  background:
    radial-gradient(
      900px 520px at 70% 30%,
      rgba(255, 122, 0, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #090909, #0b0b0b);
  color: var(--text);
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.process-title {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 0 0 40px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.process-title span {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}

.step {
  padding: 10px 8px 0;
}

.step-bubble {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.15rem;
  color: #0b0b0b;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 18px 45px rgba(255, 122, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

/* Responsive */
@media (max-width: 980px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .step {
    padding: 0;
  }
}

.quotes {
  padding: 80px 16px;
  background:
    radial-gradient(
      900px 520px at 70% 25%,
      rgba(255, 122, 0, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #090909, #0b0b0b);
  color: var(--text);
}

.quotes-inner {
  max-width: 1050px;
  margin: 0 auto;
}

.quotes-title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.4px;
  text-align: left;
}

.quotes-title span {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quotes-sub {
  margin: 0 0 34px;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.6;
}

.quote-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.quote-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
}

.quote-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.quote-card li {
  margin: 8px 0;
}

.quote-card b {
  color: rgba(255, 255, 255, 0.95);
}

.price {
  font-weight: 900;
  color: var(--accent);
  font-size: 1.08rem;
}

.quotes-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 560px) {
  .quotes-title {
    text-align: center;
  }
  .quotes-sub {
    text-align: center;
  }
}

/* ===== Section Works ===== */
.works {
  padding: 80px 16px;
  background:
    radial-gradient(
      900px 520px at 70% 25%,
      rgba(255, 122, 0, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #090909, #0b0b0b);
  color: var(--text);
}
.works__container {
  max-width: 1100px;
  margin: 0 auto;
}
.works__header {
  text-align: center;
  margin-bottom: 34px;
}
.works__title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.4px;
}
.works__title span {
  background: linear-gradient(90deg, var(--orange), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.works__subtitle {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.6;
}

/* Grille */
.works__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 900px) {
  .works__grid {
    grid-template-columns: 1fr;
  }
}

/* Carte */
.work-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.work-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.work-card__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 900;
}
.work-card__chip {
  font-size: 0.78rem;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 122, 0, 0.1);
  border: 1px solid rgba(255, 122, 0, 0.3);
}
.work-card__note {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}

/* =========================
   AVANT / APRÈS SLIDER (Premium)
========================= */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 18px 55px rgba(0, 0, 0, 0.35);
}

/* petite lueur luxe */
.ba-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px 260px at 70% 20%,
    rgba(255, 122, 0, 0.08),
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after {
  position: absolute;
  inset: 0;
  width: 10%;
  height: 100%;
  overflow: hidden;
  z-index: 3;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 10%;
  transform: translateX(-50%);
  height: 100%;
  width: 0;
  pointer-events: none;
  z-index: 4;
}

.ba-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(255, 122, 0, 0.8);
  box-shadow: 0 0 25px rgba(255, 122, 0, 0.28);
  transform: translateX(-50%);
}

.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, var(--orange), var(--accent2));
  border: 1px solid rgba(255, 122, 0, 0.35);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(255, 122, 0, 0.18);
}

.ba-knob::before,
.ba-knob::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(0, 0, 0, 0.55);
  border-right: 2px solid rgba(0, 0, 0, 0.55);
  transform: translateY(-50%) rotate(225deg);
}
.ba-knob::before {
  left: 12px;
}
.ba-knob::after {
  right: 12px;
  transform: translateY(-50%) rotate(45deg);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 6;
}

/* Tags */
.ba-tag {
  position: absolute;
  top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  z-index: 7;
  transition: all 0.25s ease;
}
.ba-tag--before {
  left: 12px;
}
.ba-tag--after {
  right: 12px;
}

.ba-tag.is-active {
  color: var(--orange);
  border-color: rgba(255, 122, 0, 0.45);
  background: rgba(255, 122, 0, 0.1);
  box-shadow: 0 0 18px rgba(255, 122, 0, 0.22);
}

/* Hover carte */
.work-card:hover .ba-slider {
  border-color: rgba(255, 122, 0, 0.22);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.72),
    inset 0 0 0 1px rgba(255, 122, 0, 0.06);
}

/* Mobile confort */
@media (max-width: 520px) {
  .ba-knob {
    width: 42px;
    height: 42px;
  }
}
