/* === RESET === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === BASE === */
html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-weight: 300;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* === INTRO === */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
}

.intro__curtain {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background-color: var(--color-dark-grey-tfs);
}

.intro__curtain--top {
  top: 0;
}

.intro__curtain--bottom {
  bottom: 0;
}

/* Atmosphere glow behind ring */
.intro__atmosphere {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56.0897vw;
  height: 56.0897vw;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 0, 34, 0.03) 0%,
    rgba(255, 255, 255, 0.015) 35%,
    transparent 70%
  );
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

/* Primary thin ring */
.intro__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44.8718vw;
  height: 44.8718vw;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
}

.intro__ring svg {
  width: 100%;
  height: 100%;
}

/* circumference = 2 * PI * 90 ≈ 565 */
.intro__ring-circle {
  stroke-dasharray: 566;
  stroke-dashoffset: 566;
}

/* Secondary outer ring for depth */
.intro__ring-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 51.2821vw;
  height: 51.2821vw;
  transform: translate(-50%, -50%);
  border: 0.0401vw solid rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

/* Single light sweep */
.intro__sweep {
  position: absolute;
  top: 50%;
  left: 0;
  width: 60%;
  height: 0.0801vw;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 70%, transparent);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  will-change: transform;
  transform: translateX(-100%);
}

/* Center content */
.intro__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.intro__line {
  width: 0;
  height: 0.0801vw;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0.15) 80%, transparent);
}

.intro__line--top {
  margin-bottom: 2.8846vw;
}

.intro__line--bottom {
  margin-top: 2.8846vw;
}

/* Logo — inverted white for dark background */
.intro__logo-wrap {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}

.intro__logo {
  display: block;
  width: 22.4359vw;
  height: auto;
  filter: brightness(0) invert(1);
}

.intro__tagline {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.8814vw;
  line-height: 1.6;
  letter-spacing: 0.2404vw;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2.8846vw;
  opacity: 0;
  text-align: center;
  max-width: 33.6538vw;
}

/* Corner details */
.intro__meta {
  position: absolute;
  bottom: 3.2051vw;
  left: 3.8462vw;
  display: flex;
  align-items: center;
  gap: 0.641vw;
  z-index: 2;
  opacity: 0;
}

.intro__meta-label,
.intro__meta-sep,
.intro__meta-year {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 0.8013vw;
  letter-spacing: 0.2404vw;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.intro__meta-sep {
  color: rgba(255, 255, 255, 0.15);
}

.intro__counter {
  position: absolute;
  bottom: 3.2051vw;
  right: 3.8462vw;
  z-index: 2;
  opacity: 0;
}

.intro__counter-num {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.8814vw;
  letter-spacing: 0.3205vw;
  color: rgba(255, 255, 255, 0.35);
  font-variant-numeric: tabular-nums;
}

.intro__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.1603vw;
  z-index: 2;
}

.intro__progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 0, 34, 0.4), rgba(255, 255, 255, 0.25));
}

.intro--done {
  pointer-events: none;
}

/* === MAIN LAYOUT === */
main {
  display: flex;
  flex-direction: column;
  gap: 0.641vw;
  overflow: hidden;
}

/* === HERO ANIMATION HELPERS === */
.hero__word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.hero__word-inner {
  display: inline-block;
}

.hero__subtitle-line {
  display: block;
  overflow: hidden;
}

.hero__subtitle-line-inner {
  display: block;
}

/* === HEADER === */
.header {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-left: 65px;
  padding-right: 65px;
  background-color: var(--color-white);
  width: 100%;
}

/* === HEADER LEFT === */
.header__left {
  display: flex;
  align-items: center;
  gap: 90px;
}

/* === LOGO === */
.header__logo {
  flex-shrink: 0;
  width: 168px;
  height: 27px;
}

.header__logo img {
  width: 100%;
  height: 100%;
}

/* === NAV === */
.header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: -0.3px;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.header__nav-item:hover {
  opacity: 0.7;
}

.header__nav-item[aria-expanded="true"] {
  opacity: 1;
}

.header__nav-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* === HEADER RIGHT (ACTIONS) === */
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* === CONTACT LINK === */
.header__contact {
  font-size: 15px;
  line-height: 25px;
  letter-spacing: -0.3px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.header__contact:hover {
  opacity: 0.7;
}

/* === BUTTONS === */
.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 41px;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -0.3px;
  font-weight: 300;
  text-align: center;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.header__btn--outline {
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background-color: transparent;
}

.header__btn--outline:hover {
  border-color: var(--color-dark-grey-tfs);
  background-color: rgba(40, 40, 48, 0.04);
}

.header__btn--filled {
  background-color: var(--color-dark-grey-tfs);
  color: var(--color-white);
}

.header__btn--filled:hover {
  background-color: #3a3a44;
}

/* === ICON BUTTONS === */
.header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 66px;
  background-color: var(--color-white);
  transition: background-color 0.2s ease;
}

.header__icon-btn:hover {
  background-color: rgba(40, 40, 48, 0.06);
}

.header__icon-btn svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* === NAV DROPDOWN === */

/* Active state: arrow flips, red accent line */
.header__nav-item[aria-expanded="true"] .header__nav-icon {
  transform: rotate(180deg);
}

/* Dropdown overlay */
.dropdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  pointer-events: none;
  visibility: hidden;
}

.dropdown.dropdown--open {
  pointer-events: auto;
  visibility: visible;
}

/* Dark backdrop */
.dropdown__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(40, 40, 48, 0.9);
  opacity: 0;
}

/* White panel */
.dropdown__panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 34.8558vw;
  background-color: var(--color-white);
  border-radius: 0 0 0.641vw 0.641vw;
  transform: translateY(-100%);
}

/* Divider below header area */
.dropdown__panel::after {
  content: '';
  position: absolute;
  top: 6.4103vw;
  left: 0;
  right: 0;
  height: 0.641vw;
  border-bottom: 0.0801vw solid rgba(40, 40, 48, 0.12);
}

/* Content area below the header */
.dropdown__content {
  display: flex;
  position: absolute;
  top: 7.0513vw;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Left sidebar */
.dropdown__sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1218vw;
  width: 21.6346vw;
  padding: 5.2083vw 2.4038vw;
  background-image: linear-gradient(-81.82deg, rgba(208, 230, 249, 0.4) 4.55%, rgba(255, 255, 255, 0.4) 126.4%);
  border-radius: 0 0 0 0.641vw;
  flex-shrink: 0;
}

.dropdown__sidebar-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.7628vw;
  line-height: 1.4;
  color: var(--color-text);
}

.dropdown__sidebar-desc {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.9615vw;
  line-height: 1.6;
  color: var(--color-text);
}

.dropdown__sidebar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.8462vw;
  padding: 0.9615vw 0;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1218vw;
  line-height: 1.9231vw;
  color: var(--color-text);
  text-decoration: underline;
  border: 0.0801vw solid rgba(255, 255, 255, 0.1);
  border-radius: 4.0064vw;
  backdrop-filter: blur(0.641vw);
  -webkit-backdrop-filter: blur(0.641vw);
}

/* Menu columns */
.dropdown__columns {
  display: flex;
  flex: 1;
  padding: 4.2468vw 3.8462vw;
  gap: 6.4103vw;
}

/* Section with sub-columns (Solutions de financement) */
.dropdown__section {
  display: flex;
  flex-direction: column;
  gap: 1.6026vw;
  flex: 2;
}

.dropdown__sub-cols {
  display: flex;
  gap: 4.8077vw;
}

.dropdown__column {
  display: flex;
  flex-direction: column;
  gap: 1.6026vw;
  flex: 1;
}

.dropdown__column-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.2821vw;
  line-height: 1.2;
  color: var(--color-text);
}

.dropdown__group {
  display: flex;
  flex-direction: column;
  gap: 1.6026vw;
}

.dropdown__group-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.2821vw;
  line-height: 1.2;
  color: var(--color-text);
}

.dropdown__link {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.2821vw;
  line-height: 1.2;
  color: var(--color-text);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.dropdown__link:hover {
  opacity: 0.6;
}

/* Red accent line in dropdown */
.dropdown__accent {
  position: absolute;
  top: 7.0513vw;
  left: 25.4808vw;
  width: 7.1314vw;
  height: 0.2404vw;
  background-color: var(--color-red-cta);
  border-radius: 0.1603vw;
}

/* === HERO SECTION === */
.hero {
  padding: 0 var(--hero-outer-px);
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--hero-inner-py) 0;
  background-color: var(--color-bg-hero);
  border-radius: var(--card-radius);
  overflow: hidden;
}

/* Background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg-ellipse {
  position: absolute;
  top: 11.5385vw;
  left: 50%;
  transform: translateX(calc(-50% - 0.2404vw)) scaleY(-1);
  width: 51.2821vw;
  height: 36.6987vw;
}

.hero__bg-ellipse img {
  position: absolute;
  top: -62.53%;
  left: -44.75%;
  width: 189.5%;
  height: 225.07%;
}

.hero__bg-texture {
  position: absolute;
  inset: -0.8013vw;
  background-image: url('../assets/images/hero-texture.png');
  background-size: 10.7372vw 10.7372vw;
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

/* Content area */
.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--hero-content-width);
  max-width: 100%;
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--hero-content-gap);
  padding-top: var(--hero-content-pt);
  padding-bottom: var(--hero-content-pb);
  width: 100%;
}

.hero__heading {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--hero-heading-size);
  line-height: var(--hero-heading-lh);
  letter-spacing: var(--hero-heading-ls);
  text-align: center;
  color: var(--color-text);
  width: var(--hero-heading-width);
  max-width: 100%;
}

.hero__subtitle {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: var(--hero-subtitle-size);
  line-height: var(--hero-subtitle-lh);
  letter-spacing: var(--hero-subtitle-ls);
  text-align: center;
  color: var(--color-text-muted);
  width: var(--hero-subtitle-width);
  max-width: 100%;
}

/* Image area (car + cards overlay) */
.hero__image-area {
  position: relative;
  width: var(--hero-content-width);
  max-width: 100%;
  height: 48.1571vw;
}

.hero__car-wrap {
  position: absolute;
  top: 4.0865vw;
  left: 0;
  width: 100%;
  height: 44.0705vw;
}

.hero__car-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service cards stack */
.hero__services {
  position: absolute;
  top: 4.8878vw;
  left: 0.8013vw;
  display: flex;
  flex-direction: column;
  gap: var(--card-stack-gap);
  width: var(--card-stack-width);
  z-index: 2;
}

.hero__service-card {
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
  align-items: center;
  padding: var(--card-padding);
  border: 0.0801vw solid var(--color-card-border);
  border-radius: var(--card-radius);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__service-card:hover {
  box-shadow: 0 0.641vw 1.9231vw rgba(0, 0, 0, 0.1);
}

.hero__service-card--loa {
  background-image: linear-gradient(-65.8deg, #d0e6f9 4.55%, #ffffff 126.4%);
}

.hero__service-card--lld {
  background-image: linear-gradient(-70.97deg, #f5f1d4 6.33%, #ffffff 124.19%);
  box-shadow:
    15.625vw 24.0385vw 8.0128vw 0 rgba(0, 0, 0, 0),
    10.016vw 15.3846vw 7.3718vw 0 rgba(0, 0, 0, 0.01),
    5.609vw 8.6538vw 6.1699vw 0 rgba(0, 0, 0, 0.05),
    2.484vw 3.8462vw 4.5673vw 0 rgba(0, 0, 0, 0.09),
    0.641vw 0.9615vw 2.484vw 0 rgba(0, 0, 0, 0.1);
}

.hero__service-card--credit {
  background-image: linear-gradient(-67.85deg, #f8dde0 20.4%, #ffffff 121.41%);
}

.hero__service-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.641vw;
  width: 100%;
}

.hero__service-card-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: var(--hero-card-title-size);
  line-height: 1.2;
  letter-spacing: var(--hero-card-title-ls);
  text-transform: uppercase;
  color: var(--color-text);
}

.hero__service-card-desc {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: var(--hero-card-desc-size);
  line-height: 1.2;
  letter-spacing: var(--hero-card-desc-ls);
  color: var(--color-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__service-card-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.hero__service-card-arrow svg {
  width: var(--card-icon-size);
  height: var(--card-icon-size);
}

/* Entretien card */
.hero__entretien {
  position: absolute;
  bottom: 0.8013vw;
  right: 0.8013vw;
  display: flex;
  flex-direction: column;
  gap: 0.641vw;
  align-items: flex-end;
  padding: var(--entretien-padding);
  background-color: var(--color-white);
  border: 0.0801vw solid rgba(0, 0, 0, 0.1);
  border-radius: var(--card-radius);
  z-index: 2;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__entretien:hover {
  box-shadow: 0 0.641vw 1.9231vw rgba(0, 0, 0, 0.1);
}

.hero__entretien-img {
  width: var(--entretien-img-width);
  height: var(--entretien-img-height);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.hero__entretien-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero__entretien-body {
  display: flex;
  flex-direction: column;
  gap: 0.641vw;
  width: var(--entretien-img-width);
}

.hero__entretien-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--hero-card-title-size);
  line-height: 1.2;
  letter-spacing: var(--hero-card-title-ls);
  color: var(--color-text);
  width: 19.3109vw;
}

.hero__entretien-desc {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.2821vw;
  line-height: 1.2;
  letter-spacing: -0.0128vw;
  color: var(--color-text-muted);
  width: 20.6731vw;
}

.hero__entretien-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--cta-height);
  padding: 1.2821vw;
  background-color: var(--color-red-cta);
  border: 0.0801vw solid rgba(255, 255, 255, 0.1);
  border-radius: var(--cta-radius);
  backdrop-filter: blur(0.641vw);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.2821vw;
  line-height: 1.9231vw;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.hero__entretien-cta:hover {
  background-color: #e0001e;
}

/* === ABOUT SECTION === */
.about {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 43.75vw;
  gap: 0.641vw;
  padding: 0 0.641vw;
}

/* Left block — text (spans 2 columns) */
.about__text-block {
  grid-column: 1 / span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5.1282vw;
  border-radius: 0.641vw;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%),
    linear-gradient(180deg, #d0e6f9 0%, #f5f1d4 100%);
}

.about__text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.about__paragraph {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.9231vw;
  line-height: 1.5;
  color: var(--color-text);
}

.about__paragraph + .about__paragraph {
  margin-top: 1.6026vw;
}

.about__paragraph strong {
  font-weight: 600;
}

/* Right block — values (dark) */
.about__values-block {
  grid-column: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5.1749vw 4.3736vw;
  background-color: var(--color-dark-grey-tfs);
  border: 0.0467vw solid #ababab;
  border-radius: 0.641vw;
  overflow: hidden;
}

.about__values-deco {
  position: absolute;
  top: -75.6795vw;
  left: -115.1106vw;
  width: 170.9179vw;
  height: 110.5347vw;
  pointer-events: none;
}

.about__values-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.4423vw;
  width: 100%;
  height: 100%;
}

/* Single value item */
.about__value {
  display: flex;
  flex-direction: column;
  gap: 0.641vw;
  width: 100%;
}

.about__value--primary {
  height: 21.7147vw;
}

.about__value--secondary {
  flex: 1 0 0;
  min-height: 0;
}

.about__value-number {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.1218vw;
  line-height: 1.6026vw;
  letter-spacing: 0.044vw;
  color: var(--color-red-cta);
}

.about__value-heading {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.6026vw;
  line-height: 2.2436vw;
  letter-spacing: -0.036vw;
  color: var(--color-white);
}

.about__value-desc {
  flex: 1 0 0;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.1218vw;
  line-height: 1.8229vw;
  letter-spacing: -0.0121vw;
  color: #99a1af;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about__value-desc p + p {
  margin-top: 1.6026vw;
}

/* === BANNER SECTION === */
.banner {
  padding: 0 0.641vw;
}

.banner__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 40.5449vw;
  padding: 16.4263vw 0;
  border-radius: 0.641vw;
  overflow: hidden;
  background-color: #1a1a1a;
}

.banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.banner__heading {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 3.3654vw;
  line-height: 3.8462vw;
  text-align: center;
  color: var(--color-white);
  width: 65.4647vw;
  max-width: calc(100% - 3.2051vw);
}

.banner__heading strong {
  font-weight: 600;
}

/* === FINANCING SECTION === */
.financing {
  padding: 0 0.641vw;
}

.financing__inner {
  display: flex;
  flex-direction: column;
  gap: 2.4038vw;
  padding: var(--financing-py) 0;
  background-color: var(--color-white);
  border-radius: 0.641vw;
  overflow: hidden;
}

/* Header row — heading + intro */
.financing__header {
  display: flex;
  gap: var(--financing-header-gap);
  height: var(--financing-header-height);
  padding: var(--financing-header-py) var(--financing-header-px);
  align-items: flex-start;
}

.financing__heading {
  flex: 1 0 0;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: var(--financing-heading-size);
  line-height: var(--financing-heading-lh);
  color: var(--color-text);
}

.financing__heading strong {
  font-weight: 600;
}

.financing__intro {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
}

.financing__intro-lead {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.6026vw;
  line-height: 2.2436vw;
  color: var(--color-text-80);
  margin-bottom: 1.6026vw;
}

.financing__intro-body {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.3622vw;
  line-height: 2.2436vw;
  color: var(--color-text-80);
}

/* Body row — sidebar + panel */
.financing__body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

/* Left sidebar with options */
.financing__sidebar {
  display: flex;
  gap: var(--financing-sidebar-gap);
  height: var(--financing-panel-height);
  padding-top: var(--financing-sidebar-pt);
  padding-bottom: var(--financing-sidebar-pb);
  padding-left: var(--financing-sidebar-pl);
  align-items: flex-start;
  flex-shrink: 1;
  min-width: 0;
}

.financing__indicator {
  width: 0.1603vw;
  height: 100%;
  flex-shrink: 0;
}

.financing__options {
  display: flex;
  flex-direction: column;
  gap: var(--financing-option-gap);
  align-items: flex-start;
}

.financing__option {
  display: flex;
  flex-direction: column;
  gap: 0.9615vw;
  cursor: pointer;
  transition: transform 0.3s ease;
  user-select: none;
}

.financing__option-header {
  display: flex;
  flex-direction: column;
  gap: 0.4006vw;
}

.financing__option-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--financing-option-title-size);
  line-height: var(--financing-option-title-lh);
  letter-spacing: var(--financing-option-title-ls);
  color: var(--color-text);
  width: 28.4455vw;
  max-width: 100%;
  transition: color 0.3s ease;
}

.financing__option-title--gradient {
  background-image: linear-gradient(184.67deg, #d0e6f9 28.58%, #ff0022 106.9%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.financing__option-subtitle {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.4423vw;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text);
}

.financing__option-desc {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.2821vw;
  line-height: 1.7628vw;
  letter-spacing: -0.0256vw;
  color: var(--color-text-muted);
  width: 28.4455vw;
  max-width: 100%;
}

/* Right panel */
.financing__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8013vw;
  width: var(--financing-panel-width);
  max-width: 100%;
  height: var(--financing-panel-height);
  padding: 6.4904vw 2.1635vw;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}

/* Decorative background elements */
.financing__panel-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.financing__panel-ellipse {
  position: absolute;
  bottom: -4.8077vw;
  left: 50%;
  transform: translateX(calc(-50% - 11.4583vw)) scaleY(-1) rotate(-20deg);
  width: 37.9006vw;
  height: 28.9263vw;
  opacity: 0.4;
}

.financing__panel-ellipse img {
  width: 100%;
  height: 100%;
}

.financing__panel-logo {
  position: absolute;
  bottom: 4.4071vw;
  left: 4.6474vw;
  width: 2.6442vw;
  height: 1.7628vw;
  opacity: 0.3;
}

.financing__panel-logo img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.financing__panel-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.financing__panel-shape img {
  width: 100%;
  height: 100%;
}

/* White card */
.financing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--financing-card-width);
  height: var(--financing-card-height);
  padding: var(--financing-card-padding);
  background-color: var(--color-white);
  border-radius: var(--financing-card-radius);
  box-shadow: 1.6026vw 1.9231vw 6.7308vw rgba(0, 0, 0, 0.15);
}

.financing__card-content {
  display: flex;
  flex-direction: column;
  gap: 4.5673vw;
  width: 100%;
  height: 100%;
}

.financing__card-text p {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.2821vw;
  line-height: 1.5;
  letter-spacing: -0.0128vw;
  color: var(--color-text);
}

.financing__card-text p + p {
  margin-top: 1.6026vw;
}

/* Benefit cards */
.financing__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8013vw;
  flex: 1 0 0;
  box-shadow: 0.8013vw 1.1218vw 6.7308vw rgba(161, 165, 172, 0.05);
}

.financing__benefit {
  display: flex;
  flex-direction: column;
  width: var(--financing-benefit-width);
  height: var(--financing-benefit-height);
  padding: var(--financing-benefit-padding);
  border-radius: var(--financing-card-radius);
  background-image:
    linear-gradient(151.49deg, rgba(208, 230, 249, 0) 0%, rgba(208, 230, 249, 0.5) 79.68%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
}

.financing__benefit-inner {
  display: flex;
  flex: 1 0 0;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.financing__benefit-text-wrap {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  height: 100%;
}

.financing__benefit-text {
  display: flex;
  flex: 1 0 0;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.financing__benefit-text p {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1218vw;
  line-height: 1.4;
  letter-spacing: -0.0112vw;
  color: var(--color-text);
}

.financing__benefit-dot {
  width: 0.8013vw;
  height: 0.8013vw;
  border-radius: 3.2051vw;
  background-color: var(--color-white);
  flex-shrink: 0;
}

/* === UNIVERSE SECTION === */
.universe {
  padding: 0 0.641vw;
}

.universe__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.641vw;
  width: 100%;
}

.universe__card {
  position: relative;
  flex: 1 0 0;
  height: 51.7628vw;
  border-radius: 0.641vw;
  overflow: hidden;
}

.universe__card--particuliers {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%),
    linear-gradient(180deg, #d0e6f9 0%, #f5f1d4 100%);
}

.universe__card--professionnels {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%),
    linear-gradient(180deg, #f8dde0 0%, #d0e6f9 100%);
}

/* Vertical accent line */
.universe__line {
  position: absolute;
  left: 3.2051vw;
  top: 4.6474vw;
  width: 0.0801vw;
  height: 10.1763vw;
}

.universe__line--blue {
  background-color: #d0e6f9;
}

.universe__line--pink {
  background-color: #f8dde0;
}

/* Text content */
.universe__content {
  position: absolute;
  left: 7.1314vw;
  top: 4.6474vw;
  display: flex;
  flex-direction: column;
  gap: 0.641vw;
  width: 32.1314vw;
  max-width: calc(100% - 9.6154vw);
}

.universe__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.8462vw;
  height: 3.8462vw;
  border-radius: 0.3205vw;
  flex-shrink: 0;
}

.universe__icon--blue {
  background-color: rgba(208, 230, 249, 0.4);
}

.universe__icon--pink {
  background-color: rgba(248, 221, 224, 0.4);
}

.universe__icon svg {
  width: 1.9231vw;
  height: 1.9231vw;
}

.universe__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.9231vw;
  line-height: normal;
  color: var(--color-text);
}

.universe__desc {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.6026vw;
  line-height: normal;
  color: var(--color-text);
}

/* Photo area */
.universe__photo {
  position: absolute;
  left: 3.2051vw;
  right: 2.7244vw;
  top: 22.9968vw;
  bottom: 3.2051vw;
  border-radius: 0.641vw;
  overflow: hidden;
}

.universe__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA button overlay */
.universe__cta {
  position: absolute;
  z-index: 1;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.8462vw;
  padding: 0.9615vw 1.9231vw;
  background-color: rgba(40, 40, 48, 0.8);
  border: 0.0801vw solid rgba(255, 255, 255, 0.1);
  border-radius: 4.0064vw;
  backdrop-filter: blur(0.641vw);
  -webkit-backdrop-filter: blur(0.641vw);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.2821vw;
  line-height: 1.9231vw;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.universe__cta:hover {
  background-color: rgba(40, 40, 48, 0.95);
}

/* === SERVICES SECTION === */
.services {
  padding: 0 0.641vw;
}

.services__inner {
  display: flex;
  flex-direction: column;
  gap: 4.0064vw;
  align-items: center;
  padding: 4.8077vw 0;
  background-color: var(--color-dark-grey-tfs);
  border-radius: 0.641vw;
}

/* Header */
.services__header {
  display: flex;
  gap: 4.8077vw;
  height: 12.6603vw;
  padding: 0 5.609vw;
  align-items: flex-start;
  width: 100%;
}

.services__heading {
  flex: 1 0 0;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 3.2051vw;
  line-height: 1.1;
  color: #f5f5f7;
}

.services__intro {
  flex: 1 0 0;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.4423vw;
  line-height: 2.2436vw;
  color: rgba(255, 255, 255, 0.7);
}

/* Cards container */
.services__cards {
  display: flex;
  flex-direction: column;
  gap: 1.6026vw;
  padding: 0 4.8077vw;
  width: 100%;
}

/* Single offer card */
.services__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  min-height: 32.2115vw;
  border-radius: 0.641vw;
  overflow: hidden;
  border: 0.0801vw solid rgba(229, 231, 235, 0.4);
  background-color: var(--color-white);
}

.services__card--tall {
  min-height: 33.8141vw;
}

/* Text side */
.services__card-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.4038vw;
  background-image: linear-gradient(235.66deg, #f8dde0 12.47%, #d0e6f9 49.25%, #f5f1d4 86.03%);
}

.services__card-heading {
  display: flex;
  flex-direction: column;
  gap: 0.1603vw;
}

.services__card-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 2.2436vw;
  line-height: 2.9167vw;
  color: var(--color-text);
}

.services__card-subtitle {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.6026vw;
  line-height: 1.2;
  color: var(--color-text);
}

.services__card-body {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.4423vw;
  line-height: 2.0513vw;
  color: #4a5565;
}

.services__card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  height: 4.0064vw;
  padding: 0.9615vw 1.9231vw;
  background-color: var(--color-dark-grey-tfs);
  border: 0.0801vw solid rgba(255, 255, 255, 0.1);
  border-radius: 4.0064vw;
  backdrop-filter: blur(0.641vw);
  -webkit-backdrop-filter: blur(0.641vw);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.2821vw;
  line-height: 1.9231vw;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.services__card-cta:hover {
  background-color: #3a3a44;
}

/* Image side */
.services__card-image {
  position: relative;
  overflow: hidden;
}

.services__card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reversed layout (image left, text right) */
.services__card--reversed .services__card-text {
  order: 2;
}

.services__card--reversed .services__card-image {
  order: 1;
}

/* === EXPERIENCE SECTION === */
.experience {
  padding: 0 0.641vw;
}

.experience__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6.0096vw 0;
  border-radius: 0.641vw;
  overflow: hidden;
}

/* Decorative ellipse top-left */
.experience__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 37.9006vw;
  height: 28.9263vw;
  transform: scaleY(-1) rotate(-20deg);
  pointer-events: none;
  opacity: 0.4;
}

.experience__deco img {
  width: 100%;
  height: 100%;
}

/* Content wrapper */
.experience__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7.2115vw;
  width: 95.1923vw;
  max-width: 100%;
  padding: 0 1.6026vw;
}

/* Header */
.experience__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.0032vw;
  width: 100%;
}

.experience__logo {
  width: 19.8718vw;
  height: 3.125vw;
}

.experience__logo img {
  width: 100%;
  height: auto;
}

.experience__text {
  text-align: center;
  padding: 0 9.6154vw;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.7628vw;
  line-height: 1.5;
  color: var(--color-text);
}

.experience__text strong {
  font-weight: 600;
  display: block;
}

/* Stats grid */
.experience__stats {
  display: flex;
  flex-direction: column;
  gap: 0.641vw;
  width: 100%;
}

/* Top row — stat cards */
.experience__stats-row {
  display: flex;
  gap: 0.641vw;
  width: 100%;
}

/* Dark stat card (20 ans) */
.experience__stat--dark {
  flex: 1 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8013vw;
  align-items: flex-start;
  justify-content: center;
  height: 19.6314vw;
  padding: 2.8846vw 2.5641vw;
  border-radius: 0.641vw;
  overflow: clip;
  background-image: linear-gradient(248deg, #282830 35.41%, #101013 105.34%);
}

.experience__stat-content {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6026vw;
  width: 28.6058vw;
  min-height: 0;
}

.experience__stat-number {
  display: flex;
  gap: 0.9615vw;
  align-items: flex-end;
  width: 100%;
}

.experience__stat-big {
  font-family: var(--font-primary);
  font-weight: 200;
  font-size: 9.6154vw;
  line-height: 1;
  letter-spacing: -0.5769vw;
  color: var(--color-white);
}

.experience__stat-unit {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 2.4038vw;
  line-height: 1.2;
  letter-spacing: -0.0962vw;
  color: var(--color-white);
}

.experience__stat-label {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.6026vw;
  line-height: 1.5;
  letter-spacing: -0.0641vw;
  color: var(--color-white);
  width: 100%;
}

/* Decorative globe inside dark card */
.experience__stat-globe {
  position: absolute;
  top: -31.0897vw;
  left: 21.1538vw;
  width: 78.3654vw;
  height: 50.7212vw;
  pointer-events: none;
}

.experience__stat-globe img {
  width: 100%;
  height: 100%;
}

/* Blue stat card (39 Pays) */
.experience__stat--blue {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 20.5929vw;
  height: 19.6314vw;
  padding: 2.8846vw 2.5641vw;
  border-radius: 0.641vw;
  flex-shrink: 0;
  background-image: linear-gradient(210.76deg, #d0e6f9 19.22%, #ffffff 132.71%);
}

.experience__stat--blue .experience__stat-top {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.9231vw;
  line-height: 1.2;
  letter-spacing: -0.0769vw;
  color: var(--color-text);
  width: 100%;
}

.experience__stat--blue .experience__stat-bottom {
  display: flex;
  align-items: flex-end;
  gap: 0.641vw;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0;
  letter-spacing: -0.3846vw;
  color: var(--color-text);
  width: 100%;
}

.experience__stat--blue .experience__stat-bottom .stat-num {
  font-size: 6.4103vw;
  line-height: 1;
}

.experience__stat--blue .experience__stat-bottom .stat-label {
  font-size: 2.4038vw;
  line-height: 1.2;
  letter-spacing: -0.0481vw;
}

/* Yellow stat card (28 millions) */
.experience__stat--yellow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 28.8462vw;
  height: 19.6314vw;
  padding: 2.8846vw 2.5641vw;
  border-radius: 0.641vw;
  flex-shrink: 0;
  background-image: linear-gradient(218.59deg, #f5f1d4 26.99%, #ffffff 121.39%);
}

.experience__stat--yellow .experience__stat-top {
  display: flex;
  align-items: flex-end;
  gap: 0.641vw;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0;
  letter-spacing: -0.3846vw;
  color: var(--color-text);
  width: 100%;
}

.experience__stat--yellow .experience__stat-top .stat-num {
  font-size: 6.4103vw;
  line-height: 1;
}

.experience__stat--yellow .experience__stat-top .stat-label {
  font-size: 2.4038vw;
  line-height: 1.2;
  letter-spacing: -0.0481vw;
}

.experience__stat--yellow .experience__stat-bottom {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.6026vw;
  line-height: 1.2;
  letter-spacing: -0.0641vw;
  color: var(--color-text);
  width: 100%;
}

/* Bottom row — value pills */
.experience__values-row {
  display: flex;
  gap: 0.641vw;
  width: 100%;
}

.experience__value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6.4103vw;
  padding: 0.8013vw 2.484vw;
  background-color: var(--color-white);
  border: 1px solid rgba(40, 40, 48, 0.1);
  border-radius: 0.641vw;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.2821vw;
  line-height: normal;
  color: var(--color-text);
}

.experience__value--1 { width: 26.2019vw; flex-shrink: 0; }
.experience__value--2 { flex: 1 0 0; min-width: 0; }
.experience__value--3 { width: 34.4551vw; flex-shrink: 0; }

.experience__value strong {
  font-weight: 600;
}

/* === PREFOOTER SECTION === */
.prefooter {
  padding: 0 0.641vw 0.641vw;
}

.prefooter__row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.641vw;
  width: 100%;
}

/* Left card — blue background */
.prefooter__main {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 56.9712vw;
  background-color: #d0e6f9;
  border-radius: 0.641vw;
  overflow: hidden;
  isolation: isolate;
}

.prefooter__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 0 0;
  padding: 5.609vw 8.0128vw;
  margin-bottom: -8.4135vw;
  z-index: 2;
}

.prefooter__content-inner {
  display: flex;
  flex-direction: column;
  gap: 4.0064vw;
  width: 100%;
}

/* Heading area */
.prefooter__heading-group {
  display: flex;
  flex-direction: column;
  gap: 2.7244vw;
  width: 100%;
}

.prefooter__heading {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 2.7244vw;
  line-height: 1.2;
  color: var(--color-text);
}

.prefooter__heading strong {
  font-weight: 600;
}

.prefooter__desc {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.4423vw;
  line-height: normal;
  color: var(--color-text);
}

/* Buttons */
.prefooter__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8013vw;
  align-items: flex-start;
}

.prefooter__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8013vw;
  height: 3.8462vw;
  padding: 0.9615vw 1.9231vw;
  border-radius: 4.0064vw;
  border: 0.0801vw solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.641vw);
  -webkit-backdrop-filter: blur(0.641vw);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.2821vw;
  line-height: 1.9231vw;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.prefooter__btn--light {
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--color-text);
}

.prefooter__btn--light:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.prefooter__btn--dark {
  background-color: rgba(40, 40, 48, 0.8);
  color: var(--color-white);
}

.prefooter__btn--dark:hover {
  background-color: rgba(40, 40, 48, 0.95);
}

.prefooter__btn-icon {
  width: 1.9231vw;
  height: 1.9231vw;
  flex-shrink: 0;
}

.prefooter__btn-icon svg {
  width: 100%;
  height: 100%;
}

/* Car image at bottom */
.prefooter__image {
  position: relative;
  width: 100%;
  height: 35.4455vw;
  margin-bottom: -8.4135vw;
  z-index: 1;
  flex-shrink: 0;
}

.prefooter__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right card — photo with overlay */
.prefooter__side {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 56.9712vw;
  border-radius: 0.641vw;
  overflow: hidden;
}

.prefooter__side-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.prefooter__side-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.641vw;
}

.prefooter__side-overlay {
  position: absolute;
  inset: 0;
  border-radius: 0.641vw;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 28.261%, rgba(0, 0, 0, 0.8));
}

.prefooter__side-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 28.5256vw;
  padding: 2.5641vw;
}

.prefooter__side-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20.9936vw;
}

.prefooter__side-text {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.6026vw;
  line-height: 1.4;
  color: var(--color-white);
}

.prefooter__side-text strong {
  font-weight: 600;
  display: block;
}

.prefooter__side-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 1.6026vw;
  height: 3.8462vw;
  padding: 0.9615vw 1.9231vw;
  background-color: var(--color-red-cta);
  border: 0.0801vw solid rgba(255, 255, 255, 0.1);
  border-radius: 4.0064vw;
  backdrop-filter: blur(0.641vw);
  -webkit-backdrop-filter: blur(0.641vw);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.2821vw;
  line-height: 1.9231vw;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.prefooter__side-cta:hover {
  background-color: #e0001e;
}

.prefooter__side-cta-icon {
  width: 1.9231vw;
  height: 1.9231vw;
  flex-shrink: 0;
}

.prefooter__side-cta-icon svg {
  width: 100%;
  height: 100%;
}

/* === SEARCH OVERLAY === */
.search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  pointer-events: none;
  visibility: hidden;
}

.search.search--open {
  pointer-events: auto;
  visibility: visible;
}

.search__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(40, 40, 48, 0.9);
  opacity: 0;
}

.search__panel {
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-radius: 0 0 var(--card-radius) var(--card-radius);
  overflow: hidden;
  transform: translateY(-100%);
  border-top: 0.0801vw solid rgba(40, 40, 48, 0.12);
}

/* Search top bar */
.search__bar {
  display: flex;
  align-items: center;
  gap: 1.6026vw;
  padding: 1.9231vw var(--header-px);
}

.search__input-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
  gap: 1.1218vw;
}

.search__input-icon {
  width: 1.6026vw;
  height: 1.6026vw;
  flex-shrink: 0;
  color: var(--color-text);
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

.search__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: var(--text-nav);
  line-height: var(--text-nav-lh);
  letter-spacing: var(--text-nav-ls);
  color: var(--color-text);
  background: transparent;
  opacity: 0;
}

.search__input::placeholder {
  color: rgba(40, 40, 48, 0.35);
}

.search__input-line {
  position: absolute;
  bottom: -0.8013vw;
  left: 0;
  width: 0;
  height: 0.0801vw;
  background: var(--color-border);
  border-radius: 0.0801vw;
}

.search__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8846vw;
  height: 2.8846vw;
  border-radius: var(--radius-circle);
  background: transparent;
  margin-right: calc(2.8846vw + var(--action-gap));
  border: 0.0801vw solid var(--color-border);
  cursor: pointer;
  color: var(--color-text);
  transition: background-color 0.2s ease, border-color 0.2s ease;
  opacity: 0;
  transform: rotate(-90deg);
}

.search__close:hover {
  background-color: rgba(40, 40, 48, 0.06);
  border-color: var(--color-text);
}

.search__close svg {
  width: var(--icon-sm);
  height: var(--icon-sm);
}

/* Search body — below divider */
.search__body {
  padding: 1.9231vw var(--header-px) 3.5256vw;
  display: flex;
  flex-direction: column;
  gap: 2.5641vw;
}

/* Suggestions */
.search__suggestions {
  display: flex;
  flex-direction: column;
  gap: 1.2821vw;
  opacity: 0;
  transform: translateY(1.6026vw);
}

.search__label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.8814vw;
  line-height: 1.2821vw;
  letter-spacing: 0.0962vw;
  text-transform: uppercase;
  color: rgba(40, 40, 48, 0.35);
}

.search__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8013vw;
}

.search__tag {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.8013vw 1.2821vw;
  border-radius: var(--card-radius);
  border: none;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1.1218vw;
  line-height: 1.6026vw;
  color: var(--color-text);
  text-decoration: none;
  background: rgba(40, 40, 48, 0.03);
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, color 0.25s ease, gap 0.25s ease;
  opacity: 0;
  transform: translateY(0.9615vw);
}

.search__tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--color-dark-grey-tfs);
  border-radius: var(--card-radius);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.search__tag span {
  position: relative;
  z-index: 1;
}

.search__tag-arrow {
  position: relative;
  z-index: 1;
  width: 0;
  height: 1.1218vw;
  overflow: hidden;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.search__tag-arrow svg {
  width: 1.1218vw;
  height: 1.1218vw;
  color: var(--color-white);
}

.search__tag:hover {
  background: rgba(40, 40, 48, 0.03);
  color: var(--color-white);
  gap: 0.641vw;
}

.search__tag:hover::before {
  width: 100%;
}

.search__tag:hover .search__tag-arrow {
  width: 1.1218vw;
}

/* Quick links */
.search__quick-links {
  display: flex;
  flex-direction: column;
  gap: 1.1218vw;
  opacity: 0;
  transform: translateY(1.6026vw);
}

.search__links-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2821vw;
  border-top: 0.0801vw solid var(--color-card-border);
}

.search__quick-card {
  display: flex;
  align-items: center;
  gap: 1.6026vw;
  padding: 1.6026vw 0;
  border-bottom: 0.0801vw solid var(--color-card-border);
  text-decoration: none;
  position: relative;
  opacity: 0;
  transform: translateY(1.2821vw);
}

.search__quick-card::before {
  content: '';
  position: absolute;
  left: -1.2821vw;
  right: -1.2821vw;
  top: -0.0801vw;
  bottom: -0.0801vw;
  background: var(--color-dark-grey-tfs);
  border-radius: var(--card-radius);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.search__quick-card:hover::before {
  transform: scaleX(1);
}

.search__quick-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.8814vw;
  line-height: 1.2821vw;
  letter-spacing: 0.0401vw;
  color: rgba(40, 40, 48, 0.2);
  flex-shrink: 0;
  width: 1.9231vw;
  transition: color 0.3s ease;
}

.search__quick-card:hover .search__quick-num {
  color: rgba(255, 255, 255, 0.35);
}

.search__quick-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1603vw;
  flex: 1;
  min-width: 0;
}

.search__quick-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1218vw;
  line-height: 1.6026vw;
  letter-spacing: -0.0112vw;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.search__quick-desc {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.9615vw;
  line-height: 1.2821vw;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.search__quick-card:hover .search__quick-title {
  color: var(--color-white);
}

.search__quick-card:hover .search__quick-desc {
  color: rgba(255, 255, 255, 0.5);
}

.search__quick-arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 1.2821vw;
  overflow: hidden;
  flex-shrink: 0;
  color: var(--color-white);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search__quick-arrow svg {
  width: 1.2821vw;
  height: 1.2821vw;
  flex-shrink: 0;
}

.search__quick-card:hover .search__quick-arrow {
  width: 1.2821vw;
}

/* Search button active state */
.header__icon-btn--search-active {
  background-color: var(--color-dark-grey-tfs);
}

.header__icon-btn--search-active svg path,
.header__icon-btn--search-active svg circle {
  stroke: var(--color-white);
}

/* === RESPONSIVE === */

/* --- Tablet (769px – 1024px) --- */
@media (max-width: 1024px) {
  /* Header */
  .header {
    padding-left: 32px;
    padding-right: 32px;
  }

  .header__left {
    gap: 40px;
  }

  .header__logo {
    width: 150px;
    height: auto;
  }

  .header__logo img {
    width: 100%;
    height: auto;
  }

  .header__nav {
    display: none;
  }

  .header__contact {
    display: none;
  }

  .header__btn--outline {
    display: none;
  }

  .dropdown {
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* Search */
  .search__bar {
    padding: 0 32px;
  }

  .search__body {
    padding: 20px 32px 36px;
  }

  /* Intro */
  .intro__atmosphere {
    width: 520px;
    height: 520px;
  }

  .intro__ring-outer {
    width: 420px;
    height: 420px;
  }

  .intro__ring {
    width: 420px;
    height: 420px;
  }

  .intro__ring-outer {
    width: 490px;
    height: 490px;
  }

  .intro__logo {
    width: 220px;
  }

  .intro__tagline {
    font-size: 10px;
    letter-spacing: 2px;
    max-width: 320px;
  }

  .intro__meta {
    bottom: 32px;
    left: 32px;
  }

  .intro__counter {
    bottom: 32px;
    right: 32px;
  }

  /* Hero */
  .hero {
    padding: 0 6px;
  }

  .hero__inner {
    padding: 48px 0;
    border-radius: 12px;
  }

  .hero__text {
    gap: 24px;
    padding-top: 32px;
    padding-bottom: 20px;
  }

  .hero__heading {
    font-size: 38px;
    line-height: 1.15;
    width: 600px;
    max-width: 100%;
    padding: 0 24px;
  }

  .hero__subtitle {
    font-size: 16px;
    line-height: 1.5;
    width: 100%;
    padding: 0 24px;
  }

  .hero__image-area {
    height: 400px;
  }

  .hero__car-wrap {
    height: 360px;
  }

  .hero__services {
    width: 240px;
    top: 24px;
    left: 8px;
  }

  .hero__service-card {
    padding: 14px;
    gap: 10px;
  }

  .hero__service-card-title {
    font-size: 16px;
  }

  .hero__service-card-desc {
    font-size: 13px;
  }

  .hero__service-card-arrow svg {
    width: 18px;
    height: 18px;
  }

  .hero__entretien {
    padding: 10px;
  }

  .hero__entretien-img {
    width: 180px;
    height: 130px;
  }

  .hero__entretien-body {
    width: 180px;
    gap: 6px;
  }

  .hero__entretien-title {
    font-size: 15px;
    width: 100%;
  }

  .hero__entretien-desc {
    font-size: 13px;
    width: 100%;
  }

  .hero__entretien-cta {
    height: 32px;
    padding: 0 14px;
    font-size: 14px;
  }

  /* Banner */
  .banner__heading {
    font-size: 36px;
    line-height: 42px;
    width: 650px;
    max-width: calc(100% - 40px);
  }

  /* About */
  .about {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .about__text-block {
    grid-column: 1;
    padding: 48px;
  }

  .about__values-block {
    grid-column: 1;
    padding: 48px 40px;
  }

  .about__value--primary {
    height: auto;
  }

  .about__paragraph {
    font-size: 20px;
  }

  /* Financing */
  .financing__header {
    flex-direction: column;
    height: auto;
    gap: 24px;
  }

  .financing__body {
    flex-direction: column;
  }

  .financing__sidebar {
    height: auto;
    padding: 40px;
    width: 100%;
  }

  .financing__panel {
    width: 100%;
    height: auto;
    padding: 40px 20px;
  }

  .financing__card {
    width: 100%;
    height: auto;
  }

  .financing__benefit {
    flex: 1 0 0;
    min-width: 180px;
  }

  .financing__option-title {
    width: auto;
  }

  .financing__option-desc {
    width: auto;
  }

  /* Universe */
  .universe__row {
    flex-direction: column;
  }

  .universe__card {
    width: 100%;
    height: 580px;
  }

  .universe__photo {
    right: 40px;
  }

  /* Services */
  .services__header {
    flex-direction: column;
    height: auto;
    gap: 24px;
    padding: 0 40px;
  }

  .services__cards {
    padding: 0 40px;
  }

  .services__heading {
    font-size: 32px;
  }

  /* Experience */
  .experience__content {
    gap: 50px;
  }

  .experience__text {
    padding: 0 40px;
    font-size: 20px;
  }

  .experience__stats-row {
    flex-wrap: wrap;
  }

  .experience__stat--dark {
    flex: 1 0 100%;
  }

  .experience__stat-content {
    width: 100%;
  }

  .experience__stat--blue {
    flex: 1 0 0;
    width: auto;
  }

  .experience__stat--yellow {
    flex: 1 0 0;
    width: auto;
  }

  .experience__values-row {
    flex-wrap: wrap;
  }

  .experience__value--1,
  .experience__value--3 {
    width: auto;
    flex: 1 0 calc(50% - 4px);
  }

  .experience__value--2 {
    flex: 1 0 100%;
  }

  /* Prefooter */
  .prefooter__row {
    grid-template-columns: 1fr;
  }

  .prefooter__main {
    height: auto;
  }

  .prefooter__content {
    padding: 50px 40px;
    margin-bottom: 0;
  }

  .prefooter__image {
    margin-bottom: 0;
    height: 300px;
  }

  .prefooter__side {
    height: 500px;
  }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {
  /* Main layout */
  main {
    gap: 6px;
  }

  /* Header */
  .header {
    padding-left: 16px;
    padding-right: 16px;
    height: 60px;
  }

  .header__logo {
    width: 130px;
    height: auto;
    flex-shrink: 1;
  }

  .header__logo img {
    width: 100%;
    height: auto;
  }

  .header__btn--filled {
    display: none;
  }

  .header__actions {
    gap: 8px;
  }

  .header__icon-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .header__icon-btn svg {
    width: 14px;
    height: 14px;
  }

  /* Intro */
  .intro__atmosphere {
    width: 400px;
    height: 400px;
  }

  .intro__ring-outer {
    width: 330px;
    height: 380px;
  }

  .intro__ring {
    width: 320px;
    height: 320px;
  }

  .intro__ring-outer {
    width: 380px;
    height: 380px;
  }

  .intro__logo {
    width: 180px;
  }

  .intro__line--top {
    margin-bottom: 24px;
  }

  .intro__line--bottom {
    margin-top: 24px;
  }

  .intro__tagline {
    font-size: 9px;
    letter-spacing: 2px;
    white-space: normal;
    text-align: center;
    max-width: 260px;
  }

  .intro__meta {
    bottom: 24px;
    left: 20px;
  }

  .intro__counter {
    bottom: 24px;
    right: 20px;
  }

  /* Search */
  .search__bar {
    padding: 0 16px;
    height: 60px;
    gap: 12px;
  }

  .search__panel {
    top: 60px;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .search__body {
    padding: 20px 16px 32px;
    gap: 24px;
  }

  .search__input-icon {
    width: 18px;
    height: 18px;
  }

  .search__input-wrap {
    gap: 10px;
  }

  .search__input {
    font-size: 16px; /* prevents iOS zoom */
  }

  .search__close {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    margin-right: 0;
  }

  .search__close svg {
    width: 14px;
    height: 14px;
  }

  .search__label {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 1px;
  }

  .search__suggestions {
    gap: 12px;
  }

  .search__tags {
    gap: 8px;
  }

  .search__tag {
    padding: 10px 14px;
    font-size: 13px;
    line-height: 18px;
    border-radius: 8px;
  }

  .search__tag-arrow {
    height: 14px;
  }

  .search__tag-arrow svg {
    width: 14px;
    height: 14px;
  }

  .search__links-grid {
    gap: 0;
  }

  .search__quick-card {
    gap: 12px;
    padding: 14px 0;
  }

  .search__quick-num {
    font-size: 11px;
    line-height: 14px;
    width: 20px;
  }

  .search__quick-title {
    font-size: 14px;
    line-height: 20px;
  }

  .search__quick-desc {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 0 6px;
  }

  .hero__inner {
    padding: 32px 0 0;
    border-radius: 12px;
  }

  .hero__bg-ellipse {
    top: 60px;
    width: 320px;
    height: 230px;
  }

  .hero__bg-texture {
    background-size: 80px 80px;
  }

  .hero__text {
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 16px;
  }

  .hero__heading {
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.3px;
    padding: 0 20px;
    width: 100%;
  }

  .hero__subtitle {
    width: 100%;
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: -0.15px;
  }

  .hero__image-area {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .hero__car-wrap {
    position: relative;
    top: 0;
    width: auto;
    height: 220px;
    margin: 0 12px;
    border-radius: 12px;
    overflow: hidden;
  }

  .hero__car-wrap img {
    object-position: center;
  }

  .hero__services {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero__service-card {
    flex: 1 0 calc(50% - 4px);
    min-width: 0;
    padding: 14px;
    gap: 10px;
    border-radius: 10px;
  }

  .hero__service-card-text {
    gap: 4px;
  }

  .hero__service-card-title {
    font-size: 14px;
    letter-spacing: -0.15px;
  }

  .hero__service-card-desc {
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero__service-card-arrow svg {
    width: 16px;
    height: 16px;
  }

  .hero__entretien {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 0 12px 12px;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 10px;
  }

  .hero__entretien-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
  }

  .hero__entretien-body {
    width: auto;
    flex: 1;
    min-width: 0;
    gap: 4px;
  }

  .hero__entretien-title {
    width: 100%;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -0.15px;
  }

  .hero__entretien-desc {
    width: 100%;
    font-size: 12px;
    line-height: 1.4;
  }

  .hero__entretien-cta {
    align-self: flex-end;
    flex-shrink: 0;
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
    border-radius: 17px;
    backdrop-filter: none;
  }

  /* About */
  .about {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 0 6px;
  }

  .about__text-block {
    grid-column: 1;
    padding: 32px 20px;
    border-radius: 12px;
  }

  .about__values-block {
    grid-column: 1;
    padding: 28px 20px;
    border-radius: 12px;
  }

  .about__values-list {
    height: auto;
    gap: 0;
  }

  .about__value {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about__value:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .about__value:first-child {
    padding-top: 0;
  }

  .about__value--primary {
    height: auto;
  }

  .about__value--secondary {
    flex: none;
    min-height: auto;
  }

  .about__value-heading {
    font-size: 20px;
  }

  .about__paragraph {
    font-size: 17px;
    line-height: 1.6;
  }

  .about__value-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Banner */
  .banner {
    padding: 0 6px;
  }

  .banner__inner {
    height: 280px;
    padding: 60px 24px;
    border-radius: 12px;
  }

  .banner__heading {
    font-size: 24px;
    line-height: 1.35;
    width: 100%;
  }

  /* Financing */
  .financing {
    padding: 0 6px;
  }

  .financing__inner {
    gap: 0;
    border-radius: 12px;
    padding: 28px 0;
  }

  .financing__header {
    flex-direction: column;
    height: auto;
    gap: 16px;
    padding: 0 20px 24px;
  }

  .financing__heading {
    font-size: 24px;
    line-height: 1.25;
  }

  .financing__intro-lead {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .financing__intro-body {
    font-size: 14px;
    line-height: 1.6;
  }

  .financing__body {
    flex-direction: column;
  }

  .financing__sidebar {
    height: auto;
    padding: 0 20px;
    width: 100%;
    gap: 16px;
  }

  .financing__indicator {
    display: none;
  }

  .financing__options {
    gap: 6px;
    align-items: stretch;
    width: 100%;
  }

  .financing__option {
    width: 100%;
    padding: 16px 18px;
    gap: 4px;
    border: 1px solid rgba(40, 40, 48, 0.06);
    border-radius: 10px;
    background-color: transparent;
    box-shadow: none;
    opacity: 0.5;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  }

  .financing__option--active {
    background-color: var(--color-white);
    border-color: rgba(40, 40, 48, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    opacity: 1;
  }

  .financing__option-header {
    gap: 2px;
  }

  .financing__option-title {
    width: auto;
    font-size: 18px;
    line-height: 1.3;
  }

  .financing__option-subtitle {
    font-size: 13px;
    line-height: 1.3;
  }

  .financing__option-desc {
    width: auto;
    font-size: 13px;
    line-height: 1.4;
  }

  .financing__panel {
    width: 100%;
    height: auto;
    padding: 16px 20px;
  }

  .financing__panel-bg {
    display: none;
  }

  .financing__card {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .financing__card-content {
    gap: 20px;
  }

  .financing__card-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .financing__card-text p + p {
    margin-top: 10px;
  }

  .financing__benefits {
    flex-direction: column;
    gap: 6px;
  }

  .financing__benefit {
    width: 100%;
    height: auto;
    min-height: 64px;
    padding: 16px;
    border-radius: 10px;
  }

  .financing__benefit-text p {
    font-size: 13px;
  }

  .financing__benefit-dot {
    width: 8px;
    height: 8px;
  }

  /* Universe */
  .universe {
    padding: 0 6px;
  }

  .universe__row {
    flex-direction: column;
  }

  .universe__card {
    width: 100%;
    height: auto;
    min-height: 400px;
    border-radius: 12px;
  }

  .universe__content {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    max-width: none;
    padding: 28px 20px 20px 52px;
    gap: 8px;
  }

  .universe__icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
  }

  .universe__icon svg {
    width: 22px;
    height: 22px;
  }

  .universe__line {
    left: 20px;
    top: 28px;
    height: 90px;
    width: 2px;
  }

  .universe__title {
    font-size: 22px;
  }

  .universe__desc {
    font-size: 15px;
    line-height: 1.5;
  }

  .universe__photo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(100% - 40px);
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 12px;
  }

  .universe__cta {
    font-size: 14px;
    padding: 12px 24px;
    height: 44px;
    border-radius: 22px;
  }

  /* Services */
  .services {
    padding: 0 6px;
  }

  .services__inner {
    gap: 28px;
    padding: 32px 0;
    border-radius: 12px;
  }

  .services__header {
    flex-direction: column;
    height: auto;
    gap: 16px;
    padding: 0 20px;
  }

  .services__heading {
    font-size: 24px;
    line-height: 1.25;
  }

  .services__intro {
    font-size: 15px;
    line-height: 1.6;
  }

  .services__cards {
    padding: 0 16px;
    gap: 12px;
  }

  .services__card {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 12px;
  }

  .services__card--tall {
    min-height: auto;
  }

  .services__card-text {
    padding: 24px 20px;
    gap: 16px;
  }

  .services__card-title {
    font-size: 22px;
    line-height: 1.25;
  }

  .services__card-subtitle {
    font-size: 16px;
  }

  .services__card-body {
    font-size: 15px;
    line-height: 1.6;
  }

  .services__card-cta {
    height: 48px;
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 48px;
  }

  .services__card-image {
    min-height: 200px;
  }

  .services__card--reversed .services__card-text {
    order: 1;
  }

  .services__card--reversed .services__card-image {
    order: 2;
  }

  /* Experience */
  .experience {
    padding: 0 6px;
  }

  .experience__inner {
    padding: 40px 0;
    border-radius: 12px;
  }

  .experience__content {
    gap: 36px;
    padding: 0 16px;
  }

  .experience__logo {
    width: 180px;
    height: auto;
  }

  .experience__text {
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
  }

  .experience__stats {
    gap: 6px;
  }

  .experience__stats-row {
    flex-direction: column;
    gap: 6px;
  }

  .experience__stat--dark {
    height: auto;
    min-height: 160px;
    padding: 28px 24px;
    border-radius: 12px;
  }

  .experience__stat-content {
    width: 100%;
  }

  .experience__stat-big {
    font-size: 72px;
    letter-spacing: -4px;
  }

  .experience__stat-unit {
    font-size: 22px;
  }

  .experience__stat-label {
    font-size: 16px;
  }

  .experience__stat-globe {
    top: -420px;
    left: 50%;
    width: 700px;
    opacity: 0.6;
  }

  .experience__stat--blue,
  .experience__stat--yellow {
    width: 100%;
    height: auto;
    padding: 28px 24px;
    border-radius: 12px;
    flex-shrink: 1;
  }

  .experience__stat--blue .experience__stat-top,
  .experience__stat--yellow .experience__stat-bottom {
    font-size: 18px;
  }

  .experience__stat--blue .experience__stat-bottom .stat-num,
  .experience__stat--yellow .experience__stat-top .stat-num {
    font-size: 52px;
  }

  .experience__stat--blue .experience__stat-bottom .stat-label,
  .experience__stat--yellow .experience__stat-top .stat-label {
    font-size: 22px;
  }

  .experience__stat--blue .experience__stat-bottom,
  .experience__stat--yellow .experience__stat-top {
    letter-spacing: -2px;
  }

  .experience__values-row {
    flex-direction: column;
    gap: 8px;
  }

  .experience__value--1,
  .experience__value--2,
  .experience__value--3 {
    width: 100%;
    flex: none;
    height: auto;
    min-height: 60px;
    padding: 16px 20px;
    border-radius: 12px;
  }

  .experience__value {
    font-size: 14px;
    line-height: 1.5;
  }

  .experience__deco {
    display: none;
  }

  /* Prefooter */
  .prefooter {
    padding: 0 6px 6px;
  }

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

  .prefooter__main {
    height: auto;
    border-radius: 12px;
  }

  .prefooter__content {
    padding: 36px 20px;
    margin-bottom: 0;
  }

  .prefooter__content-inner {
    gap: 28px;
  }

  .prefooter__heading-group {
    gap: 16px;
  }

  .prefooter__heading {
    font-size: 24px;
    line-height: 1.25;
  }

  .prefooter__desc {
    font-size: 15px;
    line-height: 1.6;
  }

  .prefooter__buttons {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .prefooter__btn {
    width: 100%;
    justify-content: center;
    height: 48px;
    font-size: 15px;
    gap: 8px;
    border-radius: 24px;
  }

  .prefooter__btn-icon {
    width: 20px;
    height: 20px;
  }

  .prefooter__image {
    margin-bottom: 0;
    height: 200px;
  }

  .prefooter__side {
    height: 380px;
    border-radius: 12px;
  }

  .prefooter__side-content {
    height: auto;
    padding: 24px 20px;
  }

  .prefooter__side-inner {
    height: auto;
    gap: 24px;
  }

  .prefooter__side-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .prefooter__side-cta {
    font-size: 14px;
    padding: 12px 24px;
    height: 48px;
    gap: 8px;
    border-radius: 24px;
  }

  .prefooter__side-cta-icon {
    width: 20px;
    height: 20px;
  }
}

/* --- Small phones (≤480px) --- */
@media (max-width: 480px) {
  main {
    gap: 4px;
  }

  /* Intro */
  .intro__atmosphere {
    width: 320px;
    height: 320px;
  }

  .intro__ring-outer {
    width: 300px;
    height: 300px;
  }

  .intro__ring {
    width: 260px;
    height: 260px;
  }

  .intro__logo {
    width: 150px;
  }

  .intro__line--top {
    margin-bottom: 20px;
  }

  .intro__line--bottom {
    margin-top: 20px;
  }

  .intro__tagline {
    font-size: 8px;
    max-width: 200px;
  }

  .intro__meta {
    bottom: 20px;
    left: 16px;
  }

  .intro__counter {
    bottom: 20px;
    right: 16px;
  }

  /* Hero */
  .hero {
    padding: 0 4px;
  }

  .hero__inner {
    padding: 24px 0 0;
    border-radius: 10px;
  }

  .hero__text {
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero__heading {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.2px;
    padding: 0 16px;
  }

  .hero__subtitle {
    font-size: 13px;
    padding: 0 16px;
  }

  .hero__car-wrap {
    height: 170px;
    margin: 0 8px;
    border-radius: 10px;
  }

  .hero__services {
    flex-direction: column;
    padding: 8px;
    gap: 6px;
  }

  .hero__service-card {
    flex: none;
    width: 100%;
    padding: 12px;
    gap: 8px;
    border-radius: 8px;
  }

  .hero__service-card-title {
    font-size: 14px;
  }

  .hero__service-card-desc {
    font-size: 11px;
    -webkit-line-clamp: 1;
  }

  .hero__service-card-arrow svg {
    width: 14px;
    height: 14px;
  }

  .hero__entretien {
    margin: 0 8px 8px;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
  }

  .hero__entretien-img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
  }

  .hero__entretien-title {
    font-size: 13px;
  }

  .hero__entretien-desc {
    font-size: 11px;
  }

  .hero__entretien-cta {
    align-self: flex-end;
    font-size: 12px;
    height: 28px;
    padding: 0 12px;
    border-radius: 14px;
  }

  /* About */
  .about {
    padding: 0 4px;
  }

  .about__text-block {
    padding: 28px 16px;
  }

  .about__values-block {
    padding: 28px 16px;
  }

  .about__paragraph {
    font-size: 16px;
    line-height: 1.6;
  }

  .about__value-heading {
    font-size: 18px;
  }

  .about__value-desc {
    font-size: 12px;
  }

  /* Banner */
  .banner {
    padding: 0 4px;
  }

  .banner__inner {
    height: 260px;
    padding: 48px 16px;
  }

  .banner__heading {
    font-size: 20px;
    line-height: 1.35;
  }

  /* Financing */
  .financing {
    padding: 0 4px;
  }

  .financing__inner {
    padding: 28px 0;
  }

  .financing__header {
    padding: 0 16px 24px;
  }

  .financing__heading {
    font-size: 22px;
    line-height: 1.25;
  }

  .financing__intro-lead {
    font-size: 15px;
  }

  .financing__intro-body {
    font-size: 14px;
    line-height: 1.6;
  }

  .financing__sidebar {
    padding: 16px;
  }

  .financing__options {
    gap: 6px;
  }

  .financing__option {
    padding: 16px;
    border-radius: 10px;
  }

  .financing__option-title {
    font-size: 18px;
  }

  .financing__option-subtitle {
    font-size: 14px;
  }

  .financing__option-desc {
    font-size: 13px;
  }

  .financing__panel {
    padding: 16px;
  }

  .financing__card {
    padding: 16px;
  }

  .financing__card-text p {
    font-size: 13px;
  }

  .financing__benefit {
    padding: 16px;
    min-height: 70px;
  }

  /* Universe */
  .universe {
    padding: 0 4px;
  }

  .universe__card {
    min-height: 360px;
  }

  .universe__content {
    padding: 24px 16px 16px 44px;
  }

  .universe__line {
    left: 16px;
    top: 24px;
    height: 80px;
  }

  .universe__title {
    font-size: 20px;
  }

  .universe__desc {
    font-size: 14px;
  }

  .universe__photo {
    width: calc(100% - 32px);
    height: 180px;
  }

  /* Services */
  .services {
    padding: 0 4px;
  }

  .services__inner {
    padding: 28px 0;
  }

  .services__header {
    padding: 0 16px;
  }

  .services__heading {
    font-size: 22px;
  }

  .services__intro {
    font-size: 14px;
  }

  .services__cards {
    padding: 0 12px;
    gap: 10px;
  }

  .services__card-text {
    padding: 20px 16px;
  }

  .services__card-title {
    font-size: 20px;
  }

  .services__card-body {
    font-size: 14px;
    line-height: 1.5;
  }

  .services__card-cta {
    font-size: 14px;
    padding: 10px 20px;
    height: 44px;
    width: 100%;
    justify-content: center;
    border-radius: 44px;
  }

  .services__card-image {
    min-height: 180px;
  }

  /* Experience */
  .experience {
    padding: 0 4px;
  }

  .experience__inner {
    padding: 32px 0;
  }

  .experience__content {
    gap: 28px;
    padding: 0 12px;
  }

  .experience__logo {
    width: 160px;
  }

  .experience__text {
    font-size: 14px;
  }


  .experience__stat--dark {
    padding: 24px 20px;
  }

  .experience__stat-big {
    font-size: 56px;
    letter-spacing: -3px;
  }

  .experience__stat-unit {
    font-size: 20px;
  }

  .experience__stat-label {
    font-size: 14px;
  }

  .experience__stat--blue,
  .experience__stat--yellow {
    padding: 24px 20px;
  }

  .experience__stat--blue .experience__stat-bottom .stat-num,
  .experience__stat--yellow .experience__stat-top .stat-num {
    font-size: 44px;
  }

  .experience__stat--blue .experience__stat-bottom .stat-label,
  .experience__stat--yellow .experience__stat-top .stat-label {
    font-size: 18px;
  }

  .experience__stat--blue .experience__stat-top,
  .experience__stat--yellow .experience__stat-bottom {
    font-size: 15px;
  }

  .experience__value {
    font-size: 14px;
  }

  .experience__value--1,
  .experience__value--2,
  .experience__value--3 {
    padding: 14px 16px;
    min-height: 56px;
  }

  /* Prefooter */
  .prefooter {
    padding: 0 4px 4px;
  }

  .prefooter__content {
    padding: 28px 16px;
  }

  .prefooter__heading {
    font-size: 22px;
  }

  .prefooter__desc {
    font-size: 14px;
  }

  .prefooter__image {
    height: 180px;
  }

  .prefooter__side {
    height: 320px;
  }

  .prefooter__side-content {
    padding: 20px 16px;
  }

  .prefooter__side-text {
    font-size: 15px;
  }

  .prefooter__side-cta {
    height: 44px;
  }
}

/* --- Big screens (1440px+) — header scales with vw --- */
@media (min-width: 1440px) {
  .header {
    height: 4.4444vw;
    padding-left: 3.6111vw;
    padding-right: 3.6111vw;
  }

  .header__left {
    gap: 5vw;
  }

  .header__logo {
    width: 9.3333vw;
    height: 1.5vw;
  }

  .header__nav {
    gap: 1.1111vw;
  }

  .header__nav-item {
    font-size: 0.8333vw;
    line-height: 1.3889vw;
  }

  .header__actions {
    gap: 0.6667vw;
  }

  .header__contact {
    font-size: 0.8333vw;
    line-height: 1.3889vw;
  }

  .header__btn {
    padding: 0.4444vw 1.1111vw;
    font-size: 0.7222vw;
    line-height: 1.1111vw;
    border-radius: 2.2778vw;
    border-width: 0.0556vw;
  }

  .header__icon-btn {
    padding: 0.6667vw;
    border-radius: 3.6667vw;
  }

  .header__icon-btn svg {
    width: 0.6667vw;
    height: 0.6667vw;
  }

  .header__nav-icon {
    width: 1.3889vw;
    height: 1.3889vw;
  }
}
