:root {
  --jb-black: #050505;
  --jb-dark: #101010;
  --jb-white: #ffffff;
  --jb-offwhite: #fafafa;
  --jb-soft: #f4f4f4;
  --jb-text: #000000;
  --jb-gold: #f4c400;
  --jb-gold-hover: #ffd600;
  --jb-border: rgba(0, 0, 0, 0.10);
  --jb-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  --jb-radius: 26px;
}

html {
  scroll-behavior: smooth;
}

.jb-page,
.jb-page * {
  box-sizing: border-box;
}

.jb-page {
  font-family: inherit;
  color: var(--jb-text);
  background: #fff;
  overflow-x: hidden;
}

.jb-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.jb-header {
  position: sticky;
  top: 0;
  z-index: 99999;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

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

.jb-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  position: relative;
  z-index: 100001;
}

.jb-logo img {
  width: 78px;
  height: auto;
  display: block;
}

.jb-logo-text {
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0.2px;
}

.jb-logo-text span {
  display: block;
  color: var(--jb-gold);
  font-size: 11px;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.jb-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.jb-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: 0.22s ease;
}

.jb-menu a:hover {
  color: var(--jb-gold);
}

.jb-menu .jb-menu-cta {
  background: var(--jb-gold);
  color: #000;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(244, 196, 0, 0.24);
}

.jb-menu .jb-menu-cta:hover {
  background: var(--jb-gold-hover);
  color: #000;
  transform: translateY(-1px);
}

.jb-hamburger {
  display: none;
  position: relative;
  z-index: 100001;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.jb-hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  transition: 0.26s ease;
}

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

.jb-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

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

.jb-hero {
  min-height: 730px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.20) 100%),
    var(--jb-hero-image) center/cover no-repeat;
}

.jb-hero-content {
  max-width: 700px;
  padding: 96px 0;
}

.jb-hero h1 {
  color: #fff;
  margin: 0 0 24px;
  font-size: clamp(43px, 6vw, 82px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: -2.4px;
}

.jb-hero h1 span {
  color: var(--jb-gold);
}

.jb-hero p {
  margin: 0 0 34px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.90);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  font-weight: 500;
}

.jb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.jb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 25px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  border: 1px solid transparent;
  transition: 0.22s ease;
}

.jb-btn-primary {
  background: var(--jb-gold);
  color: #000;
  box-shadow: 0 16px 34px rgba(244, 196, 0, 0.25);
}

.jb-btn-primary:hover {
  background: var(--jb-gold-hover);
  color: #000;
  transform: translateY(-2px);
}

.jb-btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.jb-btn-outline:hover {
  color: var(--jb-gold);
  border-color: var(--jb-gold);
}

.jb-btn-dark {
  background: #000;
  color: #fff;
}

.jb-btn-dark:hover {
  background: var(--jb-gold);
  color: #000;
  transform: translateY(-2px);
}

.jb-section {
  padding: 95px 0;
}

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

.jb-section-white {
  background: #fff;
}

.jb-section-dark {
  background: #050505;
  color: #fff;
}

.jb-title {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.jb-title h2 {
  margin: 0 0 15px;
  color: #000;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -1.4px;
}

.jb-title p {
  margin: 0;
  color: #000;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

.jb-section-dark .jb-title h2 {
  color: #fff;
}

.jb-section-dark .jb-title p {
  color: rgba(255, 255, 255, 0.84);
}

.jb-lease-scroller {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.jb-lease-card {
  position: relative;
  min-height: 382px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  color: #000;
  border-radius: var(--jb-radius);
  padding: 34px;
  border: 1px solid var(--jb-border);
  box-shadow: var(--jb-shadow);
  transition: 0.24s ease;
}

.jb-lease-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.17);
}

.jb-lease-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -74px;
  top: -74px;
  background: radial-gradient(circle, rgba(244, 196, 0, 0.32), transparent 70%);
  pointer-events: none;
}

.jb-lease-card h3 {
  margin: 0 0 16px;
  color: #000;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.7px;
}

.jb-lease-card p {
  margin: 0 0 23px;
  color: #000;
  font-size: 15.8px;
  line-height: 1.75;
  font-weight: 500;
}

.jb-lease-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.jb-lease-card li {
  position: relative;
  padding-left: 26px;
  color: #000;
  font-size: 14.8px;
  line-height: 1.45;
  font-weight: 800;
}

.jb-lease-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--jb-gold);
  font-weight: 950;
}

.jb-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 12px 19px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 950;
  transition: 0.22s ease;
}

.jb-card-link:hover {
  background: var(--jb-gold);
  color: #000;
}

.jb-offerte-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.jb-offerte-info {
  background:
    radial-gradient(circle at top right, rgba(244, 196, 0, 0.24), transparent 34%),
    #050505;
  color: #fff;
  border-radius: 30px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jb-offerte-info h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -1.3px;
}

.jb-offerte-info p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

.jb-offerte-info strong {
  color: var(--jb-gold);
}

.jb-offerte-form {
  background: #fff;
  border: 1px solid var(--jb-border);
  border-radius: 30px;
  padding: 42px;
  box-shadow: var(--jb-shadow);
}

.jb-form-alert {
  border-radius: 16px;
  padding: 15px 16px;
  margin-bottom: 18px;
  font-weight: 850;
  line-height: 1.5;
}

.jb-form-alert-success {
  background: #e8f8ee;
  color: #075b24;
  border: 1px solid rgba(7, 91, 36, 0.18);
}

.jb-form-alert-error {
  background: #fff0f0;
  color: #8a1111;
  border: 1px solid rgba(138, 17, 17, 0.18);
}

.jb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.jb-field {
  display: grid;
  gap: 8px;
}

.jb-field-full {
  grid-column: 1 / -1;
}

.jb-field label {
  color: #000;
  font-size: 14px;
  font-weight: 900;
}

.jb-field input,
.jb-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #f7f7f7;
  color: #000;
  border-radius: 16px;
  padding: 15px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: 0.2s ease;
}

.jb-field input:focus,
.jb-field textarea:focus {
  border-color: var(--jb-gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(244, 196, 0, 0.16);
}

.jb-field textarea {
  min-height: 120px;
  resize: vertical;
}

.jb-form-submit {
  width: 100%;
  margin-top: 22px;
  border: 0;
  cursor: pointer;
  min-height: 56px;
  border-radius: 999px;
  background: var(--jb-gold);
  color: #000;
  font-size: 16px;
  font-weight: 950;
  font-family: inherit;
  transition: 0.22s ease;
  box-shadow: 0 16px 34px rgba(244, 196, 0, 0.24);
}

.jb-form-submit:hover {
  background: var(--jb-gold-hover);
  transform: translateY(-2px);
}

.jb-form-note {
  margin-top: 14px;
  color: #000;
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 500;
}

.jb-brand-banner {
  border-radius: 34px;
  padding: 52px;
  margin-bottom: 34px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.58)),
    var(--jb-brand-banner) center/cover no-repeat;
}

.jb-brand-banner h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -1.4px;
}

.jb-brand-banner p {
  max-width: 710px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.jb-brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.jb-brand-card {
  background: #fff;
  border: 1px solid var(--jb-border);
  border-radius: 23px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  transition: 0.24s ease;
}

.jb-brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.13);
}

.jb-brand-card img {
  width: 100%;
  max-width: 135px;
  height: 86px;
  object-fit: contain;
  display: block;
  margin: 0 auto 15px;
}

.jb-brand-card h3 {
  margin: 0;
  color: #000;
  font-size: 18px;
  font-weight: 950;
}

.jb-white-cta-wrap {
  background: #fff;
  border-radius: 36px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  border: 1px solid var(--jb-border);
  box-shadow: var(--jb-shadow);
}

.jb-white-cta-content {
  padding: 58px;
  background:
    radial-gradient(circle at top left, rgba(244, 196, 0, 0.15), transparent 35%),
    #fff;
}

.jb-white-cta-content h2 {
  margin: 0 0 18px;
  color: #000;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -1.4px;
}

.jb-white-cta-content p {
  margin: 0 0 28px;
  color: #000;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

.jb-white-cta-image {
  min-height: 460px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.18)),
    var(--jb-cta-image) center/cover no-repeat;
}

.jb-faq {
  max-width: 930px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.jb-faq-item {
  background: #fff;
  border-radius: 19px;
  overflow: hidden;
  border: 1px solid var(--jb-border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.jb-faq-question {
  width: 100%;
  border: 0;
  background: #fff;
  color: #000;
  padding: 23px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 950;
}

.jb-faq-question span {
  flex: 1;
}

.jb-faq-plus {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #000;
  color: var(--jb-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  flex: 0 0 auto;
  transition: 0.22s ease;
}

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

.jb-faq-answer-inner {
  padding: 0 25px 24px;
  color: #000;
  font-size: 15.8px;
  line-height: 1.75;
  font-weight: 500;
}

.jb-faq-item.is-open .jb-faq-plus {
  transform: rotate(45deg);
  background: var(--jb-gold);
  color: #000;
}

.jb-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.jb-contact-card,
.jb-contact-side {
  border-radius: 30px;
  padding: 40px;
}

.jb-contact-card {
  background: #fff;
  color: #000;
  box-shadow: var(--jb-shadow);
}

.jb-contact-card h2 {
  margin: 0 0 15px;
  color: #000;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -1.3px;
}

.jb-contact-card p {
  margin: 0 0 26px;
  color: #000;
  font-size: 16.5px;
  line-height: 1.7;
  font-weight: 500;
}

.jb-contact-list {
  display: grid;
  gap: 13px;
}

.jb-contact-list a,
.jb-contact-list div {
  background: var(--jb-soft);
  color: #000;
  border-radius: 17px;
  padding: 16px 17px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.jb-contact-side {
  background:
    radial-gradient(circle at top right, rgba(244, 196, 0, 0.28), transparent 34%),
    #050505;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jb-contact-side h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 30px;
  font-weight: 950;
}

.jb-contact-side p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
  font-weight: 500;
}

.jb-mobile-call {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99998;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: var(--jb-gold);
  color: #000;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  animation: jbPulse 1.8s infinite;
}

.jb-mobile-call svg {
  width: 28px;
  height: 28px;
  fill: #000;
}

@keyframes jbPulse {
  0% {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(244, 196, 0, 0.48);
  }

  70% {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), 0 0 0 15px rgba(244, 196, 0, 0);
  }

  100% {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(244, 196, 0, 0);
  }
}

@media (max-width: 980px) {
  .jb-hamburger {
    display: flex;
  }

  .jb-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    padding: 118px 26px 34px;
    background:
      radial-gradient(circle at top right, rgba(244, 196, 0, 0.22), transparent 30%),
      radial-gradient(circle at bottom left, rgba(244, 196, 0, 0.14), transparent 32%),
      rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: 0.32s ease;
    z-index: 100000;
  }

  .jb-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .jb-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 18px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #fff;
    font-size: 21px;
    font-weight: 950;
  }

  .jb-menu a::after {
    content: "→";
    color: var(--jb-gold);
    font-weight: 950;
  }

  .jb-menu a:hover {
    background: rgba(255, 255, 255, 0.11);
    color: var(--jb-gold);
  }

  .jb-menu .jb-menu-cta {
    justify-content: center;
    background: var(--jb-gold);
    color: #000;
    border: 0;
    margin-top: 10px;
    text-align: center;
    box-shadow: 0 18px 36px rgba(244, 196, 0, 0.22);
  }

  .jb-menu .jb-menu-cta::after {
    display: none;
  }

  .jb-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.70)),
      var(--jb-hero-image) center/cover no-repeat;
  }

  .jb-hero-content {
    padding: 78px 0;
  }

  .jb-lease-scroller {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 18px 28px;
    margin-left: -16px;
    margin-right: -16px;
    scrollbar-width: none;
  }

  .jb-lease-scroller::-webkit-scrollbar {
    display: none;
  }

  .jb-lease-card {
    min-width: 82%;
    scroll-snap-align: center;
  }

  .jb-offerte-wrap {
    grid-template-columns: 1fr;
  }

  .jb-offerte-info,
  .jb-offerte-form {
    padding: 32px;
    border-radius: 24px;
  }

  .jb-brands {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 18px 28px;
    margin-left: -16px;
    margin-right: -16px;
    scrollbar-width: none;
  }

  .jb-brands::-webkit-scrollbar {
    display: none;
  }

  .jb-brand-card {
    min-width: 220px;
    scroll-snap-align: center;
  }

  .jb-white-cta-wrap {
    grid-template-columns: 1fr;
  }

  .jb-white-cta-image {
    min-height: 350px;
    order: -1;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.96)),
      var(--jb-cta-image) center/cover no-repeat;
  }

  .jb-contact-grid {
    grid-template-columns: 1fr;
  }

  .jb-mobile-call {
    display: flex;
  }
}

@media (max-width: 640px) {
  .jb-container {
    width: min(100% - 24px, 1180px);
  }

  .jb-nav-wrap {
    min-height: 76px;
  }

  .jb-logo img {
    width: 62px;
  }

  .jb-logo-text {
    font-size: 15px;
  }

  .jb-logo-text span {
    font-size: 10px;
  }

  .jb-menu {
    padding: 104px 18px 28px;
  }

  .jb-menu a {
    font-size: 19px;
    padding: 17px 17px;
    border-radius: 17px;
  }

  .jb-hero-content {
    padding: 58px 0 68px;
  }

  .jb-hero h1 {
    letter-spacing: -1.4px;
  }

  .jb-actions {
    flex-direction: column;
  }

  .jb-btn {
    width: 100%;
  }

  .jb-section {
    padding: 66px 0;
  }

  .jb-title {
    text-align: left;
    margin-bottom: 30px;
  }

  .jb-lease-card {
    min-width: 88%;
    padding: 28px;
    min-height: 400px;
  }

  .jb-lease-card h3 {
    font-size: 25px;
  }

  .jb-form-grid {
    grid-template-columns: 1fr;
  }

  .jb-offerte-info,
  .jb-offerte-form,
  .jb-brand-banner,
  .jb-white-cta-content,
  .jb-contact-card,
  .jb-contact-side {
    border-radius: 23px;
    padding: 28px;
  }

  .jb-brand-card {
    min-width: 72%;
  }

  .jb-brand-card img {
    height: 78px;
  }

  .jb-white-cta-wrap {
    border-radius: 24px;
  }

  .jb-white-cta-image {
    min-height: 280px;
  }

  .jb-faq-question {
    padding: 19px 18px;
    font-size: 15.8px;
  }

  .jb-faq-answer-inner {
    padding: 0 18px 20px;
  }
}
