@charset "UTF-8";

/* Reserve scrollbar space so centered .container (incl. the footer) keeps the
   same width on short pages without a scrollbar (login, contact, …) as on long
   scrolling pages like the homepage. */
html {
  scrollbar-gutter: stable;
}

@font-face {
  font-family: "bootstrap-icons";
  src: url("bootstrap-icons.woff2") format("woff2");
  font-display: swap;
}

.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bi-arrow-right-short::before { content: "\f135"; }
.bi-palette2::before { content: "\f4b2"; }
.bi-person-bounding-box::before { content: "\f4d4"; }
.bi-brightness-high::before { content: "\f1d2"; }
.bi-cart3::before { content: "\f244"; }
.bi-check-circle-fill::before { content: "\f26a"; }
.bi-globe2::before { content: "\f3ef"; }
.bi-handbag::before { content: "\f409"; }

.row {
  --bs-gutter-x: var(--space-5);
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.g-4,
.gx-4 { --bs-gutter-x: var(--space-5); }
.g-4,
.gy-4 { --bs-gutter-y: var(--space-5); }
.gx-5 { --bs-gutter-x: var(--space-6); }

.col-6 { flex: 0 0 auto; width: 50%; }
.col-12 { flex: 0 0 auto; width: 100%; }

.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.h-100 { height: 100% !important; }
.mt-auto { margin-top: auto !important; }
.mx-auto { margin-right: auto !important; margin-left: auto !important; }
.my-3 { margin-top: var(--space-3) !important; margin-bottom: var(--space-3) !important; }
.mt-3 { margin-top: var(--space-3) !important; }
.mt-4 { margin-top: var(--space-4) !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--space-1) !important; }
.mb-2 { margin-bottom: var(--space-2) !important; }
.mb-3 { margin-bottom: var(--space-3) !important; }
.mb-4 { margin-bottom: var(--space-4) !important; }
.mb-5 { margin-bottom: var(--space-6) !important; }
.pt-2 { padding-top: var(--space-2) !important; }
.pt-3 { padding-top: var(--space-3) !important; }
.py-1 { padding-top: var(--space-1) !important; padding-bottom: var(--space-1) !important; }
.py-3 { padding-top: var(--space-3) !important; padding-bottom: var(--space-3) !important; }
.py-4 { padding-top: var(--space-4) !important; padding-bottom: var(--space-4) !important; }
.py-5 { padding-top: var(--space-7) !important; padding-bottom: var(--space-7) !important; }
.px-4 { padding-right: var(--space-4) !important; padding-left: var(--space-4) !important; }
.px-5 { padding-right: var(--space-5) !important; padding-left: var(--space-5) !important; }
.gap-2 { gap: var(--space-2) !important; }
.gap-3 { gap: var(--space-3) !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }
.text-center { text-align: center !important; }
.text-nowrap { white-space: nowrap !important; }
.text-white { color: var(--color-text-inverse) !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.68) !important; }
.fw-bold,
.fw-bolder { font-weight: 700 !important; }
.fw-semibold { font-weight: 600 !important; }
.small { font-size: var(--font-size-small) !important; }
.shadow-none { box-shadow: none !important; }
.link-primary { color: var(--color-primary-500) !important; }
.w-100 { width: 100% !important; }
.img-fluid { max-width: 100%; height: auto; }
.card-img-top { width: 100%; }
.rounded-3 { border-radius: var(--radius-lg) !important; }
.rounded-5 { border-radius: var(--radius-xl) !important; }
.border-top { border-top: var(--border-light) !important; }
.border-bottom { border-bottom: var(--border-light) !important; }
.bg-transparent { background: transparent !important; }

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar > .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-text-primary);
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--space-2) 0;
  color: var(--color-text-primary);
  text-decoration: none;
}

.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: var(--space-2);
  vertical-align: 0.15em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-menu {
  position: absolute;
  z-index: var(--z-dropdown);
  display: none;
  min-width: 12rem;
  padding: var(--space-2) 0;
  margin: 0;
  list-style: none;
  background: var(--color-surface);
  border: var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu-end {
  right: 0;
  left: auto;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--space-2) var(--space-4);
  clear: both;
  color: var(--color-text-primary);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--color-primary-500);
  background: var(--color-surface-soft);
}

.navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--border-medium);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  background: var(--color-surface);
}

.navbar-toggler-icon {
  display: block;
  width: 1.35rem;
  height: 1.05rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14'%3E%3Cpath d='M1 1h16M1 7h16M1 13h16' stroke='%231F1F1F' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--z-offcanvas);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background: var(--color-surface);
  outline: 0;
  transition: transform var(--transition-base), visibility var(--transition-base);
}

.offcanvas-end {
  top: 0;
  right: 0;
  width: min(24rem, 100%);
  transform: translateX(100%);
}

.offcanvas.showing,
.offcanvas.show:not(.hiding) {
  transform: none;
}

.offcanvas.showing,
.offcanvas.hiding,
.offcanvas.show {
  visibility: visible;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offcanvas-title {
  margin-bottom: 0;
}

.offcanvas-body {
  flex-grow: 1;
  overflow-y: auto;
}

.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-offcanvas) - 1);
  background: rgba(0, 0, 0, 0.32);
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: var(--space-2);
  color: var(--color-text-primary);
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 2l12 12M14 2L2 14' stroke='%231F1F1F' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / 1em auto no-repeat;
  border: 0;
  border-radius: var(--radius-sm);
  opacity: 0.7;
}

.btn-close:hover,
.btn-close:focus {
  opacity: 1;
}

.fade {
  transition: opacity var(--transition-base);
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height var(--transition-base);
}

.accordion {
  --bs-accordion-btn-icon-width: 1.25rem;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border: 0;
  text-align: left;
}

.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A1C1C'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: transform var(--transition-base);
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.accordion-body {
  padding: var(--space-4);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal.show {
  display: block;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--space-5);
  pointer-events: none;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--space-5) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background: var(--color-surface);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-modal) - 1);
  background: rgba(0, 0, 0, 0.5);
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header,
.modal-footer {
  display: flex;
  align-items: center;
  padding: var(--space-4);
}

.modal-header {
  justify-content: space-between;
  border-bottom: var(--border-light);
}

.modal-footer {
  justify-content: flex-end;
  gap: var(--space-2);
  border-top: var(--border-light);
}

.modal-title {
  margin: 0;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--space-4);
}

.site-header {
  padding-top: var(--space-2) !important;
  padding-bottom: var(--space-2) !important;
  background: var(--color-surface) !important;
  border-bottom: var(--border-light) !important;
  box-shadow: none !important;
}

.site-header .container {
  min-height: 74px;
}

.site-header .offcanvas,
.site-header .offcanvas-lg {
  background: var(--color-surface) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: var(--shadow-medium) !important;
}

.site-header .offcanvas-header,
.site-header .offcanvas-body {
  background: var(--color-surface) !important;
}

.site-header .offcanvas-header {
  padding: var(--space-4) var(--space-5);
  border-bottom: var(--border-light);
}

.site-header .offcanvas-body {
  padding: var(--space-4) var(--space-5) var(--space-5);
}

.site-header .navbar-brand {
  min-width: 8rem;
  color: var(--color-text-primary) !important;
  font-size: 1.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header-menu {
  gap: var(--space-5);
}

.site-header-menu .nav-link,
.site-header-actions .nav-link,
.site-header-actions .dropdown-toggle {
  font-size: 0.96rem;
  font-weight: 500;
}

.site-header .nav-link,
.site-header .dropdown-toggle,
.site-header .dropdown-item,
.site-header .offcanvas-title {
  color: var(--color-text-primary) !important;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-header .dropdown-toggle:hover,
.site-header .dropdown-toggle:focus,
.site-header .dropdown-item:hover,
.site-header .dropdown-item:focus {
  color: var(--color-primary-500) !important;
}

.site-header-actions {
  gap: var(--space-3);
}

.site-header-lang {
  min-width: 3.8rem;
  min-height: 2.45rem;
  border-radius: var(--radius-pill) !important;
}

.site-header-login {
  padding-inline: var(--space-1) !important;
}

.site-header-cta {
  min-height: var(--button-height-md) !important;
  padding: var(--button-padding-y) var(--space-6) !important;
  border-radius: var(--radius-pill) !important;
  white-space: nowrap !important;
}

.stylr-home {
  background: var(--color-surface);
}

.stylr-home .home-section {
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
}

.stylr-home .home-section--hero,
.stylr-home .home-hero {
  background: var(--color-surface) !important;
}

.stylr-home .home-section--hero {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.stylr-home .home-section--soft {
  background: var(--color-surface-soft);
}

.stylr-home .home-section-heading h2,
.stylr-home .home-section-heading--left {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.stylr-home .home-section-heading p {
  font-size: 1.1rem;
}

.stylr-home .home-hero__grid {
  align-items: center;
}

.stylr-home .home-hero__grid > [class*="col-"] {
  flex: 0 0 100%;
  max-width: 100%;
}

.stylr-home .home-hero h1 {
  margin-bottom: var(--space-5);
  color: var(--color-text-primary) !important;
  font-family: var(--font-family-base) !important;
  font-size: clamp(2.4rem, 3.9vw, 3.6rem) !important;
  font-weight: 700 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.06em;
}

.stylr-home .home-hero h1 span {
  display: inline;
  color: var(--color-primary-500) !important;
}

.stylr-home .home-hero p.ft-20 {
  max-width: 32rem;
  margin-bottom: var(--space-6) !important;
  font-size: 1.12rem !important;
  line-height: 1.6;
}

.stylr-home .home-hero__actions .btn {
  min-height: var(--button-height-lg);
  padding-inline: var(--button-padding-x) !important;
  font-size: var(--font-size-body) !important;
  border-radius: var(--radius-pill) !important;
  box-shadow: none;
}

.stylr-home .hero-proof-list {
  max-width: 35rem;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.stylr-home .hero-proof-list li {
  display: grid;
  grid-template-columns: 1.3rem 1fr;
  align-items: start;
  gap: var(--space-3);
  font-size: 1.02rem;
  line-height: 1.5;
}

.stylr-home .hero-proof-list i {
  margin-top: var(--space-1);
  color: var(--color-primary-500);
}

.stylr-home .hero-visual,
.stylr-home .hero-visual__frame,
.stylr-home .home-hero__frame,
.stylr-home .home-hero__frame picture {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.stylr-home .hero-visual__frame,
.stylr-home .home-hero__frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.stylr-home .home-hero__frame {
  max-width: 620px;
  margin-left: auto;
  padding: 0;
  border-radius: 0;
}

.stylr-home .home-hero__frame img {
  display: block;
  width: 100%;
  background: transparent !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: none !important;
  object-fit: cover;
}

.stylr-home .home-hero__floating {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: 0 12px 40px rgba(0,0,0,0.32);
}

.stylr-home .home-hero__floating--status {
  top: var(--space-5);
  right: calc(-1 * var(--space-4));
}

.stylr-home .home-hero__floating--palette {
  left: var(--space-5);
  bottom: var(--space-5);
  width: min(calc(100% - var(--space-6)), calc(var(--space-9) * 3 + var(--space-5)));
  align-items: stretch;
  flex-direction: column;
  gap: var(--space-3);
}

.stylr-home .home-hero__floating-score {
  width: 3.7rem;
  height: 3.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--color-primary-500);
  border-radius: var(--radius-pill);
  color: var(--color-primary-500);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
}

.stylr-home .home-hero__floating-copy {
  display: grid;
  gap: var(--space-1);
}

.stylr-home .home-hero__floating-copy strong {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.15;
}

.stylr-home .home-hero__floating-copy span {
  color: var(--color-text-secondary);
  font-size: 0.98rem;
  line-height: 1.45;
}

.stylr-home .home-hero__palette-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-4);
}

.stylr-home .home-hero__palette-label {
  color: var(--color-text-secondary);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-body);
  line-height: 1;
  text-transform: uppercase;
}

.stylr-home .home-hero__palette-value {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2);
  color: var(--color-text-primary);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-heading);
  line-height: 1;
  text-align: right;
}

.stylr-home .home-hero__palette-swatches {
  display: inline-flex;
  justify-content: flex-end;
  gap: var(--space-2);
}

.stylr-home .home-hero__palette-swatches .swatch,
.stylr-home .home-hero__palette-value--color .swatch {
  width: var(--space-4);
  height: var(--space-4);
  min-height: var(--space-4);
  flex: 0 0 var(--space-4);
  border-radius: var(--radius-pill);
  border: 0;
}

.stylr-home .home-hero__palette-swatches .swatch-bordeaux,
.stylr-home .home-hero__palette-value--color .swatch-bordeaux {
  background: var(--color-palette-bordeaux);
}

.stylr-home .home-hero__palette-swatches .swatch-warm {
  background: var(--color-palette-brown);
}

.stylr-home .home-hero__palette-swatches .swatch-olive {
  background: var(--color-palette-olive);
}

.stylr-home .home-process .container,
.stylr-home .home-before-after .container {
  position: relative;
}

.stylr-home .process-card {
  height: 100%;
  padding: var(--space-6) !important;
  border: var(--border-light) !important;
  border-radius: var(--radius-xl) !important;
  background: var(--color-surface) !important;
  box-shadow: none !important;
}

.stylr-home .process-number {
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: var(--space-4);
  background: var(--color-primary-500) !important;
  color: var(--color-text-inverse) !important;
}

.stylr-home .process-card h3 {
  margin-bottom: var(--space-2) !important;
  color: var(--color-text-primary);
  font-size: 1.15rem !important;
  font-weight: 700;
  line-height: 1.35;
}

.stylr-home .process-card p {
  font-size: 1rem;
  line-height: 1.7;
}

.stylr-home .home-feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-6);
  border: var(--border-light);
  border-radius: var(--radius-xl);
  background: var(--color-surface-soft);
}

.stylr-home .home-feature-card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  color: var(--color-primary-500);
  font-size: 1.65rem;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.stylr-home .home-feature-card__body {
  flex: 1 1 auto;
}

.stylr-home .home-feature-card__body h3 {
  margin: 0 0 var(--space-2);
  color: var(--color-text-primary);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.stylr-home .home-feature-card__body p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

.stylr-home .home-feature-card__footer {
  margin-top: var(--space-5);
}

.stylr-home .home-feature-card__footer .btn {
  border-radius: var(--radius-pill) !important;
}

.stylr-home .home-daily__list {
  display: grid;
  gap: var(--space-4);
}

.stylr-home .home-daily__item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-5);
  border: var(--border-light);
  border-radius: var(--radius-xl);
  background: var(--color-surface-soft);
}

.stylr-home .home-daily__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  color: var(--color-primary-500);
  font-size: 1.55rem;
  box-shadow: var(--shadow-soft);
}

.stylr-home .home-daily__copy h3 {
  margin: 0 0 var(--space-1);
  color: var(--color-text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.stylr-home .home-daily__copy p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.stylr-home .home-before-after .transfo-card {
  border: 0 !important;
  border-radius: var(--radius-xl) !important;
  background: transparent !important;
  overflow: hidden;
  box-shadow: none;
}

.stylr-home .home-before-after .transfo-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.stylr-home .home-before-after p.ft-light {
  max-width: 32rem;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.55;
}

.stylr-home .home-faq .accordion {
  display: grid;
  gap: var(--space-4);
  background: transparent;
}

.stylr-home .faq-home-unified .accordion-item,
.stylr-home .faq-home-unified .accordion-item:first-of-type,
.stylr-home .faq-home-unified .accordion-item:last-of-type {
  overflow: hidden;
  border: 0 !important;
  border-radius: var(--radius-xl) !important;
  background: var(--color-surface-soft) !important;
}

.stylr-home .faq-home-unified .accordion-button {
  padding: var(--space-5);
  background: var(--color-surface-soft) !important;
  color: var(--color-text-primary) !important;
  font-size: 1.05rem;
  font-weight: 600;
}

.stylr-home .faq-home-unified .accordion-button:not(.collapsed) {
  background: var(--color-surface-soft) !important;
  color: var(--color-text-primary) !important;
}

.stylr-home .faq-home-unified .accordion-body {
  padding: 0 var(--space-5) var(--space-5);
  background: var(--color-surface-soft) !important;
  color: var(--color-text-secondary);
}

.stylr-home .home-cta__panel {
  border-radius: var(--radius-xl) !important;
  background: var(--color-cta-gradient);
  padding-top: var(--space-8) !important;
  padding-bottom: var(--space-8) !important;
}

.stylr-home .home-cta__panel p {
  max-width: 43rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.68) !important;
}

.stylr-home .home-cta__panel .btn {
  min-width: 16rem;
  min-height: var(--button-height-lg);
  border-radius: var(--radius-pill) !important;
}

@media (min-width: 768px) {
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .col-md-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .flex-md-row { flex-direction: row !important; }
  .align-items-md-center { align-items: center !important; }
  .px-md-5 { padding-right: var(--space-6) !important; padding-left: var(--space-6) !important; }
  .row-cols-md-3 > * { flex: 0 0 auto; width: 33.333333%; }
  .justify-content-md-end { justify-content: flex-end !important; }
}

@media (min-width: 992px) {
  .col-lg-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-lg-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-lg-9 { flex: 0 0 auto; width: 75%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-lg-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-lg { flex: 1 0 0%; min-width: 0; }
  .justify-content-lg-end { justify-content: flex-end !important; }
  .d-lg-none { display: none !important; }
  .flex-lg-row { flex-direction: row !important; }
  .align-items-lg-center { align-items: center !important; }
  .mt-lg-0 { margin-top: 0 !important; }
  .mb-lg-0 { margin-bottom: 0 !important; }
  .me-lg-2 { margin-right: var(--space-2) !important; }
  .pe-lg-5 { padding-right: var(--space-6) !important; }
  .w-lg-auto { width: auto !important; }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }

  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex: 1 1 auto;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background: transparent !important;
    transform: none !important;
    transition: none;
  }

  .navbar-expand-lg .offcanvas-body {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: flex-end;
    overflow-y: visible;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .site-header-menu.mx-auto {
    margin-left: auto !important;
    margin-right: var(--space-6) !important;
  }

  .site-header-actions {
    flex-shrink: 0;
    margin-left: 0 !important;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .site-header .offcanvas,
  .site-header .offcanvas-lg,
  .site-header .offcanvas-header,
  .site-header .offcanvas-body {
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .stylr-home .home-hero__grid > [class*="col-lg-6"] {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 991.98px) {
  .site-header .container {
    min-height: 68px;
  }

  .stylr-home .home-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .stylr-home .home-hero h1,
  .stylr-home .home-hero p.ft-20 {
    max-width: none;
  }

  .stylr-home .home-hero__frame {
    margin-inline: auto;
  }

  .stylr-home .home-daily__item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .stylr-home .home-section > .container {
    padding-top: var(--space-7) !important;
    padding-bottom: var(--space-7) !important;
  }
}

@media (max-width: 767.98px) {
  .site-header .navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 0.12em;
  }

  .stylr-home .home-hero > .container,
  .stylr-home .home-process > .container,
  .stylr-home .home-features > .container,
  .stylr-home .home-daily > .container,
  .stylr-home .home-before-after > .container,
  .stylr-home .home-faq > .container,
  .stylr-home .home-cta > .container {
    padding-top: var(--space-7) !important;
    padding-bottom: var(--space-7) !important;
  }

  .stylr-home .home-hero h1 {
    font-size: clamp(2.15rem, 8vw, 3rem) !important;
    line-height: 0.98 !important;
  }

  .stylr-home .home-hero__grid > .col-lg-6:first-child {
    text-align: center;
  }

  .stylr-home .home-hero p.ft-20 {
    font-size: 1rem !important;
    line-height: 1.65;
  }

  .stylr-home .home-hero__actions {
    justify-content: center;
  }

  .stylr-home .hero-proof-list {
    margin-inline: auto;
    text-align: left;
  }

  .stylr-home .home-hero__actions .btn,
  .stylr-home .home-cta__panel .btn {
    width: 100%;
    min-width: 0;
  }

  .stylr-home .home-hero__frame img {
    border-radius: var(--radius-xl) !important;
  }

  .stylr-home .home-hero__floating {
    gap: var(--space-2);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
  }

  .stylr-home .home-hero__floating--status {
    top: var(--space-3);
    right: var(--space-3);
  }

  .stylr-home .home-hero__floating--palette {
    left: var(--space-3);
    bottom: var(--space-3);
    width: calc(100% - var(--space-6));
  }

  .stylr-home .home-hero__floating-score {
    width: 3rem;
    height: 3rem;
    border-width: 3px;
    font-size: 0.86rem;
  }

  .stylr-home .home-hero__floating-copy strong {
    font-size: 1rem;
  }

  .stylr-home .home-section-heading h2,
  .stylr-home .home-section-heading--left {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .stylr-home .home-hero__floating-copy span {
    font-size: 0.88rem;
  }

  .stylr-home .home-hero__palette-swatches {
    gap: var(--space-2);
  }

  .stylr-home .home-hero__palette-label {
    font-size: var(--font-size-small);
  }

  .stylr-home .home-hero__palette-value {
    font-size: var(--font-size-small);
  }

  .stylr-home .home-hero__palette-swatches .swatch,
  .stylr-home .home-hero__palette-value--color .swatch {
    width: var(--space-4);
    height: var(--space-4);
    min-height: var(--space-4);
    flex-basis: var(--space-4);
  }

  .stylr-home .process-card {
    padding: var(--space-5) !important;
  }

  .stylr-home .faq-home-unified .accordion-button {
    padding: var(--space-4);
    font-size: 1rem;
  }

  .stylr-home .faq-home-unified .accordion-body {
    padding: 0 var(--space-4) var(--space-4);
  }

  .stylr-home .home-cta__panel {
    padding-top: var(--space-7) !important;
    padding-bottom: var(--space-7) !important;
  }
}
