* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.wrap {
  width: min(var(--max),calc(100% - 40px));
  margin: auto;
}

.detail-topbar {
  display: none;
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: min(240px, 30vw);
  padding: 10px 0;
}

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



.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 17px;
  font-weight: 700;
  color: #415466;
}

.crumb {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #c8e6ff;
  font-weight: 800;
  margin-bottom: 18px;
}

h1 {
  margin: 0;
  font-size: clamp(58px,8vw,110px);
  line-height: .88;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.lead {
  max-width: 670px;
  margin: 20px 0 26px;
  color: #d5e0eb;
  font-size: 19px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.section {
  padding: 82px 0;
}

.section.white {
  background: #fff;
}

h2 {
  font-size: clamp(34px,4vw,52px);
  letter-spacing: -.045em;
  line-height: 1.02;
  margin: 0 0 16px;
}

.intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.kpi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(8,24,39,.04);
}

.kpi strong {
  display: block;
  font-size: 27px;
  line-height: 1.1;
  color: var(--ink);
}

.kpi span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(8,24,39,.05);
}

.panel h3 {
  margin: 0 0 18px;
  font-size: 25px;
  letter-spacing: -.025em;
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid #edf1f5;
  font-size: 14px;
}

.spec-row span {
  color: var(--muted);
}

.spec-row b {
  text-align: right;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.feature b {
  display: block;
  margin-bottom: 6px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.bullets li {
  position: relative;
  padding-left: 18px;
  color: #334b61;
}

.bullets li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: .62em;
}

.compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(8,24,39,.05);
}

.compare th, .compare td {
  padding: 14px 16px;
  border-bottom: 1px solid #e7edf2;
  text-align: left;
  font-size: 14px;
}

.compare th {
  background: #0d2943;
  color: #fff;
}

.compare td:first-child {
  font-weight: 800;
  color: #2a4258;
}

.note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 3px solid var(--blue);
  background: #edf6ff;
  color: #50677d;
  font-size: 13px;
}

.cta h3 {
  margin: 0 0 8px;
  font-size: 30px;
  letter-spacing: -.03em;
}

.cta p {
  margin: 0;
  color: #c9d7e4;
}

footer {
  background: #06121f;
  color: #9fb0bf;
  padding: 34px 0;
  margin-top: 0;
  font-size: 13px;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.foot strong {
  color: #fff;
}

.footer-contact {
  display: inline-block;
  margin-top: 4px;
  color: #fff;
  font-weight: 800;
}

.footer-contact:hover {
  text-decoration: underline;
}

.source {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
  color: #74899a;
}

.eyebrow {
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 9px;
  color: var(--accent);
}

.product-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: stretch;
}

.product-intro-copy {
  padding: 38px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-intro-copy .crumb {
  color: #7f7669;
  margin-bottom: 18px;
}

.product-photo-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
  pointer-events: none;
}

.product-intro .btn-light {
  background: transparent;
  border: 1px solid #aeb1b5;
  color: #25282c;
}

.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2,1fr);
}

.gallery img {
  width: 100%;
  object-fit: cover;
  height: 360px;
  border-radius: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.related-image--partner-rapid {
  background-image: url("peugeot-partner-rapid-hero.webp");
}

.related-image--partner {
  background-image: url("peugeot-partner.webp");
}

.related-image--expert {
  background-image: url("peugeot-expert.webp");
}

.related-image--manager {
  background-image: url("peugeot-manager.webp");
}

.related-image--rifter {
  background-image: url("peugeot-rifter.webp");
}

.related-image {
  height: 165px;
  background-size: cover;
  background-position: center;
  background-color: #e6e7e8;
}

.related-copy {
  padding: 16px;
}

.related-copy small {
  display: block;
  margin-top: 12px;
  color: #66717a;
  font-size: 11px;
  font-weight: 800;
}

:root {
  --max: 1180px;
  --shadow: 0 18px 50px rgba(8,24,39,.10);
  --ink: #0B1F33;
  --ink2: #162A3D;
  --blue: #526B80;
  --sky: #DCE4EA;
  --paper: #F4F6F8;
  --white: #FFFFFF;
  --muted: #687785;
  --line: #D7DEE4;
  --accent: #A28B68;
}

body {
  margin: 0;
  font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height: 1.55;
  background: #F4F6F8;
  color: #17212B;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  border-bottom-color: #D7DEE4;
}

.navlinks a {
  color: #455A6C;
}

.navlinks a:hover {
  color: #0B1F33;
}

.navlinks .proposal-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: #0B1F33;
  color: #FFFFFF;
  border: 0;
  box-shadow: none;
  transition: .2s ease;
}

.navlinks .proposal-cta:hover {
  background: #263C50;
  color: #FFFFFF;
}

.eyebrow, .product-intro-copy .crumb {
  color: var(--accent);
}

.product-intro {
  padding: 58px 0 62px;
  border-bottom: 1px solid #d7d9dc;
  background: #F4F6F8;
  border-bottom-color: #D7DEE4;
}

.product-intro-copy h1 {
  font-size: clamp(54px,7vw,94px);
  line-height: .9;
  margin: 0 0 18px;
  color: #0B1F33;
}

.product-intro-copy .lead {
  margin: 0 0 28px;
  font-size: 18px;
  color: #5E6D79;
}

.product-intro .btn-primary {
  background: #0B1F33;
  color: #fff;
  border: 1px solid #0B1F33;
}

.product-intro .btn-primary:hover {
  background: #263C50;
  color: #fff;
}

.detail-space-22 {
  margin-top: 22px;
}

.detail-space-28 {
  margin-top: 28px;
}

.detail-title-34 {
  font-size: 34px;
}

.related-section {
  border-top: 1px solid #dad7d1;
  background: #E9EDF0;
  border-top-color: #D2DAE0;
}

.related-card {
  display: block;
  color: inherit;
  overflow: hidden;
  border: 1px solid #d5d3cf;
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  border-color: #D3DBE1;
}

.related-card:hover, .related-card:focus-visible {
  transform: translateY(-6px);
  border-color: #A28B68;
  box-shadow: 0 16px 34px rgba(11,31,51,.13);
  outline: none;
}

.related-copy span {
  display: block;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
  margin-bottom: 5px;
  color: #8C7759;
}

.related-copy strong {
  display: block;
  font-size: 18px;
  letter-spacing: -.02em;
  color: #0B1F33;
}

.cta {
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg,#0B1F33,#243C51);
}

.product-photo-frame {
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(24,27,31,.13);
  position: relative;
  min-height: 500px;
  height: 500px;
  background: #E7ECEF;
  overflow: hidden;
}

.product-photo-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.product-specs {
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  grid-auto-rows: 1fr;
  gap: 10px;
}

.product-spec {
  border: 1px solid #d6d8da;
  border-radius: 14px;
  border-color: #D7DEE4;
  background: #FFFFFF;
  min-height: 92px;
  height: 100%;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.product-spec strong {
  letter-spacing: -.035em;
  color: #0B1F33;
  font-size: 22px;
  line-height: 1;
}

.product-spec span {
  color: #777d83;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 7px;
  font-size: 10px;
  line-height: 1.2;
}

@media (max-width:920px) {
    .navlinks {
      display: none;
    }

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

    .grid2, .gallery {
      grid-template-columns: 1fr;
    }

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

    .gallery img, .gallery img:last-child {
      height: 360px;
    }

    .product-intro-grid {
      grid-template-columns: 1fr;
    }

    .product-photo-frame, .product-photo-frame img {
      min-height: 420px;
    }

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

    .product-photo-frame {
      height: 420px;
      min-height: 420px;
    }
}

@media (max-width:600px) {
    .wrap {
      width: calc(100% - 26px);
    }

    h1 {
      font-size: 52px;
    }

    .lead {
      font-size: 16px;
    }

    .cards, .feature-grid, .spec-list, .bullets {
      grid-template-columns: 1fr;
    }

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

    .section {
      padding: 62px 0;
    }

    .gallery img, .gallery img:last-child {
      height: 280px;
    }

    .product-intro {
      padding: 34px 0 42px;
    }

    .product-intro-copy {
      padding: 0;
    }

    .product-photo-frame, .product-photo-frame img {
      min-height: 320px;
    }

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

    .related-image {
      height: 125px;
    }

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

    .product-photo-frame {
      height: 310px;
      min-height: 310px;
    }

    .product-specs {
      grid-template-columns: 1fr 1fr;
    }
}

.navlinks a.is-current {
  position: relative;
  color: #0B1F33;
  font-weight: 900;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.navlinks a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: #A28B68;
  border-radius: 2px;
}

.navlinks a.is-current:hover {
  color: #0B1F33;
  background: transparent;
}

@media (min-width: 641px) and (max-width: 920px) {
    .wrap {
      width: min(var(--max),calc(100% - 36px));
    }

    .product-intro {
      padding: 42px 0 50px;
    }

    .product-intro-grid {
      grid-template-columns: 1fr;
      gap: 26px;
    }

    .product-intro-copy {
      padding: 0;
    }

    .product-intro-copy h1 {
      font-size: clamp(54px,9vw,76px);
    }

    .product-photo-frame {
      height: auto;
      min-height: 0;
      aspect-ratio: 16/9;
      border-radius: 24px;
    }

    .product-photo-frame img {
      min-height: 0;
      height: 100%;
    }

    .product-specs {
      grid-template-columns: repeat(4,minmax(0,1fr));
    }

    .product-spec {
      min-height: 84px;
      padding: 14px;
    }

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

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

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

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

    .related-image {
      height: 180px;
    }
}

@media (max-width: 640px) {
    .wrap {
      width: calc(100% - 24px);
    }

    .site-head .nav {
      min-height: 70px;
      height: auto;
      padding: 12px 0;
    }

    .product-intro {
      padding: 32px 0 40px;
    }

    .product-intro-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .product-intro-copy {
      padding: 0;
    }

    .product-intro-copy h1 {
      font-size: clamp(44px,13vw,60px);
      line-height: .92;
    }

    .product-intro-copy .lead {
      font-size: 16px;
      line-height: 1.55;
    }

    .product-specs {
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .product-spec {
      min-height: 82px;
      padding: 13px 14px;
      border-radius: 14px;
    }

    .product-spec strong {
      font-size: 20px;
    }

    .product-photo-frame {
      height: auto;
      min-height: 0;
      aspect-ratio: 16/10;
      border-radius: 20px;
    }

    .product-photo-frame img {
      height: 100%;
      min-height: 0;
      object-fit: cover;
    }

    .section {
      padding: 56px 0;
    }

    h2 {
      font-size: clamp(30px,9vw,40px);
    }

    .intro {
      font-size: 16px;
    }

    .cards {
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .kpi {
      padding: 16px;
      border-radius: 16px;
    }

    .kpi strong {
      font-size: 22px;
    }

    .grid2 {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .panel {
      padding: 20px;
      border-radius: 18px;
    }

    .panel h3 {
      font-size: 22px;
    }

    .spec-list {
      grid-template-columns: 1fr;
    }

    .feature-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .feature {
      border-radius: 16px;
      padding: 18px;
    }

    .bullets {
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .gallery {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .gallery img {
      height: auto;
      aspect-ratio: 16/10;
      border-radius: 18px;
    }

    .related-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .related-card {
      display: grid;
      grid-template-columns: 40% 60%;
      min-height: 118px;
      border-radius: 16px;
    }

    .related-image {
      height: 100%;
      min-height: 118px;
    }

    .related-copy {
      padding: 14px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .cta {
      padding: 24px 20px;
      border-radius: 20px;
    }

    .cta h3 {
      font-size: 26px;
    }

    .foot {
      flex-direction: column;
      gap: 16px;
    }
}

@media (min-width: 921px) and (max-width: 1180px) {
    .wrap {
      width: min(var(--max),calc(100% - 48px));
    }

    .navlinks {
      gap: 14px;
      font-size: 15px;
    }

    .product-intro-grid {
      gap: 30px;
    }

    .product-photo-frame {
      min-height: 460px;
      height: 460px;
    }
}

@media (min-width: 1600px) {
    :root {
      --max: 1320px;
    }

    .product-intro-grid {
      grid-template-columns: .85fr 1.15fr;
    }
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #D7DEE4;
  border-radius: 12px;
  background: #fff;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex: 0 0 44px;
}

.mobile-menu-toggle span {
  width: 19px;
  height: 2px;
  background: #0B1F33;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.985);
  backdrop-filter: blur(14px);
  border-top: 1px solid #E2E7EB;
  border-bottom: 1px solid #D7DEE4;
  box-shadow: 0 18px 36px rgba(11,31,51,.14);
  padding: 10px 16px 16px;
}

.mobile-menu-panel.is-open {
  display: block;
}

.mobile-menu-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 12px;
  color: #263A4C;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid #EDF1F4;
}

.mobile-menu-panel a:last-child {
  border-bottom: 0;
}

.mobile-menu-panel a::after {
  content: "›";
  color: #8B99A5;
  font-size: 22px;
  font-weight: 400;
}

.mobile-menu-panel a.mobile-cta {
  margin-top: 10px;
  border: 0;
  border-radius: 12px;
  background: #0B1F33;
  color: #fff;
  padding: 0 16px;
}

.mobile-menu-panel a.mobile-cta::after {
  color: #fff;
}

.mobile-menu-panel a.is-current {
  color: #0B1F33;
  background: #F3F6F8;
  box-shadow: inset 3px 0 0 #A28B68;
}

@media (max-width:980px) {
    header, .site-head {
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .mobile-menu-toggle {
      display: flex;
    }

    header .nav {
      position: relative;
    }

    header nav {
      display: none;
    }

    .site-head .navlinks {
      display: none;
    }
}

@media (min-width:981px) {
    .detail-topbar {
      display: block;
      font-size: 14px;
      padding: 10px 0;
      background: #091827;
      color: #D7E0E7;
    }

    .detail-topbar .wrap {
      display: flex;
      justify-content: flex-start;
      gap: 20px;
      align-items: center;
    }

    .site-head {
      z-index: 50;
      background: rgba(255,255,255,.94);
      border-bottom-color: #D9E0E5;
    }

    .site-head .nav {
      height: auto;
      min-height: 78px;
    }

    .mobile-menu-panel {
      display: none;
    }
}


.gallery img:last-child {
  height: 360px;
}

@media (max-width:640px) {
    .site-logo {
      width: min(170px,46vw);
      padding: 10px 0;
    }

    .site-logo-img {
      max-height: 42px;
    }


    .gallery img:last-child {
      height: auto;
    }
}
