* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   TOPBAR
========================= */
.topbar {
  background: #f4f4f4;
  border-bottom: 1px solid #e7e7e7;
}

.topbar-inner {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  padding: 22px 0;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #cfcfcf;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d90429;
  background: #fff;
  font-size: 18px;
}

.top-contact p {
  color: #4d4d4d;
  font-size: 16px;
}

.top-contact a {
  font-size: 18px;
  font-weight: 700;
  color: #d90429;
}

/* =========================
   HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #050505;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.header.header-scrolled {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo {
  width: 145px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav > a,
.nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  transition: 0.25s;
  cursor: pointer;
}

.nav > a:hover,
.nav-link:hover,
.nav > a.active {
  color: #ff2448;
}

.header-cta {
  background: #e1062c;
  color: #fff;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 12px;
  transition: 0.25s;
  white-space: nowrap;
}

.header-cta:hover {
  background: #b40020;
  transform: translateY(-2px);
}

/* =========================
   MENU MOBILE
========================= */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 20px;
}

.menu-toggle.open {
  transform: rotate(90deg);
}

/* =========================
   DROPDOWN
========================= */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 290px;
  background: #23242b;
  padding: 18px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  z-index: 1200;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  color: #fff;
  padding: 14px 24px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  color: #ff395b;
  background: rgba(255, 255, 255, 0.03);
}

/* =========================
   HERO HOME
========================= */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero-home,
.hero-large {
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)),
    url("../images/menuiserie.jpg") center/cover no-repeat;
}

.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  padding: 70px 0 60px;
  position: relative;
  z-index: 2;
}

.hero-badge,
.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -1.5px;
  max-width: 760px;
}

.hero-content h1 span {
  color: #ff4b67;
}

.hero-text,
.hero-content p {
  margin-top: 22px;
  max-width: 720px;
  font-size: 19px;
  color: #f0f0f0;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s;
}

.btn-primary {
  background: #e1062c;
  color: #fff;
}

.btn-primary:hover {
  background: #b40020;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid #d90429;
  color: #d90429;
  background: transparent;
}

.btn-outline:hover {
  background: #d90429;
  color: #fff;
}

.btn-outline-dark {
  border: 1px solid #111;
  color: #111;
  background: transparent;
}

.btn-outline-dark:hover {
  background: #111;
  color: #fff;
}

.hero-card {
  width: 100%;
  max-width: 470px;
  justify-self: end;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.hero-card-inner::before {
  content: "";
  position: absolute;
  inset: -120%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 65%
  );
  transform: rotate(14deg);
  animation: shineCard 6s linear infinite;
  pointer-events: none;
}

@keyframes shineCard {
  0% {
    transform: translateX(-120%) rotate(14deg);
  }
  100% {
    transform: translateX(120%) rotate(14deg);
  }
}

.hero-card-label,
.mini-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff6c81;
  font-weight: 700;
}

.hero-card h2,
.hero-card-inner h3 {
  margin-top: 12px;
  font-size: 38px;
  line-height: 1.08;
}

.hero-card p,
.hero-card-inner p {
  margin-top: 14px;
  color: #e7e7e7;
}

.hero-stats,
.stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-stat,
.stat-box {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stat strong,
.stat-box strong {
  display: block;
  font-size: 24px;
  color: #fff;
}

.hero-stat span,
.stat-box span {
  font-size: 14px;
  color: #ededed;
}

/* =========================
   SERVICES
========================= */
.section {
  padding: 90px 0;
}

.section-tag {
  display: inline-block;
  color: #d90429;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-tag.light {
  color: #ff7488;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.white h2,
.section-heading.white p {
  color: #fff;
}

.section-heading h2 {
  font-size: 44px;
  line-height: 1.08;
  font-weight: 800;
  color: #111;
}

.section-heading p {
  color: #5d5d5d;
  font-size: 18px;
  margin-top: 16px;
}

.services-grid,
.services-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-card-content {
  padding: 24px;
}

.mini-tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 700;
  color: #d90429;
  margin-bottom: 10px;
}

.service-card-content h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.service-card-content p {
  color: #5d5d5d;
  margin-bottom: 14px;
}

.service-card-content a {
  color: #d90429;
  font-weight: 700;
}

/* =========================
   TWO COLUMNS
========================= */
.light-section {
  background: #fafafa;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.text-block h2 {
  font-size: 42px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.text-block p {
  color: #5d5d5d;
  font-size: 18px;
  margin-bottom: 14px;
}

.image-block {
  overflow: hidden;
  border-radius: 28px;
}

.image-block img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 28px;
  transition: transform 0.6s ease;
}

.image-block:hover img {
  transform: scale(1.05);
}

/* =========================
   METRICS / DARK
========================= */
.dark-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)),
    url("../images/facades.jpg") center/cover no-repeat;
}

.metrics-grid,
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.metric-box,
.guarantee-box {
  padding: 24px;
  border-radius: 22px;
  text-align: center;
  font-weight: 600;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.metric-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(6px);
}

.metric-box strong {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}

.metric-box span {
  color: #ededed;
}

.section .guarantees-grid .guarantee-box {
  background: #ffffff;
  color: #111111;
  border: 1px solid #e7e7e7;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.dark-section .guarantee-box {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.guarantee-box:hover,
.metric-box:hover {
  transform: translateY(-6px);
}

/* =========================
   REALISATIONS
========================= */
.realizations-grid,
.gallery-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.real-card,
.gallery-home-item {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.real-card img,
.gallery-home-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.real-card:hover img,
.gallery-home-item:hover img {
  transform: scale(1.05);
}

.real-card figcaption {
  padding: 16px 18px;
  font-weight: 700;
  color: #111;
}

/* =========================
   TRUST BAND
========================= */
.trust-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.trust-text h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.trust-text p {
  font-size: 18px;
  color: #5d5d5d;
}

.trust-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-logo img {
  max-width: 220px;
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   CONTACT PREVIEW
========================= */
.contact-preview-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.contact-preview-grid h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.contact-preview-grid p {
  color: #5d5d5d;
  font-size: 18px;
}

.contact-preview-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.preview-box {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.preview-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.preview-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.preview-box a,
.preview-box span {
  color: #d90429;
  font-weight: 700;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #0d0d11;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr 0.8fr;
  gap: 30px;
  padding: 70px 0 36px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 18px;
}

.footer h4 {
  margin-bottom: 16px;
  font-size: 18px;
}

.footer p,
.footer li,
.footer a {
  color: #d0d0d0;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.qualibat {
  width: 120px;
  background: #fff;
  padding: 8px;
  border-radius: 14px;
  margin-top: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
  color: #cfcfcf;
  font-size: 14px;
}

/* =========================
   PAGE HERO
========================= */
.page-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.page-hero-inner {
  padding: 90px 0;
}

.page-hero h1 {
  font-size: 64px;
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 760px;
  font-size: 20px;
  color: #f0f0f0;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.engagement-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.engagement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.engagement-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.engagement-card p {
  color: #5d5d5d;
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-list-card {
  display: block;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: inherit;
}

.service-list-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.service-list-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-list-card div {
  padding: 22px;
}

.service-list-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #111111;
}

.service-list-card p {
  color: #5d5d5d;
}

/* =========================
   WIDGET DEVIS
========================= */
.quote-widget {
  position: fixed;
  top: 140px;
  right: 0;
  width: 360px;
  background: #f3f3f3;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
  z-index: 2000;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
  border-left: 1px solid #e2e2e2;
  transform: translateX(110%);
}

.quote-widget.open {
  transform: translateX(0);
}

.quote-widget.closed {
  transform: translateX(110%);
}

.quote-widget-header {
  background: #e1062c;
  color: #fff;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quote-widget-header h3 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.quote-close {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.quote-form {
  padding: 20px;
  display: grid;
  gap: 14px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  background: #fff;
  padding: 16px 18px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  color: #222;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: #e1062c;
  box-shadow: 0 0 0 4px rgba(225, 6, 44, 0.09);
}

.quote-form textarea {
  min-height: 140px;
  resize: vertical;
}

.quote-submit {
  height: 54px;
  border: none;
  background: #1c1d24;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
  border-radius: 999px;
}

.quote-submit:hover {
  background: #e1062c;
  transform: translateY(-2px);
}

.quote-toggle {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 2100;
  border: none;
  background: #e1062c;
  color: #fff;
  padding: 16px 22px;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(225, 6, 44, 0.3);
  display: block;
}

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #d90429;
  color: #fff;
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 35px rgba(217, 4, 41, 0.35);
  z-index: 1500;
}

.floating-call.pulse {
  animation: callPulse 1.2s ease;
}

@keyframes callPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(225, 6, 44, 0.42);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 18px rgba(225, 6, 44, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(225, 6, 44, 0);
  }
}

/* =========================
   REVEAL
========================= */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .contact-preview-boxes {
    grid-template-columns: 1fr;
  }

  .quote-widget {
    width: 330px;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .two-col,
  .contact-preview-grid,
  .footer-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .services-grid-home,
  .metrics-grid,
  .guarantees-grid,
  .gallery-grid-home,
  .realizations-grid,
  .service-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .quote-widget {
    right: 0;
    left: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-height: 82vh;
    overflow-y: auto;
    transform: translateY(110%);
    border-left: none;
    border-top: 1px solid #ddd;
  }

  .quote-widget.open {
    transform: translateY(0);
  }

  .quote-widget.closed {
    transform: translateY(110%);
  }
}

@media (max-width: 860px) {
  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav.active {
    display: flex;
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    background: #050505;
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.active .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
    margin-top: 10px;
    box-shadow: none;
    background: #1f2026;
  }

  .hero-grid {
    min-height: auto;
    padding: 70px 0;
  }

  .hero-content h1,
  .text-block h2,
  .gallery-header h2,
  .contact-preview-grid h2,
  .trust-text h2,
  .section-heading h2,
  .page-hero h1 {
    font-size: 38px;
  }

  .topbar-inner {
    justify-content: flex-start;
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .services-grid,
  .services-grid-home,
  .metrics-grid,
  .guarantees-grid,
  .gallery-grid-home,
  .realizations-grid,
  .service-list-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p,
  .text-block p,
  .contact-preview-grid p,
  .section-heading p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-stats,
  .stats {
    grid-template-columns: 1fr;
  }

  .floating-call {
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
  }

  .quote-toggle {
    left: 14px;
    right: 14px;
    bottom: 78px;
    text-align: center;
  }
}

main {
  display: block;
}

.hero,
.page-hero,
.section {
  margin-top: 0;
}

.hero-home {
  margin-top: 0;
}

/* Supprime le petit carré blanc parasite au-dessus du footer */
.scroll-top,
.back-to-top,
.floating-square,
.footer-float,
.quote-widget::before,
.quote-widget::after {
  display: none !important;
}

footer,
.footer {
  position: relative;
  z-index: 5;
}

.floating-call,
.quote-toggle {
  border: none !important;
}

body *[style*="width: 40px"][style*="height: 40px"],
body *[style*="width:40px"][style*="height:40px"] {
  display: none !important;
}

.qualibat-home {
  width: 260px;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 18px;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  object-fit: contain;
}