@font-face {
  font-family: 'OxyWashTitle';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/Anton-Regular.ttf') format('truetype');
}

:root {
  --ink: #0a0a0a;
  --bone: #f4efe6;
  --gold: #3681cf;
  --gold-2: #002c6f;
  --gold-hover: #4a9ae0;
}

* {
  -webkit-font-smoothing: antialiased;
}

html,
body {
  background: var(--ink);
  color: var(--bone);
  font-family: 'Inter', sans-serif;
}

body {
  overflow-x: hidden;
}

.parallax {
  width: 100%;
}

.parallax__header {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax__visuals {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax__layers {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax__layer-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.slideshow-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
  overflow: hidden;
}

.slideshow-layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}

.slideshow-layer img.slide-active {
  opacity: 1;
}

.parallax__layer-title {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  pointer-events: none;
}

.parallax__title {
  font-family: 'OxyWashTitle', sans-serif;
  font-size: clamp(5rem, 22vw, 20rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--bone);
  -webkit-text-fill-color: transparent;
  paint-order: stroke fill;
  white-space: nowrap;
}

.parallax__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(10, 10, 10, 0.55) 70%, rgba(10, 10, 10, 0.95) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, transparent 25%, transparent 75%, rgba(10, 10, 10, 0.9) 100%);
  z-index: 6;
}

.parallax__black-line-overflow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 7;
  background:
    linear-gradient(180deg, var(--ink) 0%, transparent 6%),
    linear-gradient(0deg, var(--ink) 0%, transparent 6%);
}

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
}

.parallax__content {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  padding: 8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(244, 239, 230, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.headline {
  font-family: 'OxyWashTitle', sans-serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-align: center;
  max-width: 14ch;
  margin-top: 1.5rem;
}

.headline em {
  font-style: normal;
  color: var(--gold);
}

.sub {
  max-width: 56ch;
  text-align: center;
  color: rgba(244, 239, 230, 0.65);
  line-height: 1.6;
  margin-top: 1.5rem;
  font-weight: 300;
}

.cta-row {
  display: flex;
  gap: 0.9rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gold-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(244, 239, 230, 0.25);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--bone);
}

.features {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
}

.feat {
  padding: 1.8rem;
  border: 1px solid rgba(244, 239, 230, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feat:hover {
  border-color: rgba(54, 129, 207, 0.45);
  transform: translateY(-4px);
}

.feat h4 {
  font-family: 'OxyWashTitle', sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  color: var(--gold);
}

.feat p {
  color: rgba(244, 239, 230, 0.6);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-top: 0.6rem;
  font-weight: 300;
}


.pricing {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  padding: 8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.pricing__label,
.booking__label,
.contact__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(244, 239, 230, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.pricing__label .dot,
.booking__label .dot,
.contact__label .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.pricing__title,
.booking__title,
.contact__title {
  font-family: 'OxyWashTitle', sans-serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 1rem;
}

.pricing__title em,
.booking__title em,
.contact__title em {
  font-style: normal;
  color: var(--gold);
}

.pricing__sub,
.booking__sub,
.contact__sub {
  max-width: 50ch;
  text-align: center;
  color: rgba(244, 239, 230, 0.55);
  line-height: 1.6;
  font-weight: 300;
}

.pricing__sub {
  margin-bottom: 4rem;
}

.booking__sub {
  margin-bottom: 3rem;
}

.contact__sub {
  margin-bottom: 3.5rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
}

.price-card {
  position: relative;
  padding: 2.4rem 2rem;
  border: 1px solid rgba(244, 239, 230, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.price-card:hover {
  border-color: rgba(54, 129, 207, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(54, 129, 207, 0.08);
}

.price-card:hover::before {
  opacity: 1;
}

.price-card__num {
  font-family: 'OxyWashTitle', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(244, 239, 230, 0.25);
  margin-bottom: 1.2rem;
}

.price-card__name {
  font-family: 'OxyWashTitle', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: var(--bone);
  margin-bottom: 0.8rem;
}

.price-card__desc {
  color: rgba(244, 239, 230, 0.5);
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.8rem;
}

.price-card__divider {
  width: 100%;
  height: 1px;
  background: rgba(244, 239, 230, 0.08);
  margin-bottom: 1.5rem;
}

.price-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.price-card__price {
  font-family: 'OxyWashTitle', sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
}

.price-card__price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(244, 239, 230, 0.4);
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.3rem;
}

.price-card__btn {
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(54, 129, 207, 0.4);
  background: transparent;
  color: var(--gold);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.price-card__btn:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 1rem;
  pointer-events: none;
}

.navbar__inner {
  pointer-events: auto;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0.4rem 0.85rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 0.3rem;
  column-gap: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  transition: all 0.3s ease;
}

.navbar__logo {
  display: flex;
  align-items: center;
  justify-content: center; /* center on mobile */
  flex-shrink: 0;
  text-decoration: none;
  order: 1;
  width: 100%; /* full row on mobile so centering works */
}

.navbar__logo img {
  height: 1.6rem; /* compact on mobile */
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.navbar__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%; /* forces new row on mobile */
  order: 3;
}

.navbar__link {
  padding: 0.3rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.75);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar__link:hover {
  background: rgba(54, 129, 207, 0.08);
  color: #3681cf;
}

.navbar__actions {
  display: none; /* hidden on mobile — shown at 768px+ */
  align-items: center;
  order: 2;
}

.navbar__cta {
  display: none; /* hidden on mobile — shown at 768px+ */
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(54, 129, 207, 0.45), 0 2px 8px rgba(0,0,0,0.3);
  transition: box-shadow 0.25s ease, transform 0.2s ease, filter 0.2s ease;
}

.navbar__cta:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 28px rgba(54, 129, 207, 0.65), 0 4px 16px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.3rem 0.5rem;
  border: none;
  border-radius: 0.375rem;
  background: transparent;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.75);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown__trigger:hover,
.nav-dropdown.open .nav-dropdown__trigger {
  background: rgba(54, 129, 207, 0.08);
  color: #3681cf;
}

.nav-dropdown__chevron {
  width: 0.7rem;
  height: 0.7rem;
  transition: transform 0.25s ease;
}

.nav-dropdown.open .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 14rem;
  padding: 0.35rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 60;
}

.nav-dropdown.open .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 1024px) {
  .nav-dropdown:hover .nav-dropdown__panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown:hover .nav-dropdown__chevron {
    transform: rotate(180deg);
  }
}

.nav-dropdown__item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-dropdown__item:hover {
  background: rgba(54, 129, 207, 0.06);
}

.nav-dropdown__item-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #0a0a0a;
}

.nav-dropdown__item-desc {
  font-size: 0.75rem;
  color: rgba(10, 10, 10, 0.45);
}

/* Tablet & Desktop Layout */
@media (min-width: 768px) {
  .navbar__inner {
    flex-wrap: nowrap;
    height: 3.8rem;
    padding: 0 1.5rem;
    gap: 1rem;
  }

  .navbar__logo {
    width: auto; /* shrink back to content width */
    justify-content: flex-start;
  }

  .navbar__logo img {
    height: 2rem;
  }

  .navbar__menu {
    width: auto;
    order: 2;
    gap: 0.4rem;
  }

  .navbar__link {
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
  }

  .nav-dropdown__trigger {
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
  }

  .navbar__actions {
    display: flex; /* show CTA on desktop */
    order: 3;
    margin-left: 0;
  }

  .navbar__cta {
    display: inline-flex;
    padding: 0.5rem 1.25rem;
    font-size: 0.82rem;
  }
}

.booking {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  padding: 8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.stepper {
  width: 100%;
  max-width: 680px;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stepper__step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.stepper__circle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid rgba(244, 239, 230, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'OxyWashTitle', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(244, 239, 230, 0.3);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.stepper__circle.active {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 0 20px rgba(54, 129, 207, 0.35);
}

.stepper__circle.done {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(54, 129, 207, 0.1);
}

.stepper__text {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.3);
  transition: color 0.4s ease;
}

.stepper__text.active {
  color: var(--bone);
}

.stepper__text.done {
  color: var(--gold);
}

.stepper__line {
  flex: 1;
  height: 2px;
  background: rgba(244, 239, 230, 0.08);
  margin: 0 1rem;
  position: relative;
  min-width: 40px;
}

.stepper__line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.5s ease;
}

.stepper__line-fill.filled {
  width: 100%;
}

.booking-form {
  width: 100%;
  max-width: 680px;
  position: relative;
  min-height: 340px;
}

.booking-step {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
  display: flex;
  flex-direction: column;
}

.booking-step.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.booking-step.exit-left {
  opacity: 0;
  transform: translateX(-40px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-option {
  padding: 1.4rem 1.2rem;
  border: 1px solid rgba(244, 239, 230, 0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-option:hover {
  border-color: rgba(54, 129, 207, 0.35);
  transform: translateY(-2px);
}

.service-option.selected {
  border-color: var(--gold);
  background: rgba(54, 129, 207, 0.08);
  box-shadow: 0 0 30px rgba(54, 129, 207, 0.1);
}

.service-option__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(54, 129, 207, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.service-option__icon svg {
  width: 20px;
  height: 20px;
}

.service-option__info h4 {
  font-family: 'OxyWashTitle', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--bone);
}

.service-option__info p {
  font-size: 0.78rem;
  color: rgba(244, 239, 230, 0.45);
  margin-top: 0.2rem;
  font-weight: 300;
}

.service-option__check {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(244, 239, 230, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-option.selected .service-option__check {
  border-color: var(--gold);
  background: var(--gold);
}

.service-option.selected .service-option__check svg {
  opacity: 1;
}

.service-option__check svg {
  width: 12px;
  height: 12px;
  color: var(--ink);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.datetime-section {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.datetime-label,
.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
  margin-bottom: 0.8rem;
}

.form-field label {
  margin-bottom: 0.5rem;
}

.date-input-wrap input,
.form-field input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--bone);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.date-input-wrap input {
  color-scheme: dark;
}

.date-input-wrap input:focus,
.form-field input:focus {
  border-color: var(--gold);
}

.form-field input::placeholder {
  color: rgba(244, 239, 230, 0.25);
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.7rem;
}

.time-slot {
  padding: 0.75rem 0.5rem;
  border: 1px solid rgba(244, 239, 230, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  font-size: 0.88rem;
  color: rgba(244, 239, 230, 0.65);
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 400;
}

.time-slot:hover {
  border-color: rgba(54, 129, 207, 0.35);
  color: var(--bone);
}

.time-slot.selected {
  border-color: var(--gold);
  background: rgba(54, 129, 207, 0.1);
  color: var(--gold);
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  gap: 1rem;
}

.booking-nav__btn {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.booking-nav__btn--prev {
  background: transparent;
  color: rgba(244, 239, 230, 0.6);
  border-color: rgba(244, 239, 230, 0.15);
}

.booking-nav__btn--prev:hover {
  border-color: var(--bone);
  color: var(--bone);
  transform: translateY(-2px);
}

.booking-nav__btn--next {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 30px rgba(54, 129, 207, 0.2);
}

.booking-nav__btn--next:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(54, 129, 207, 0.35);
}

.booking-nav__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none !important;
}

.booking-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}

.booking-success.show {
  display: flex;
}

.booking-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(54, 129, 207, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  animation: successPop 0.5s ease;
}

.booking-success__icon svg {
  width: 36px;
  height: 36px;
}

.booking-success h3 {
  font-family: 'OxyWashTitle', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: var(--bone);
}

.booking-success p {
  color: rgba(244, 239, 230, 0.55);
  font-weight: 300;
  max-width: 40ch;
  line-height: 1.6;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 55;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bone);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  z-index: 52;
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(244, 239, 230, 0.06);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  padding: 1.1rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 239, 230, 0.06);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 51;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.contact {
  position: relative;
  min-height: 60vh;
  background: var(--ink);
  padding: 8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.2rem;
  width: 100%;
  max-width: 900px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(244, 239, 230, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  transition: border-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  overflow: hidden;
}

.contact-item:hover {
  border-color: rgba(54, 129, 207, 0.45);
  transform: translateY(-3px);
}

.contact-item__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(54, 129, 207, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.contact-item__label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.4);
}

.contact-item__value {
  font-size: 0.95rem;
  color: var(--bone);
  font-weight: 400;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(244, 239, 230, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-hint .line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ═══════════════════════════════════════════════
   STEPPER (Page Devis)
═══════════════════════════════════════════════ */
.stepper-section {
  min-height: 100vh;
  padding: 8rem 1.5rem 4rem;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.stepper-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(54,129,207,0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.stepper-container {
  width: 100%;
  max-width: 800px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(244,239,230,0.08);
  border-radius: 1.5rem;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Indicators */
.stepper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(244,239,230,0.05);
}
.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}
.step-indicator__circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #111;
  border: 2px solid rgba(244,239,230,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: rgba(244,239,230,0.5);
  transition: all 0.3s ease;
}
.step-indicator.active .step-indicator__circle {
  background: #3681cf;
  border-color: #3681cf;
  color: #fff;
  box-shadow: 0 0 15px rgba(54,129,207,0.5);
}
.step-indicator.complete .step-indicator__circle {
  background: #3681cf;
  border-color: #3681cf;
  color: #fff;
}
.step-indicator__label {
  font-size: 0.75rem;
  color: rgba(244,239,230,0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.step-indicator.active .step-indicator__label,
.step-indicator.complete .step-indicator__label {
  color: #f4efe6;
}
.stepper-line {
  flex: 1;
  height: 2px;
  background: rgba(244,239,230,0.1);
  margin: 0 1rem;
  position: relative;
  top: -10px;
}
.stepper-line__progress {
  height: 100%;
  width: 0%;
  background: #3681cf;
  transition: width 0.4s ease;
}

/* Content */
.stepper-body {
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  min-height: 400px;
}
.stepper-step {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.stepper-step.active {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.stepper-step.prev {
  transform: translateX(-50px);
}
.step-title {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  color: #f4efe6;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.step-desc {
  font-size: 0.95rem;
  color: rgba(244,239,230,0.6);
  margin-bottom: 2rem;
}

/* Form elements */
.service-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.service-option {
  position: relative;
  cursor: pointer;
  display: flex;
}
.service-option input {
  position: absolute;
  opacity: 0;
}
.service-option__card {
  width: 100%;
  height: 100%;
  padding: 1.25rem 0.5rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(244,239,230,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  transition: all 0.2s;
  box-sizing: border-box;
}
.service-option__card svg { width: 2rem; height: 2rem; color: rgba(244,239,230,0.5); transition: color 0.2s; }
.service-option__card span { font-size: 0.9rem; font-weight: 600; color: #f4efe6; }
.service-option input:checked + .service-option__card {
  background: rgba(54,129,207,0.15);
  border-color: #3681cf;
  box-shadow: 0 0 20px rgba(54,129,207,0.2);
}
.service-option input:checked + .service-option__card svg {
  color: #3681cf;
}

.form-group { margin-bottom: 1.5rem; width: 100%; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: rgba(244,239,230,0.8); margin-bottom: 0.5rem; }
.form-input, .form-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(244,239,230,0.15);
  color: #f4efe6;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #3681cf;
}
.form-textarea { resize: vertical; min-height: 120px; }
.file-upload {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 2rem;
  text-align: center;
  border: 2px dashed rgba(244,239,230,0.2);
  border-radius: 0.75rem;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: border-color 0.2s;
}
.file-upload:hover { border-color: #3681cf; }

/* Grid for dynamic dates and contact info */
.form-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1.5rem; 
  width: 100%;
}

/* Footer */
.stepper-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid rgba(244,239,230,0.05);
  background: rgba(0,0,0,0.2);
}
.btn-stepper {
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-stepper--back {
  background: rgba(244,239,230,0.08);
  color: rgba(244,239,230,0.8);
}
.btn-stepper--back:hover { background: rgba(244,239,230,0.15); }
.btn-stepper--next {
  background: linear-gradient(135deg, #3681cf, #002c6f);
  color: #fff;
  box-shadow: 0 0 20px rgba(54,129,207,0.4);
}
.btn-stepper--next:hover {
  filter: brightness(1.15); transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(54,129,207,0.6);
}
.btn-stepper:disabled {
  opacity: 0.5; pointer-events: none;
}

@media (max-width: 600px) {
  .stepper-header { padding: 1.5rem; }
  .stepper-body { padding: 1.5rem; }
  .stepper-footer { padding: 1.5rem; }
  .step-indicator__label { display: none; }
  .form-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════
   HOMEPAGE — SHARED UTILITIES
═══════════════════════════════════════════════ */
.section-header {
  max-width: 48rem;
  margin-bottom: 3.5rem;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3681cf;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--bone, #f4efe6);
  margin: 0 0 1rem;
}
.section-sub {
  font-size: 1rem;
  color: rgba(244,239,230,0.6);
  line-height: 1.7;
  max-width: 38rem;
}
.hero__title--accent {
  color: #3681cf;
}

/* ═══════════════════════════════════════════════
   HERO SPLIT
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
  background: #0a0a0a;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(54,129,207,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54,129,207,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}
.hero__orb--1 {
  top: 8%;
  left: -8%;
  width: 520px;
  height: 520px;
  background: rgba(29,78,216,0.22);
  filter: blur(80px);
  animation-delay: 0s;
}
.hero__orb--2 {
  bottom: 5%;
  right: -8%;
  width: 600px;
  height: 600px;
  background: rgba(54,129,207,0.15);
  filter: blur(90px);
  animation-delay: 4s;
}
@keyframes floatOrb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(54,129,207,0.12);
  border: 1px solid rgba(54,129,207,0.3);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.7);
  margin-bottom: 1.75rem;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3681cf;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  color: #f4efe6;
  margin: 0 0 1.5rem;
}
.hero__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(244,239,230,0.62);
  margin-bottom: 2.25rem;
  max-width: 36rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #3681cf, #002c6f);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(54,129,207,0.4);
  transition: filter 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-hero-primary svg { width: 1rem; height: 1rem; transition: transform 0.2s; }
.btn-hero-primary:hover { filter: brightness(1.12); transform: translateY(-2px); box-shadow: 0 0 36px rgba(54,129,207,0.55); }
.btn-hero-primary:hover svg { transform: translateX(3px); }
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(244,239,230,0.06);
  border: 1px solid rgba(244,239,230,0.15);
  color: rgba(244,239,230,0.85);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-hero-ghost:hover { background: rgba(244,239,230,0.1); border-color: rgba(244,239,230,0.3); transform: translateY(-2px); }
.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hero__stat { text-align: center; }
.hero__stat-value {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  color: #f4efe6;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero__stat-label {
  font-size: 0.68rem;
  color: rgba(244,239,230,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero__stat-divider {
  width: 1px;
  height: 2rem;
  background: rgba(244,239,230,0.12);
}
/* Visual side */
.hero__visual {
  position: relative;
}
.hero__visual-glow {
  position: absolute;
  inset: -3rem;
  background: radial-gradient(circle, rgba(54,129,207,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__visual-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px -20px rgba(37,99,235,0.4);
}
.hero__visual-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hero__visual-frame:hover .hero__visual-img { transform: scale(1.03); }
.hero__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.55) 0%, transparent 60%);
}
.hero__float-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(54,129,207,0.35);
  font-size: 0.78rem;
  font-weight: 600;
  color: #f4efe6;
}
.hero__float-badge svg { width: 0.9rem; height: 0.9rem; color: #3681cf; }

/* Hero Entrance Animation */
.hero__text,
.hero__visual {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  animation: heroEntrance 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__text {
  animation-delay: 0.1s;
}
.hero__visual {
  animation-delay: 0.25s;
}

@keyframes heroEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services {
  position: relative;
  padding: 6rem 1.5rem;
  background: #0d0d0d;
  overflow: hidden;
}
.services__inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
}
.services__category {
  margin-bottom: 4rem;
}
.services__cat-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(244,239,230,0.75);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(244,239,230,0.08);
}
.services__cat-title svg { width: 1.1rem; height: 1.1rem; color: #3681cf; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
/* Service Card */
.svc-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(244,239,230,0.08);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  border-color: rgba(54,129,207,0.3);
}
.svc-card__img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.svc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-card__img { transform: scale(1.07); }
.svc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.1) 60%);
}
.svc-card__icon-badge {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, rgba(54,129,207,0.8), rgba(0,44,111,0.7));
  border: 1px solid rgba(100,170,255,0.3);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.svc-card__icon-badge svg { width: 1.1rem; height: 1.1rem; color: #fff; }
.svc-card__body {
  padding: 1.25rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #f4efe6;
  margin: 0 0 0.5rem;
}
.svc-card__desc {
  font-size: 0.83rem;
  color: rgba(244,239,230,0.52);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #3681cf;
  transition: gap 0.2s;
}
.svc-card__link svg { width: 0.85rem; height: 0.85rem; transition: transform 0.2s; }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }


/* ═══════════════════════════════════════════════
   REVIEWS (CAROUSEL AVIS GOOGLE)
═══════════════════════════════════════════════ */
.reviews {
  position: relative;
  padding: 6rem 1.5rem;
  background: #0a0a0a;
  overflow: hidden;
  border-top: 1px solid rgba(244, 239, 230, 0.05);
  border-bottom: 1px solid rgba(244, 239, 230, 0.05);
}

.reviews::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(54, 129, 207, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.reviews__inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
}

.reviews__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  font-weight: 600;
  color: #f4efe6;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.reviews__google-icon {
  flex-shrink: 0;
}

.reviews__stars-badge {
  color: #ffb703;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.reviews__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #f4efe6;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.reviews__sub {
  font-size: 1rem;
  color: rgba(244, 239, 230, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

.reviews__carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews__viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 1.5rem;
  padding: 0.5rem 0;
}

.reviews__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(244, 239, 230, 0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(54, 129, 207, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(54, 129, 207, 0.15);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-card__stars {
  color: #ffb703;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-card__badge-google {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(244, 239, 230, 0.5);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.review-card__quote-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(54, 129, 207, 0.3);
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(244, 239, 230, 0.85);
  margin: 0 0 1.75rem;
  flex-grow: 1;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 239, 230, 0.06);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3681cf 0%, #002c6f 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(54, 129, 207, 0.3);
}

.review-card__info {
  display: flex;
  flex-direction: column;
}

.review-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f4efe6;
}

.review-card__meta {
  font-size: 0.75rem;
  color: rgba(244, 239, 230, 0.45);
}

/* Arrows */
.reviews__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f4efe6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
}

.reviews__arrow:hover {
  background: #3681cf;
  border-color: #3681cf;
  box-shadow: 0 0 20px rgba(54, 129, 207, 0.5);
  transform: scale(1.05);
}

.reviews__arrow svg {
  width: 20px;
  height: 20px;
}

.reviews__arrow:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  transform: none;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

/* Dots */
.reviews__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews__dot.active {
  width: 24px;
  border-radius: 999px;
  background: #3681cf;
  box-shadow: 0 0 10px rgba(54, 129, 207, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .review-card {
    flex: 0 0 100%;
  }
  .reviews__carousel-wrapper {
    position: relative;
  }
  .reviews__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .reviews__arrow--prev {
    left: 0;
  }
  .reviews__arrow--next {
    right: 0;
  }
}

/* ═══════════════════════════════════════════════
   PROCESSUS
═══════════════════════════════════════════════ */
.process {
  position: relative;
  padding: 6rem 1.5rem;
  background: #0a0a0a;
  overflow: hidden;
}
.process__inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
}
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.process__step {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.process__step-num {
  font-family: 'Anton', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #3681cf;
  margin-bottom: 0.75rem;
}
.process__step-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(54,129,207,0.1);
  border: 1px solid rgba(54,129,207,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s, border-color 0.3s;
}
.process__step-icon svg { width: 1.4rem; height: 1.4rem; color: #3681cf; }
.process__step:hover .process__step-icon {
  background: rgba(54,129,207,0.18);
  border-color: rgba(54,129,207,0.45);
}
.process__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #f4efe6;
  margin: 0 0 0.5rem;
}
.process__step-desc {
  font-size: 0.82rem;
  color: rgba(244,239,230,0.5);
  line-height: 1.6;
}
.process__connector {
  flex-shrink: 0;
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(54,129,207,0.4), rgba(54,129,207,0.1));
  margin-top: 3.5rem;
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════
   ENGAGEMENTS
═══════════════════════════════════════════════ */
.engagements {
  padding: 6rem 1.5rem;
  background: #0d0d0d;
}
.engagements__inner {
  max-width: 72rem;
  margin: 0 auto;
}
.engagements__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.eng-card {
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(244,239,230,0.07);
  transition: border-color 0.3s, transform 0.3s;
}
.eng-card:hover {
  border-color: rgba(54,129,207,0.25);
  transform: translateY(-3px);
}
.eng-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(54,129,207,0.1);
  border: 1px solid rgba(54,129,207,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.eng-card__icon svg { width: 1.2rem; height: 1.2rem; color: #3681cf; }
.eng-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f4efe6;
  margin: 0 0 0.5rem;
}
.eng-card__desc {
  font-size: 0.82rem;
  color: rgba(244,239,230,0.5);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   CONTACT (nouvelle version)
═══════════════════════════════════════════════ */
.contact {
  position: relative;
  padding: 6rem 1.5rem;
  background: #0a0a0a;
  overflow: hidden;
}
.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(244,239,230,0.08);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.contact-card:hover {
  background: rgba(54,129,207,0.07);
  border-color: rgba(54,129,207,0.3);
  transform: translateY(-2px);
}
.contact-card--wide {
  grid-column: 1 / -1;
}
.contact-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: rgba(54,129,207,0.1);
  border: 1px solid rgba(54,129,207,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 1.1rem; height: 1.1rem; color: #3681cf; }
.contact-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.contact-card__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(244,239,230,0.4);
  font-weight: 600;
}
.contact-card__value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f4efe6;
}
.contact-card__arrow {
  width: 1rem;
  height: 1rem;
  color: rgba(244,239,230,0.25);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.contact-card:hover .contact-card__arrow {
  transform: translateX(3px);
  color: #3681cf;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: #070707;
  border-top: 1px solid rgba(244,239,230,0.06);
}
.footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}
.footer__brand {}
.footer__logo {
  height: 2rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}
.footer__tagline {
  font-size: 0.82rem;
  color: rgba(244,239,230,0.35);
  line-height: 1.5;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__nav-heading {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(244,239,230,0.45);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.footer__nav-link {
  font-size: 0.82rem;
  color: rgba(244,239,230,0.55);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}
.footer__nav-link:hover { color: #3681cf; }
.footer__bottom {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(244,239,230,0.05);
  font-size: 0.75rem;
  color: rgba(244,239,230,0.25);
}

/* ═══════════════════════════════════════════════
   HOMEPAGE RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__visual {
    order: -1;
  }
  .hero__visual-img {
    height: 320px;
  }
  .process__connector {
    display: none;
  }
  .process__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .process__step {
    padding: 0;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 7rem 1rem 3rem;
  }
  .hero__stats {
    gap: 1rem;
  }
  .process__steps {
    grid-template-columns: 1fr;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .engagements__grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .footer__nav {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   MOBILE CARD NAV
═══════════════════════════════════════════════ */
.card-nav-container { display: none; }
@media (max-width: 900px) {
  .navbar-desktop { display: none !important; }
  .card-nav-container {
    display: block;
    position: fixed;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 600px;
    z-index: 9999;
    box-sizing: border-box;
  }
  .card-nav {
    display: block;
    height: 50px;
    padding: 0;
    background-color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: height 0.35s ease, border-radius 0.3s ease;
  }
  .card-nav.open {
    border-radius: 1.25rem;
  }
  .card-nav-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 1rem;
    z-index: 10;
    pointer-events: none; /* Let clicks pass to children */
  }
  .card-nav-top > * { pointer-events: auto; } /* Re-enable clicks on children */
  
  .hamburger-menu {
    height: 50px;
    width: 40px;
    position: relative;
    cursor: pointer;
    justify-self: end;
  }
  .hamburger-line {
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: #000;
    left: 9px;
    transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.2s ease;
    transform-origin: 50% 50%;
  }
  .hamburger-line:first-child { top: 20px; }
  .hamburger-line:last-child { top: 28px; }

  .hamburger-menu.open .hamburger-line:first-child { transform: translateY(4px) rotate(45deg); }
  .hamburger-menu.open .hamburger-line:last-child { transform: translateY(-4px) rotate(-45deg); }
  
  .logo-container { justify-self: center; display: flex; align-items: center; }
  .logo { height: 26px; display: block; }
  
  .card-nav-cta-button {
    justify-self: start;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(54, 129, 207, 0.45), 0 2px 8px rgba(0,0,0,0.3);
    transition: box-shadow 0.25s ease, transform 0.2s ease, filter 0.2s ease;
    display: inline-flex;
  }
  .card-nav-cta-button:active { 
    transform: translateY(-2px); 
    filter: brightness(1.15);
  }
  
  .card-nav-content {
    padding: 50px 0.75rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    pointer-events: none;
    z-index: 1;
  }
  .card-nav.open .card-nav-content {
    pointer-events: auto;
  }
  .nav-card {
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    padding: 14px 16px;
    gap: 10px;
  }
  .nav-card-label { font-weight: 600; font-size: 1.1rem; letter-spacing: -0.5px; opacity: 0.9; margin-bottom: 0.25rem; }
  .nav-card-links { display: flex; flex-direction: column; gap: 8px; }
  .nav-card-link { font-size: 0.9rem; text-decoration: none; color: inherit; opacity: 0.75; transition: opacity 0.3s; padding: 0.2rem 0; }
  .nav-card-link:hover { opacity: 1; }
}

/* ═══════════════════════════════════════════════
   NETTOYAGE AUTO — PRICING
═══════════════════════════════════════════════ */
.pricing-auto {
  position: relative;
  min-height: 100vh;
  padding: 7rem 1.25rem 4rem;
  overflow: hidden;
  background: #0a0a0a;
}

.pricing-auto__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pricing-auto__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 70px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 20%, white, transparent 85%);
}

.pricing-auto__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 120vw);
  height: 500px;
  background: radial-gradient(circle, rgba(54, 129, 207, 0.12) 0%, transparent 70%);
  opacity: 0.5;
}

.pricing-auto__sparkles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 55% 45% at 50% 25%, white, transparent 80%);
}

.pricing-auto__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-auto__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.pricing-auto__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-auto__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #f4efe6;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}

.pricing-auto__title-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.pricing-auto__title-word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: pricingWordReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pricing-auto__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.65);
  margin: 0;
}

.pricing-auto__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.pricing-auto__card {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid rgba(244, 239, 230, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  padding: 2rem 1.75rem;
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity 0.55s ease, transform 0.55s ease, filter 0.55s ease, border-color 0.25s ease;
}

.pricing-auto__card.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.pricing-auto__card--featured {
  border-color: rgba(54, 129, 207, 0.35);
  background: linear-gradient(145deg, rgba(54, 129, 207, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: 0 -8px 60px rgba(54, 129, 207, 0.12);
}

.pricing-auto__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.pricing-auto__card-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f4efe6;
  margin: 0 0 0.75rem;
}

.pricing-auto__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.pricing-auto__price-value {
  font-size: 2.75rem;
  font-weight: 700;
  color: #f4efe6;
  line-height: 1;
}

.pricing-auto__price-currency {
  font-size: 1.25rem;
  color: rgba(244, 239, 230, 0.7);
}

.pricing-auto__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-auto__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: rgba(244, 239, 230, 0.75);
  line-height: 1.5;
}

.pricing-auto__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.pricing-auto__btn {
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(244, 239, 230, 0.12);
  background: linear-gradient(to top, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: #f4efe6;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-auto__btn:hover {
  transform: translateY(-1px);
  border-color: rgba(54, 129, 207, 0.35);
}

.pricing-auto__btn--featured {
  border-color: rgba(54, 129, 207, 0.5);
  background: linear-gradient(to top, var(--gold), var(--gold-2));
  box-shadow: 0 4px 20px rgba(54, 129, 207, 0.25);
}

.pricing-auto__btn--featured:hover {
  box-shadow: 0 6px 28px rgba(54, 129, 207, 0.35);
}

.pricing-auto__options {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity 0.55s ease 0.15s, transform 0.55s ease 0.15s, filter 0.55s ease 0.15s;
  margin-bottom: 2.5rem;
}

.pricing-auto__options.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.pricing-auto__options-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #f4efe6;
  margin: 0 0 0.5rem;
  text-align: center;
}

.pricing-auto__options-desc {
  text-align: center;
  color: rgba(244, 239, 230, 0.6);
  font-size: 0.95rem;
  margin: 0 0 1.75rem;
  line-height: 1.6;
}

.pricing-auto__options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-auto__option {
  border-radius: 1rem;
  border: 1px solid rgba(244, 239, 230, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-auto__option-name {
  font-size: 1rem;
  font-weight: 600;
  color: #f4efe6;
  margin: 0;
  line-height: 1.4;
}

.pricing-auto__option-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}

.pricing-auto__option-note {
  font-size: 0.85rem;
  color: rgba(244, 239, 230, 0.55);
  margin: 0;
  flex: 1;
}

.pricing-auto__cta-wrap {
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity 0.55s ease 0.2s, transform 0.55s ease 0.2s, filter 0.55s ease 0.2s;
  margin-top: 2.5rem;
}

.pricing-auto__cta-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.pricing-auto__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #3681cf, #002c6f);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(54, 129, 207, 0.4);
  transition: filter 0.25s, transform 0.2s, box-shadow 0.25s;
}

.pricing-auto__cta:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(54, 129, 207, 0.6);
}

.pricing-auto__footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.8rem;
  color: rgba(244, 239, 230, 0.3);
  border-top: 1px solid rgba(244, 239, 230, 0.06);
}

@keyframes pricingWordReveal {
  to { transform: translateY(0); }
}

@media (max-width: 900px) {
  .pricing-auto__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-auto__options-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .pricing-auto {
    padding-top: 6rem;
  }

  .pricing-auto__card {
    padding: 1.75rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════
   NETTOYAGE TEXTILE — PRICING
═══════════════════════════════════════════════ */
.pricing-textile {
  position: relative;
  min-height: 100vh;
  padding: 7rem 1.25rem 4rem;
  overflow: hidden;
  background: #0a0a0a;
}

.pricing-textile__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pricing-textile__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 70px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 20%, white, transparent 85%);
}

.pricing-textile__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 120vw);
  height: 500px;
  background: radial-gradient(circle, rgba(54, 129, 207, 0.12) 0%, transparent 70%);
  opacity: 0.5;
}

.pricing-textile__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-textile__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.pricing-textile__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-textile__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #f4efe6;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}

.pricing-textile__title-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.pricing-textile__title-word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: pricingWordReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pricing-textile__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.65);
  margin: 0;
}

.pricing-textile__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.pricing-textile__card {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid rgba(244, 239, 230, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  padding: 2rem 1.75rem;
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity 0.55s ease, transform 0.55s ease, filter 0.55s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.pricing-textile__card.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.pricing-textile__card-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f4efe6;
  margin: 0 0 0.5rem;
}

.pricing-textile__card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.6);
  margin: 0 0 1.25rem;
}

.pricing-textile__field-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-textile__select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(244, 239, 230, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #f4efe6;
  font-size: 0.95rem;
  font-family: inherit;
  margin-bottom: 1.25rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f4efe6' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.pricing-textile__select:focus {
  outline: none;
  border-color: rgba(54, 129, 207, 0.5);
  box-shadow: 0 0 0 3px rgba(54, 129, 207, 0.15);
}

.pricing-textile__select option {
  background: #1a1a1a;
  color: #f4efe6;
}

.pricing-textile__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-textile__price-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: #f4efe6;
  line-height: 1;
}

.pricing-textile__price-currency {
  font-size: 1.1rem;
  color: rgba(244, 239, 230, 0.7);
}

.pricing-textile__option-note {
  font-size: 0.85rem;
  color: rgba(244, 239, 230, 0.55);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.pricing-textile__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.pricing-textile__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(244, 239, 230, 0.75);
  line-height: 1.5;
}

.pricing-textile__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.pricing-textile__btn {
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(244, 239, 230, 0.12);
  background: linear-gradient(to top, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: #f4efe6;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  margin-top: auto;
}

.pricing-textile__btn:hover {
  transform: translateY(-1px);
  border-color: rgba(54, 129, 207, 0.35);
}

.pricing-textile__cta-wrap {
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity 0.55s ease 0.2s, transform 0.55s ease 0.2s, filter 0.55s ease 0.2s;
}

.pricing-textile__cta-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.pricing-textile__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #3681cf, #002c6f);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(54, 129, 207, 0.4);
  transition: filter 0.25s, transform 0.2s, box-shadow 0.25s;
}

.pricing-textile__cta:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(54, 129, 207, 0.6);
}

@media (max-width: 900px) {
  .pricing-textile__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .pricing-textile {
    padding-top: 6rem;
  }

  .pricing-textile__card {
    padding: 1.75rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════
   FAQ (SEO + GEO — ACCORDÉON)
═══════════════════════════════════════════════ */
.faq {
  position: relative;
  padding: 6rem 1.5rem;
  background: #0d0d0d;
  border-top: 1px solid rgba(244, 239, 230, 0.05);
}

.faq__inner {
  max-width: 64rem;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #f4efe6;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.faq__sub {
  font-size: 1rem;
  color: rgba(244, 239, 230, 0.6);
  max-width: 500px;
  margin: 0 auto;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(244, 239, 230, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq__item--open {
  border-color: rgba(54, 129, 207, 0.35);
  box-shadow: 0 0 20px rgba(54, 129, 207, 0.1);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: #f4efe6;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: #3681cf;
}

.faq__item--open .faq__question {
  color: #3681cf;
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgba(244, 239, 230, 0.5);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.faq__item--open .faq__chevron {
  transform: rotate(180deg);
  color: #3681cf;
}

.faq__answer {
  /* max-height and opacity controlled by JS */
  padding: 0 1.5rem;
}

.faq__answer p {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.7);
  margin: 0;
}

@media (max-width: 640px) {
  .faq__question {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }
  .faq__answer {
    padding: 0 1.25rem;
  }
}
