@font-face {
  font-family: "Syne Fallback";
  src: local("Arial Black"), local("Arial");
  size-adjust: 105%;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Inter Fallback";
  src: local("Arial"), local("Helvetica");
  size-adjust: 107%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}
:root {
  --green: #018837;
  --green-dark: #016a2b;
  --green-light: #02a344;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #1a1a1a;
  --font-heading: "Syne", "Syne Fallback", system-ui, sans-serif;
  --font-body: "Inter", "Inter Fallback", system-ui, sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader.loaded .preloader__icon {
  transform: scale(1.2);
  opacity: 0;
}
.preloader.loaded .preloader__spinner {
  transform: scale(1.3);
  opacity: 0;
}
.preloader__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  animation: preloaderPulse 1.2s ease-in-out infinite;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  filter: drop-shadow(0 0 20px rgba(1, 136, 55, 0.3));
}
@keyframes preloaderPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(1, 136, 55, 0.3));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(1, 136, 55, 0.5));
  }
}
.preloader__spinner {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: preloaderSpin 0.8s linear infinite;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}
@keyframes preloaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1320px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}
.header:hover {
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 2px 4px rgba(0, 0, 0, 0.02);
}
.header.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(-100%);
  pointer-events: none;
}
.header__container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem 0.25rem 0;
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img {
  height: 80px;
  width: auto;
}
.header__nav {
  display: flex;
  justify-content: center;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 0.5rem 0.6rem;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.header__menu a::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 0.6rem;
  right: 0.6rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header__menu a:hover {
  color: var(--gray-900);
}
.header__menu a:hover::after {
  transform: scaleX(1);
}
.header__menu a.active {
  color: var(--green);
}
.header__menu a.active::after {
  transform: scaleX(1);
}
.header__separator {
  width: 2px;
  height: 32px;
  background: var(--green);
  flex-shrink: 0;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
.header__actions--mobile {
  display: none;
}
.header__socials {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.25rem;
}
.header__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.header__social--instagram {
  color: #e4405f;
}
.header__social--facebook {
  color: #1877f2;
}
.header__social:hover {
  transform: scale(1.1);
}
.header__eshop {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green);
  color: var(--white);
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(1, 136, 55, 0.25);
}
.header__eshop:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(1, 136, 55, 0.35),
    0 0 0 3px rgba(1, 136, 55, 0.1);
}
.header__eshop-cart {
  transition: transform 0.3s ease;
}
.header__eshop:hover .header__eshop-cart {
  animation: cartRollOut 0.7s ease;
}
@keyframes cartRollOut {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(50px) rotate(20deg);
    opacity: 0;
  }
  51% {
    transform: translateX(-30px) rotate(-10deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
.header__pro {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--gray-700);
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1.5px solid var(--gray-200);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__pro:hover {
  color: var(--green);
  border-color: var(--green);
  background: rgba(1, 136, 55, 0.04);
  box-shadow: 0 0 0 4px rgba(1, 136, 55, 0.08);
}
.header__pro svg {
  transition: all 0.25s ease;
}
.header__pro:hover svg {
  stroke: var(--green);
}
.header__cta {
  display: inline-flex;
  align-items: center;
  background: var(--gray-900);
  color: var(--white);
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__cta:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.header__burger:hover {
  background: rgba(0, 0, 0, 0.04);
}
.header__burger span {
  width: 20px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 1080px) {
  .header {
    width: calc(100% - 2rem);
  }
  .header__menu {
    gap: 0;
  }
  .header__menu a {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
  .header__actions {
    gap: 0.4rem;
  }
  .header__eshop,
  .header__pro,
  .header__cta {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
  }
}
@media (max-width: 1340px) {
  .header {
    border-radius: 16px;
    top: 0.75rem;
  }
  .header__container {
    padding: 0.625rem 1rem;
  }
  .header__separator {
    display: none;
  }
  .header__actions--desktop {
    display: none;
  }
  .header__burger {
    display: flex;
    z-index: 1001;
    margin-left: auto;
  }
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 12vh;
    z-index: 1000;
  }
  .header__nav.active {
    display: flex;
  }
  .header__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }
  .header__menu a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    padding: 0.35rem 1rem;
  }
  .header__menu a::after {
    display: none;
  }
  .header__menu a.active {
    color: var(--green) !important;
  }
  .header__actions--mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 280px;
  }
  .header__nav .header__cta {
    display: none;
  }
  .header__nav .header__eshop {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    background: var(--green);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 12px;
  }
  .header__nav .header__pro {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 12px;
  }
  .header__nav .header__pro svg {
    stroke: var(--white);
  }
  .header__nav .header__socials {
    display: flex;
    gap: 1rem;
  }
  .header__nav .header__social {
    width: 44px;
    height: 44px;
    color: var(--white);
  }
  .header__nav .header__social--instagram {
    color: #e4405f;
  }
  .header__nav .header__social--facebook {
    color: #1877f2;
  }
  .header__burger.active {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
  }
  .header__burger.active span {
    background: var(--white);
  }
  .header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header__burger.active span:nth-child(2) {
    opacity: 0;
  }
  .header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  contain: layout style paint;
}
.hero__bg {
  position: absolute;
  inset: -10%;
  background: #0a1a0f;
  z-index: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 180px;
  padding-bottom: 100px;
}
.hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  min-height: 400px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(1, 136, 55, 0.15);
  border: 1px solid rgba(1, 136, 55, 0.3);
  color: var(--green);
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease 0.1s forwards;
  opacity: 0;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeIn 0.6s ease 0.2s forwards;
  opacity: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  min-height: 1.1em;
}
.hero__words {
  display: block;
  color: var(--green);
  background: linear-gradient(
    90deg,
    var(--green) 0%,
    var(--green) 40%,
    #4ade80 50%,
    var(--green) 60%,
    var(--green) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s ease-in-out infinite;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.hero__words.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}
.hero__words.fade-in {
  opacity: 1;
  transform: translateY(0);
}
@keyframes shine {
  0%,
  100% {
    background-position: 100% 0;
  }
  50% {
    background-position: -100% 0;
  }
}
.hero__text {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.6s ease 0.3s forwards;
  opacity: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  animation: fadeIn 0.6s ease 0.4s forwards;
  opacity: 0;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero__btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(1, 136, 55, 0.4);
}
.hero__btn--primary:hover {
  background: var(--green-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(1, 136, 55, 0.5);
}
.hero__btn--primary svg {
  transition: transform 0.3s ease;
}
.hero__btn--primary:hover svg {
  transform: translateX(4px);
}
.hero__btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero__btn--secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.hero__btn--secondary:hover {
  color: var(--gray-900);
  border-color: var(--white);
  transform: translateY(-3px);
}
.hero__btn--secondary:hover::before {
  transform: scaleX(1);
}
.hero__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  animation: fadeIn 0.6s ease 0.5s forwards;
  opacity: 0;
}
.hero__stat {
  text-align: center;
}
.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  min-width: 80px;
  min-height: 2.25rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
  display: block;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}
.hero__stars {
  display: flex;
  justify-content: center;
  gap: 0.125rem;
  color: #fbbf24;
  margin-bottom: 0.25rem;
}
.hero__stars svg {
  opacity: 0;
  animation: starFade 0.3s ease forwards;
}
.hero__stars svg:nth-child(1) {
  animation-delay: 0.8s;
}
.hero__stars svg:nth-child(2) {
  animation-delay: 0.9s;
}
.hero__stars svg:nth-child(3) {
  animation-delay: 1s;
}
.hero__stars svg:nth-child(4) {
  animation-delay: 1.1s;
}
.hero__stars svg:nth-child(5) {
  animation-delay: 1.2s;
}
@keyframes starFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 0.6s ease 0.7s forwards;
  opacity: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}
.hero__scroll svg {
  animation: float 2s ease-in-out infinite;
}
.hero__scroll:hover {
  color: rgba(255, 255, 255, 0.8);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@media (max-width: 968px) {
  .hero {
    min-height: 90vh;
  }
  .hero__content {
    padding: 0 1rem;
  }
  .hero__subtitle {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero__description {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero__btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
  .hero__stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .hero__stat {
    min-width: 100px;
  }
  .hero__stat-divider {
    display: none;
  }
  .hero__stat-value {
    font-size: 1.75rem;
  }
  .hero__stat-label {
    font-size: 0.75rem;
  }
  .hero__scroll {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__stats {
    gap: 1rem;
  }
  .hero__stat {
    min-width: 80px;
  }
  .hero__stat-value {
    font-size: 1.5rem;
  }
}
.solutions {
  padding: 4rem 0 6rem;
  background: var(--gray-50);
}
.solutions__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.solutions__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.solutions__title-accent {
  color: var(--green);
}
.solutions__subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.solutions__card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.15s ease,
    opacity 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  opacity: 0;
  transform: translateY(40px);
}
.solutions__card.visible {
  opacity: 1;
  transform: translateY(0);
}
.solutions__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(1, 136, 55, 0.15);
  border-color: var(--green);
}
.solutions__card.visible:hover {
  transform: translateY(-8px);
}
.solutions__card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}
.solutions__card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  color: var(--gray-400);
}
.solutions__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.solutions__card:hover .solutions__card-image img {
  transform: scale(1.05);
}
.solutions__card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.solutions__card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.solutions__card-text {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.solutions__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 600;
  transition: gap 0.3s ease;
}
.solutions__card:hover .solutions__card-link {
  gap: 0.75rem;
}
.solutions__card-link svg {
  transition: transform 0.3s ease;
}
.solutions__card:hover .solutions__card-link svg {
  transform: translateX(4px);
}
@media (max-width: 1340px) {
  .solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .solutions {
    padding: 4rem 0;
  }
  .solutions__header {
    margin-bottom: 2.5rem;
  }
  .solutions__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .solutions__card-content {
    padding: 1.25rem;
  }
}
.configurateur {
  padding: 4rem 0;
  background: var(--gray-900);
}
.configurateur__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.configurateur__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1;
  position: relative;
  display: inline-block;
  letter-spacing: 0.02em;
}
.configurateur__title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
}
.configurateur__title-accent {
  color: var(--green);
}
.configurateur__subtitle {
  font-size: 1.15rem;
  color: var(--gray-400);
  line-height: 1.7;
}
.configurateur__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.configurateur__card {
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 1.5rem;
  border-radius: 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: visible;
  opacity: 0;
  transform: translateY(30px);
}
.configurateur__card.visible {
  opacity: 1;
  transform: translateY(0);
}
.configurateur__card--3d {
  background: var(--white);
  color: var(--gray-900);
  border: 2px solid transparent;
}
.configurateur__card--standard {
  background: var(--white);
  color: var(--gray-900);
  border: 2px solid transparent;
}
.configurateur__card-image {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 16/9;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.configurateur__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.configurateur__card-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  color: var(--gray-400);
}
.configurateur__card-image img:not([src=""]):not([src*="placeholder"]) + .configurateur__card-image-placeholder {
  display: none;
}
.configurateur__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--green);
}
.configurateur__card:hover .configurateur__card-image img {
  transform: scale(1.08);
}
.configurateur__card-image img {
  transition: transform 0.5s ease;
}
.configurateur__card--3d:hover {
  box-shadow: 0 20px 40px rgba(1, 136, 55, 0.2);
}
.configurateur__card-content {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.configurateur__card-badge {
  position: absolute;
  top: -0.5rem;
  left: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(1, 136, 55, 0.35);
  z-index: 10;
  transform: rotate(-2deg);
}
.configurateur__card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
  letter-spacing: 0.02em;
  line-height: 1;
}
.configurateur__card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-500);
}
.configurateur__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  transition: gap 0.3s ease;
}
.configurateur__card:hover .configurateur__card-link {
  gap: 0.75rem;
}
@media (max-width: 968px) {
  .configurateur__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .configurateur {
    padding: 3rem 0;
  }
  .configurateur__header {
    margin-bottom: 2rem;
  }
  .configurateur__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .configurateur__card {
    padding: 1.25rem;
    border-radius: 16px;
  }
  .configurateur__card-badge {
    display: none;
  }
  .configurateur__card-image {
    aspect-ratio: 4/3;
    margin-bottom: 1rem;
    border-radius: 12px;
  }
  .configurateur__card-image img {
    object-fit: contain;
    object-position: center;
    background: var(--gray-100);
  }
  .configurateur__card-content {
    margin-bottom: 1rem;
  }
  .configurateur__card-title {
    font-size: 1.75rem;
    margin-bottom: 0.4rem;
  }
  .configurateur__card-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .configurateur__card-link {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .configurateur {
    padding: 2.5rem 0;
  }
  .configurateur__card {
    padding: 1rem;
  }
  .configurateur__card-image {
    aspect-ratio: 16/10;
  }
  .configurateur__card-title {
    font-size: 1.5rem;
  }
  .configurateur__card-text {
    font-size: 0.85rem;
  }
}
.testimonials {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 3rem 0;
  overflow: hidden;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 2rem;
}
.testimonials__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}
.testimonials__wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.testimonials__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}
.testimonials__track.animate {
  animation: testimonialScroll 50s linear infinite;
}
.testimonials__track:hover {
  animation-play-state: paused;
}
@keyframes testimonialScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.testimonials__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex-shrink: 0;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: 16px;
  min-width: 320px;
  max-width: 380px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.testimonials__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.testimonials__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.testimonials__google {
  flex-shrink: 0;
}
.testimonials__stars {
  display: flex;
  gap: 0.125rem;
  color: #fbbf24;
  flex-shrink: 0;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testimonials__text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.6;
  white-space: normal;
}
.testimonials__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}
.testimonials__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials__avatar-initials {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.testimonials__author-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.testimonials__author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
}
.testimonials__date {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.testimonials__item--loading {
  background: transparent;
  min-width: auto;
  box-shadow: none;
}
.testimonials__loading {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 2.5rem 0;
  }
  .testimonials__header {
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  .testimonials__title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  .testimonials__track {
    gap: 1rem;
    animation-duration: 35s;
  }
  .testimonials__item {
    min-width: 260px;
    max-width: 300px;
    padding: 1.25rem;
  }
  .testimonials__text {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .testimonials__author {
    font-size: 0.8rem;
  }
  .testimonials__avatar {
    width: 36px;
    height: 36px;
  }
}
.about {
  padding: 6rem 0;
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.about__title-accent {
  color: var(--green);
}
.about__text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about__text strong {
  color: var(--gray-800);
}
.about__values {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.about__value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
}
.about__value svg {
  flex-shrink: 0;
}
.about__timeline {
  position: relative;
  padding-left: 2rem;
}
.about__timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
  border-radius: 2px;
}
.about__timeline::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--green), var(--green-light));
  border-radius: 2px;
  transition: height 0.8s ease;
}
.about__timeline.animate::after {
  height: 100%;
}
.about__timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.about__timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.about__timeline-item:last-child {
  padding-bottom: 0;
}
.about__timeline-dot {
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  background: var(--gray-300);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.about__timeline-item.visible .about__timeline-dot {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(1, 136, 55, 0.2);
  transform: scale(1.1);
}
.about__timeline-content {
  background: var(--gray-50);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.about__timeline-content:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.about__timeline-year {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: var(--green);
  display: block;
  margin-bottom: 0.25rem;
}
.about__timeline-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 968px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 640px) {
  .about {
    padding: 3rem 0;
  }
  .about__title {
    font-size: 2rem;
  }
  .about__text {
    font-size: 0.95rem;
  }
  .about__values {
    flex-direction: column;
    gap: 0.75rem;
  }
  .about__value {
    font-size: 0.85rem;
  }
  .about__timeline {
    padding-left: 1.5rem;
  }
  .about__timeline-item {
    padding-left: 1rem;
  }
  .about__timeline-dot {
    left: -1.5rem;
  }
  .about__timeline-year {
    font-size: 1.25rem;
  }
  .about__timeline-content {
    padding: 1rem;
  }
  .about__timeline-content p {
    font-size: 0.9rem;
  }
}
.contact-banner {
  background: var(--gray-900);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.contact-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
.contact-banner__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--white);
  text-align: center;
  margin: 0;
}
.contact-banner__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.contact-banner__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: all 0.3s ease;
}
.contact-banner__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(1, 136, 55, 0.3);
  transform: translateY(-3px);
}
.contact-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(1, 136, 55, 0.15);
  border: 1px solid rgba(1, 136, 55, 0.3);
  border-radius: 12px;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.contact-banner__item:hover .contact-banner__icon {
  transform: scale(1.05);
  background: rgba(1, 136, 55, 0.25);
}
.contact-banner__icon svg {
  color: var(--green);
}
.contact-banner__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact-banner__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
}
.contact-banner__text span:not(.contact-banner__label):not(.contact-banner__status),
.contact-banner__text a {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-banner__text a:hover {
  color: var(--white);
}
.contact-banner__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
}
.contact-banner__status.open {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}
.contact-banner__status.open::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.contact-banner__status.closed {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}
.contact-banner__status.closed::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.contact-banner__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-banner__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-banner__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.contact-banner__socials a:hover {
  transform: translateY(-3px) scale(1.1);
}
.contact-banner__socials a[aria-label="Instagram"] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}
.contact-banner__socials a[aria-label="Instagram"]:hover {
  box-shadow: 0 6px 25px rgba(225, 48, 108, 0.6);
}
.contact-banner__socials a[aria-label="Facebook"] {
  background: #1877f2;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}
.contact-banner__socials a[aria-label="Facebook"]:hover {
  box-shadow: 0 6px 25px rgba(24, 119, 242, 0.6);
}
.contact-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.contact-banner__btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(1, 136, 55, 0.3);
}
.contact-banner__btn svg {
  transition: transform 0.3s ease;
}
.contact-banner__btn:hover svg {
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .contact-banner__grid {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .contact-banner__item {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .contact-banner {
    padding: 2rem 0;
  }
  .contact-banner .container {
    gap: 1.5rem;
  }
  .contact-banner__title {
    font-size: 1.75rem;
  }
  .contact-banner__grid {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .contact-banner__item {
    width: 100%;
    justify-content: flex-start;
    padding: 1rem 1.25rem;
  }
  .contact-banner__icon {
    width: 42px;
    height: 42px;
  }
  .contact-banner__text span:not(.contact-banner__label),
  .contact-banner__text a {
    font-size: 0.85rem;
  }
  .contact-banner__btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .contact-banner__item {
    padding: 0.875rem 1rem;
    gap: 0.75rem;
  }
  .contact-banner__icon {
    width: 38px;
    height: 38px;
  }
  .contact-banner__icon svg {
    width: 18px;
    height: 18px;
  }
}
.footer {
  background: var(--gray-50);
  padding: 4rem 0 0;
  border-top: 3px solid var(--green);
  position: relative;
  z-index: 50;
}
.footer--solutions {
  scroll-snap-align: start;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-200);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer__logo img {
  height: 80px;
  width: auto;
}
.footer__tagline {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer__socials {
  display: flex;
  gap: 0.6rem;
}
.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.footer__socials a[aria-label="Facebook"] {
  background: #1877f2;
  color: var(--white);
}
.footer__socials a[aria-label="Instagram"] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
}
.footer__socials a:hover {
  transform: translateY(-3px) scale(1.05);
}
.footer__col h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__col a {
  color: var(--gray-600);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer__col a:hover {
  color: var(--green);
}
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer__contact-list svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__contact-list a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__contact-list a:hover {
  color: var(--green);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}
.footer__bottom p {
  color: var(--gray-500);
  font-size: 0.85rem;
}
.footer__legal {
  display: flex;
  gap: 2rem;
}
.footer__legal a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}
.footer__legal a:hover {
  color: var(--green);
}
@media (max-width: 968px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .footer {
    padding: 2.5rem 0 0;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: center;
  }
  .footer__brand {
    align-items: center;
  }
  .footer__tagline {
    text-align: center;
    max-width: 100%;
  }
  .footer__socials {
    justify-content: center;
  }
  .footer__col h4 {
    margin-bottom: 1rem;
  }
  .footer__col ul {
    align-items: center;
  }
  .footer__contact-list li {
    justify-content: center;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.25rem 0;
  }
  .footer__bottom p {
    font-size: 0.8rem;
  }
  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
  }
  .footer__legal a {
    font-size: 0.8rem;
  }
}
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  min-width: 56px;
  min-height: 56px;
  padding: 0.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    box-shadow 0.3s ease,
    gap 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.back-to-top img {
  width: 38px;
  height: 38px;
}
.back-to-top__text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  transition:
    max-width 0.4s ease,
    opacity 0.3s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  animation: popIn 0.4s ease forwards;
}
@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  70% {
    transform: translateY(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.back-to-top:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  gap: 0.5rem;
}
.back-to-top:hover .back-to-top__text {
  max-width: 150px;
  opacity: 1;
}
@media (max-width: 768px) {
  .back-to-top {
    right: 1rem;
    bottom: 5rem;
    min-width: 56px;
    min-height: 56px;
    padding: 0;
  }
  .back-to-top img {
    width: 32px;
    height: 32px;
  }
  .back-to-top__text {
    display: none;
  }
}
.floating-gate {
  position: fixed;
  left: 1.5rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  z-index: 998;
}
.floating-gate__icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 2px solid var(--gray-100);
}
.floating-gate:hover .floating-gate__icon {
  transform: scale(1.08);
  box-shadow: 0 8px 35px rgba(1, 136, 55, 0.35);
  border-color: var(--green);
}
.floating-gate__label {
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  box-shadow: 0 3px 15px rgba(1, 136, 55, 0.3);
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.floating-gate:hover .floating-gate__label {
  opacity: 1;
  transform: translateY(0);
}
.gate {
  position: relative;
  width: 50px;
  height: 40px;
}
.gate__pillar {
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 36px;
  background: linear-gradient(180deg, var(--green-dark) 0%, #014d20 100%);
  border-radius: 3px 3px 0 0;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.2);
}
.gate__pillar::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 6px;
  background: var(--green-dark);
  border-radius: 3px 3px 0 0;
}
.gate__pillar--left {
  left: 0;
}
.gate__pillar--right {
  right: 0;
}
.gate__door {
  position: absolute;
  bottom: 3px;
  width: 18px;
  height: 28px;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.gate__door::before,
.gate__door::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 1px;
}
.gate__door::before {
  top: 7px;
}
.gate__door::after {
  bottom: 7px;
}
.gate__door--left {
  left: 6px;
  transform-origin: left center;
  animation: openGateLeft 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.gate__door--right {
  right: 6px;
  transform-origin: right center;
  animation: openGateRight 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes openGateLeft {
  0%,
  15% {
    transform: perspective(80px) rotateY(0deg);
  }
  35%,
  65% {
    transform: perspective(80px) rotateY(-70deg);
  }
  85%,
  100% {
    transform: perspective(80px) rotateY(0deg);
  }
}
@keyframes openGateRight {
  0%,
  15% {
    transform: perspective(80px) rotateY(0deg);
  }
  35%,
  65% {
    transform: perspective(80px) rotateY(70deg);
  }
  85%,
  100% {
    transform: perspective(80px) rotateY(0deg);
  }
}
@media (max-width: 768px) {
  .floating-gate {
    left: 1rem;
    bottom: 1rem;
  }
  .floating-gate__icon {
    width: 56px;
    height: 56px;
  }
  .floating-gate__label {
    display: none;
  }
  .gate {
    width: 32px;
    height: 26px;
  }
  .gate__pillar {
    width: 4px;
    height: 22px;
  }
  .gate__pillar::after {
    width: 6px;
    height: 4px;
    top: -2px;
  }
  .gate__door {
    left: 4px;
    width: 11px;
    height: 17px;
  }
  .gate__door--right {
    left: auto;
    right: 4px;
  }
  .gate__door::before,
  .gate__door::after {
    width: 7px;
    height: 1.5px;
  }
  .gate__door::before {
    top: 4px;
  }
  .gate__door::after {
    bottom: 4px;
  }
}
.floating-phone {
  position: fixed;
  right: 1.5rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--green);
  color: var(--white);
  min-width: 56px;
  min-height: 56px;
  padding: 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow:
    0 4px 20px rgba(1, 136, 55, 0.4),
    0 0 0 0 rgba(1, 136, 55, 0.4);
  z-index: 999;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    gap 0.3s ease;
  animation: phonePulse 2s ease-in-out infinite;
}
.floating-phone:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 28px rgba(1, 136, 55, 0.5);
  gap: 0.5rem;
  animation: none;
}
.floating-phone__text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition:
    max-width 0.4s ease,
    opacity 0.3s ease;
}
.floating-phone:hover .floating-phone__text {
  max-width: 150px;
  opacity: 1;
}
@keyframes phonePulse {
  0%,
  100% {
    box-shadow:
      0 4px 20px rgba(1, 136, 55, 0.4),
      0 0 0 0 rgba(1, 136, 55, 0.4);
  }
  50% {
    box-shadow:
      0 4px 20px rgba(1, 136, 55, 0.4),
      0 0 0 12px rgba(1, 136, 55, 0);
  }
}
@media (max-width: 768px) {
  .floating-phone {
    right: 1rem;
    bottom: 0.75rem;
    min-width: 56px;
    min-height: 56px;
    padding: 1rem;
  }
  .floating-phone__text {
    display: none;
  }
}
.page-solutions {
  height: 100vh;
  height: 100svh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
.page-solutions.panel-open {
  scroll-snap-type: none;
}
.fullscreen-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.fullscreen-section__bg {
  position: absolute;
  inset: -50px;
  background-color: var(--gray-900);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.1s linear;
  will-change: transform;
}
.fullscreen-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
}
.fullscreen-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.15s ease-out;
  will-change: transform;
}
.fullscreen-section.visible .fullscreen-section__content {
  opacity: 1;
}
.fullscreen-section__number {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  color: var(--green);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.fullscreen-section__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
  min-height: 1.2em;
}
.fullscreen-section__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.fullscreen-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.fullscreen-section__btn:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(1, 136, 55, 0.4);
}
.fullscreen-section__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
.fullscreen-section:nth-child(even) .fullscreen-section__content {
  text-align: left;
  margin-left: 15%;
  margin-right: auto;
}
.fullscreen-section:nth-child(odd) .fullscreen-section__content {
  text-align: right;
  margin-right: 8%;
  margin-left: auto;
}
.fullscreen-section:nth-child(even) .fullscreen-section__text {
  margin-left: 0;
}
.fullscreen-section:nth-child(odd) .fullscreen-section__text {
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  .fullscreen-section__content {
    padding: 1.5rem;
  }
  .fullscreen-section__title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  .fullscreen-section__text {
    font-size: 1rem;
  }
  .fullscreen-section:nth-child(even) .fullscreen-section__content,
  .fullscreen-section:nth-child(odd) .fullscreen-section__content {
    text-align: center;
    margin: 0 auto;
  }
  .fullscreen-section:nth-child(even) .fullscreen-section__text,
  .fullscreen-section:nth-child(odd) .fullscreen-section__text {
    margin: 0 auto 2rem;
  }
  .fullscreen-section__scroll {
    bottom: 1.5rem;
  }
}
.solutions-nav {
  position: fixed;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  opacity: 0;
  animation: fadeInNav 0.8s ease 0.3s forwards;
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.4s ease;
}
.solutions-nav.hidden {
  opacity: 0 !important;
  transform: translateY(-50%) translateX(-20px) scale(0.95);
  filter: blur(4px);
  pointer-events: none;
}
@keyframes fadeInNav {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
.solutions-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.solutions-nav__list::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.solutions-nav__list::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 20px;
  width: 2px;
  height: 0;
  background: var(--green);
  border-radius: 2px;
  transition: height 0.4s ease;
  box-shadow: 0 0 10px rgba(1, 136, 55, 0.5);
}
.solutions-nav__item {
  position: relative;
  z-index: 1;
}
.solutions-nav__item a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}
.solutions-nav__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}
.solutions-nav__dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.solutions-nav__item:hover .solutions-nav__dot {
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}
.solutions-nav__item.active .solutions-nav__dot {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.15);
  box-shadow:
    0 0 20px rgba(1, 136, 55, 0.6),
    0 0 40px rgba(1, 136, 55, 0.3);
}
.solutions-nav__item.active .solutions-nav__dot::after {
  transform: translate(-50%, -50%) scale(1);
  background: var(--white);
}
.solutions-nav__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: var(--font-heading);
}
.solutions-nav__item:hover .solutions-nav__label {
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(4px);
}
.solutions-nav__item.active .solutions-nav__label {
  color: var(--white);
  text-shadow: 0 0 20px rgba(1, 136, 55, 0.5);
}
.solutions-nav__number {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  margin-left: auto;
  padding-left: 0.75rem;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}
.solutions-nav__item:hover .solutions-nav__number {
  color: rgba(255, 255, 255, 0.5);
}
.solutions-nav__item.active .solutions-nav__number {
  color: var(--green);
}
@media (max-width: 1200px) {
  .solutions-nav {
    left: 1.5rem;
  }
  .solutions-nav__label {
    font-size: 0.75rem;
  }
}
@media (max-width: 968px) {
  .solutions-nav {
    left: 1rem;
  }
  .solutions-nav__label,
  .solutions-nav__number {
    display: none;
  }
  .solutions-nav__dot {
    width: 16px;
    height: 16px;
  }
  .solutions-nav__dot::after {
    width: 6px;
    height: 6px;
  }
  .solutions-nav__list::before,
  .solutions-nav__list::after {
    left: 7px;
  }
}
@media (max-width: 640px) {
  .solutions-nav {
    left: 0.75rem;
  }
  .solutions-nav__item a {
    padding: 0.5rem 0;
  }
  .solutions-nav__dot {
    width: 14px;
    height: 14px;
  }
  .solutions-nav__dot::after {
    width: 5px;
    height: 5px;
  }
  .solutions-nav__list::before,
  .solutions-nav__list::after {
    left: 6px;
    top: 14px;
    bottom: 14px;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes lineExpand {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
.fullscreen-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}
.fullscreen-section__number {
  position: relative;
  padding-bottom: 1rem;
}
.fullscreen-section__number::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background: var(--green);
  transition: width 0.6s ease 0.4s;
}
.fullscreen-section.visible .fullscreen-section__number::after {
  width: 60px;
}
.fullscreen-section:nth-child(even) .fullscreen-section__number::after {
  left: 0;
  transform: none;
}
.fullscreen-section:nth-child(odd) .fullscreen-section__number::after {
  left: auto;
  right: 0;
  transform: none;
}
@media (max-width: 768px) {
  .fullscreen-section:nth-child(even) .fullscreen-section__number::after,
  .fullscreen-section:nth-child(odd) .fullscreen-section__number::after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
}
.fullscreen-section .fullscreen-section__number,
.fullscreen-section .fullscreen-section__title,
.fullscreen-section .fullscreen-section__text,
.fullscreen-section .fullscreen-section__btn {
  opacity: 0;
  transform: translateY(40px);
}
.fullscreen-section.visible .fullscreen-section__number {
  animation: slideInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}
.fullscreen-section.visible .fullscreen-section__title {
  animation: slideInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}
.fullscreen-section.visible .fullscreen-section__text {
  animation: slideInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
.fullscreen-section.visible .fullscreen-section__btn {
  animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}
.fullscreen-section:nth-child(even).visible .fullscreen-section__number,
.fullscreen-section:nth-child(even).visible .fullscreen-section__title,
.fullscreen-section:nth-child(even).visible .fullscreen-section__text {
  animation-name: slideInLeft;
}
.fullscreen-section:nth-child(odd).visible .fullscreen-section__number,
.fullscreen-section:nth-child(odd).visible .fullscreen-section__title,
.fullscreen-section:nth-child(odd).visible .fullscreen-section__text {
  animation-name: slideInRight;
}
.fullscreen-section__bg {
  transform: scale(1.1);
  transition: transform 8s ease-out;
}
.fullscreen-section.visible .fullscreen-section__bg {
  transform: scale(1);
}
.fullscreen-section__btn {
  position: relative;
  overflow: hidden;
}
.fullscreen-section__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}
.fullscreen-section__btn:hover::before {
  width: 300px;
  height: 300px;
}
.fullscreen-section__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.fullscreen-section:nth-child(even) .fullscreen-section__buttons {
  justify-content: flex-start;
}
.fullscreen-section:nth-child(odd) .fullscreen-section__buttons {
  justify-content: flex-end;
}
.fullscreen-section__btn--products {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.fullscreen-section__btn--products:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.fullscreen-section__btn--products svg {
  transition: transform 0.3s ease;
}
.fullscreen-section__btn--products:hover svg {
  transform: translateY(3px);
}
.fullscreen-section__btn--products.active svg {
  transform: rotate(180deg);
}
.products-panel {
  background: var(--gray-900);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  scroll-snap-align: none;
}
.products-panel.active {
  max-height: 420px;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.products-panel__container {
  padding: 1rem 4rem 1.25rem 15rem;
  opacity: 0;
  transform: translateY(15px) scale(0.98);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.products-panel.active .products-panel__container {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.35s ease 0.15s,
    transform 0.35s ease 0.15s;
}
.products-panel.closing .products-panel__container,
.products-panel.active.closing .products-panel__container {
  opacity: 0;
  transform: translateY(15px) scale(0.98);
  transition:
    opacity 0.2s ease-out,
    transform 0.2s ease-out;
}
.products-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.products-panel__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.products-panel__close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.products-panel__close svg {
  width: 18px;
  height: 18px;
}
.products-panel__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}
.products-panel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 260px));
  gap: 1rem;
  justify-content: center;
}
.products-panel__item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.products-panel__item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}
.products-panel.active .products-panel__item:hover {
  transform: translateY(-3px);
}
.products-panel.active .products-panel__item {
  opacity: 1;
  transform: translateY(0);
}
.products-panel.active .products-panel__item:nth-child(1) {
  transition-delay: 0.1s;
}
.products-panel.active .products-panel__item:nth-child(2) {
  transition-delay: 0.15s;
}
.products-panel.active .products-panel__item:nth-child(3) {
  transition-delay: 0.2s;
}
.products-panel.active .products-panel__item:nth-child(4) {
  transition-delay: 0.25s;
}
.products-panel__item-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}
.products-panel__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}
.products-panel__item:hover .products-panel__item-image img {
  transform: scale(1.1);
}
.products-panel__item-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  z-index: 0;
}
.products-panel__item-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 136, 55, 0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.products-panel__item:hover .products-panel__item-image::after {
  opacity: 1;
}
.products-panel__item-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: center;
  padding: 0.65rem 0.5rem;
  transition: color 0.3s ease;
}
.products-panel__item:hover .products-panel__item-name {
  color: var(--green);
}
@media (max-width: 968px) {
  .products-panel.active {
    max-height: 420px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .products-panel__container {
    padding: 1rem 1.5rem 1rem 4rem;
  }
  .products-panel__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 260px));
    gap: 0.75rem;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .fullscreen-section__buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .fullscreen-section__buttons .fullscreen-section__btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .fullscreen-section:nth-child(even) .fullscreen-section__buttons,
  .fullscreen-section:nth-child(odd) .fullscreen-section__buttons {
    justify-content: center;
  }
  .products-panel.active {
    max-height: 480px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .products-panel__container {
    padding: 0.75rem 1rem 0.75rem 3rem;
  }
  .products-panel__header {
    margin-bottom: 0.5rem;
  }
  .products-panel__title {
    font-size: 1rem;
  }
  .products-panel__grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 160px));
    gap: 0.5rem;
    justify-content: center;
  }
  .products-panel__item-name {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}
.fullscreen-section__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--green);
  width: 0;
  transition: width 0.3s ease;
}
.fullscreen-section.visible .fullscreen-section__progress {
  width: 100%;
  transition: width 1.5s ease;
}
.config-hero {
  padding: 10rem 0 1rem;
  background: var(--gray-900);
  text-align: center;
}
.config-hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.config-hero__title-accent {
  color: var(--green);
}
.config-hero__subtitle {
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .config-hero {
    padding: 8rem 0 1.5rem;
  }
  .config-hero__subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
.config-tools {
  padding: 2rem 0 5rem;
  background: var(--gray-900);
}
.config-tools .container {
  max-width: 1400px;
}
.config-tools__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .config-tools__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .config-tools {
    padding: 1.5rem 0 3rem;
  }
}
.config-tool {
  position: relative;
  display: block;
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.config-tool:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}
.config-tool__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.config-tool:hover .config-tool__img {
  transform: scale(1.05);
}
.config-tool__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.5) 75%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
  transition: background 0.4s ease;
}
.config-tool:hover .config-tool__overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.6) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
}
.config-tool__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem 0.2rem;
  z-index: 2;
}
.config-tool__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.config-steps {
  padding: 5rem 0;
  background: var(--white);
}
.config-steps__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: 0.02em;
}
.config-steps__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.config-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  padding-bottom: 3rem;
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.config-steps__item.visible {
  opacity: 1;
  transform: translateX(0);
}
.config-steps__item:last-child {
  padding-bottom: 0;
}
.config-steps__item::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 70px;
  width: 2px;
  height: calc(100% - 70px);
  background: var(--gray-200);
}
.config-steps__item:last-child::before {
  display: none;
}
.config-steps__number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  background: var(--green);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.config-steps__content {
  padding-top: 0.75rem;
}
.config-steps__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.config-steps__desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .config-steps {
    padding: 4rem 0;
  }
  .config-steps__title {
    margin-bottom: 3rem;
  }
  .config-steps__grid {
    padding: 0 1rem;
  }
}
@media (max-width: 600px) {
  .config-steps__item {
    gap: 1.25rem;
  }
  .config-steps__number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .config-steps__item::before {
    left: 24px;
    top: 50px;
    height: calc(100% - 50px);
  }
  .config-steps__name {
    font-size: 1.5rem;
  }
  .config-steps__desc {
    font-size: 0.9375rem;
  }
}
.config-help {
  padding: 5rem 0;
  background: var(--gray-900);
}
.config-help__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.config-help__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.config-help__text {
  font-size: 1.125rem;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
}
.config-help__contacts {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.config-help__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: var(--gray-800);
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.config-help__contact:hover {
  background: var(--green);
  transform: translateY(-3px);
}
.config-help__icon {
  width: 50px;
  height: 50px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s ease;
}
.config-help__contact:hover .config-help__icon {
  background: var(--white);
  color: var(--green);
}
.config-help__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.config-help__label {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.3s ease;
}
.config-help__contact:hover .config-help__label {
  color: rgba(255, 255, 255, 0.8);
}
.config-help__value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .config-help {
    padding: 4rem 0;
  }
  .config-help__text {
    font-size: 1rem;
  }
  .config-help__contacts {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .config-help__contact {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .config-help__contact {
    padding: 1rem 1.5rem;
  }
  .config-help__icon {
    width: 45px;
    height: 45px;
  }
  .config-help__icon svg {
    width: 20px;
    height: 20px;
  }
  .config-help__value {
    font-size: 1.125rem;
  }
}
.config-form {
  padding: 5rem 0;
  background: var(--gray-800);
}
.config-form__wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--gray-900);
  border-radius: 1.5rem;
  padding: 3rem;
}
@media (max-width: 768px) {
  .config-form__wrapper {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
.config-form__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.config-form__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.config-form__subtitle {
  color: var(--gray-400);
}
.config-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .config-form__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.config-form__section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.config-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 500px) {
  .config-form__row {
    grid-template-columns: 1fr;
  }
}
.config-form__field {
  margin-bottom: 1.25rem;
}
.config-form__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}
.config-form__field input,
.config-form__field select,
.config-form__field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: 0.5rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.config-form__field input:focus,
.config-form__field select:focus,
.config-form__field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(1, 136, 55, 0.2);
}
.config-form__field input::placeholder,
.config-form__field textarea::placeholder {
  color: var(--gray-500);
}
.config-form__field select {
  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='%239ca3af' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.config-form__field select option {
  background: var(--gray-800);
  color: var(--white);
}
.config-form__field textarea {
  resize: vertical;
  min-height: 120px;
}
.config-form__field input[type="file"] {
  padding: 0.75rem;
  cursor: pointer;
}
.config-form__field input[type="file"]::file-selector-button {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  background: var(--gray-700);
  color: var(--white);
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.config-form__field input[type="file"]::file-selector-button:hover {
  background: var(--gray-600);
}
.config-form__hint {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
}
.config-form__footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.config-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.config-form__checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}
.config-form__checkbox span {
  font-size: 0.875rem;
  color: var(--gray-400);
}
.config-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--green);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.config-form__submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(1, 136, 55, 0.3);
}
.config-3d {
  padding-top: 120px;
  padding-bottom: 4rem;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}
.config-3d__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.config-3d__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.config-3d__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.config-3d__title span {
  color: var(--green);
}
.config-3d__subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
}
.config-3d__wrapper {
  background: var(--white);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.08),
    0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-200);
}
.config-3d__iframe {
  width: 100%;
  height: calc(100vh - 300px);
  min-height: 650px;
  border: none;
  display: block;
}
@media (max-width: 1024px) {
  .config-3d {
    padding-top: 110px;
    padding-bottom: 3rem;
  }
  .config-3d__iframe {
    height: calc(100vh - 260px);
    min-height: 550px;
  }
}
@media (max-width: 768px) {
  .config-3d {
    padding-top: 140px;
    padding-bottom: 2rem;
  }
  .config-3d__container {
    padding: 0 1rem;
  }
  .config-3d__header {
    margin-bottom: 1.25rem;
  }
  .config-3d__title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
  .config-3d__subtitle {
    font-size: 1rem;
  }
  .config-3d__wrapper {
    border-radius: 0.75rem;
  }
  .config-3d__iframe {
    height: calc(100vh - 200px);
    min-height: 450px;
  }
}
@media (max-width: 480px) {
  .config-3d {
    padding-top: 120px;
    padding-bottom: 1.5rem;
  }
  .config-3d__container {
    padding: 0 0.75rem;
  }
  .config-3d__header {
    margin-bottom: 1rem;
  }
  .config-3d__title {
    font-size: 2.25rem;
  }
  .config-3d__subtitle {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
  .config-3d__wrapper {
    border-radius: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  }
  .config-3d__iframe {
    height: calc(100vh - 180px);
    min-height: 400px;
  }
}
/* ===== Header dropdown "Nos solutions" (SEO nav) ===== */
.header__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.header__dropdown-toggle {
  background: none;
  border: 0;
  padding: 0.5rem 0.4rem 0.5rem 0;
  margin-left: -0.65rem;
  cursor: pointer;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}
.header__dropdown-toggle svg {
  transition: transform 0.3s ease;
}
.header__dropdown-toggle:hover {
  color: var(--gray-900);
}
.header__submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__submenu-list a::after,
.header__submenu-all::after {
  display: none;
}
@media (min-width: 1341px) {
  .header__submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 10px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
    padding: 1.1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s;
    z-index: 1100;
  }
  .header__dropdown:hover .header__submenu,
  .header__dropdown:focus-within .header__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 4px);
  }
  .header__dropdown:hover .header__dropdown-toggle svg,
  .header__dropdown:focus-within .header__dropdown-toggle svg {
    transform: rotate(180deg);
  }
  .header__submenu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 0.75rem;
  }
  .header__submenu-list a {
    display: block;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--gray-600);
    white-space: nowrap;
    transition:
      background 0.2s ease,
      color 0.2s ease;
  }
  .header__submenu-list a:hover {
    background: #e8f4ed;
    color: var(--green);
  }
  .header__submenu-all {
    display: block;
    margin-top: 0.7rem;
    padding: 0.6rem 0.85rem 0.15rem;
    border-top: 1px solid var(--gray-100);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    white-space: nowrap;
  }
  .header__submenu-all:hover {
    color: var(--green-dark);
  }
}
@media (max-width: 1340px) {
  .header__dropdown {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .header__dropdown > a {
    display: inline-flex;
    align-items: center;
  }
  .header__dropdown-toggle {
    position: absolute;
    right: 12%;
    top: 0.55rem;
    margin: 0;
    padding: 0.4rem;
    color: rgba(255, 255, 255, 0.75);
  }
  .header__submenu {
    display: none;
    width: 100%;
    padding: 0.25rem 0 0.5rem;
  }
  .header__dropdown.open .header__submenu {
    display: block;
  }
  .header__dropdown.open .header__dropdown-toggle svg {
    transform: rotate(180deg);
  }
  .header__menu .header__submenu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .header__menu .header__submenu-list a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none;
    color: rgba(255, 255, 255, 0.75);
    padding: 0.4rem 1rem;
  }
  .header__menu .header__submenu-list a:hover {
    color: var(--white);
  }
  .header__menu .header__submenu-all {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: none;
    color: var(--green-light);
    padding: 0.5rem 1rem;
    display: block;
    text-align: center;
  }
}
.footer__col--products {
  grid-column: span 1;
}
.footer__col--products ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.75rem;
}
.footer__col--products ul a {
  white-space: nowrap;
}

/* === Blocs mutualisés (extraits des pages, 2026-08) === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #018837;
  color: #fff;
  padding: 12px 18px;
  z-index: 10000;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid #fff;
}
.pq-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
  margin: 8px auto 0;
  text-align: left;
}
.pq-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) {
  .pq-form__row {
    grid-template-columns: 1fr;
  }
}
.pq-form__input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s;
}
.pq-form__input:focus {
  outline: none;
  border-color: var(--green);
}
textarea.pq-form__input {
  resize: vertical;
}
.pq-form__submit {
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
}
.pq-form__note {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-align: center;
  margin: 0;
}
.pq-form__alt-wrap {
  margin-top: 18px;
}
.pq-form__alt {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
}
.pq-form__error {
  display: none;
  color: #dc2626;
  font-size: 0.875rem;
  text-align: center;
  margin: 0;
}
.article-hero {
  padding: 10rem 0 3rem;
  background: var(--gray-900);
}
.article-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.article-hero__breadcrumb a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}
.article-hero__breadcrumb a:hover {
  color: var(--green);
}
.article-hero__breadcrumb span {
  color: var(--gray-500);
}
.article-hero__category {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.article-hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--gray-400);
  font-size: 0.9rem;
}
.article-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-content {
  padding: 4rem 0;
  background: var(--white);
}
.article-content__wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.article-content__featured-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.article-content__featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-700);
}
.article-body h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gray-900);
  margin: 3rem 0 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.article-body h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 2rem 0 1rem;
}
.article-body p {
  margin-bottom: 1.5rem;
}
.article-body ul,
.article-body ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.article-body li {
  margin-bottom: 0.75rem;
}
.article-body strong {
  color: var(--gray-900);
}
.article-body a {
  color: var(--green);
  text-decoration: underline;
}
.article-info-box {
  background: linear-gradient(135deg, rgba(1, 136, 55, 0.1) 0%, rgba(1, 136, 55, 0.05) 100%);
  border: 1px solid rgba(1, 136, 55, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}
.article-info-box__title {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-cta-box {
  background: var(--green);
  border-radius: 16px;
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
  color: var(--white);
}
.article-cta-box h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.article-cta-box p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.article-cta-box a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--green);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.article-cta-box a:hover {
  transform: translateY(-3px);
}
@media (max-width: 640px) {
  .article-hero {
    padding: 8rem 0 2rem;
  }
  .article-hero__meta {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .article-body {
    font-size: 1rem;
  }
  .article-body h2 {
    font-size: 1.75rem;
  }
}

/* Encart action + articles similaires */
.article-action {
  margin: 3rem 0;
  background: #e8f4ed;
  border-radius: 20px;
  padding: 2rem;
}
.article-action__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.article-action ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.article-action a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}
.article-action a:hover {
  text-decoration: underline;
}
.article-similar {
  padding: 4rem 0;
  background: var(--gray-50);
}
.article-similar__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 1.8rem;
}
.article-similar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.article-similar__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.article-similar__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}
.article-similar__tag {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.article-similar__name {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-900);
  line-height: 1.4;
}
.article-similar__link {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  margin-top: auto;
}

/* ================================
   ARTICLE CONTENT (tables, citations, figures)
   Un seul style de tableau pour les articles rédigés (.article-table) et
   générés par Sorank (table nue dans .article-body).
================================ */
.article-body blockquote {
  border-left: 4px solid var(--green);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--gray-50);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--gray-600);
}
.article-body table,
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}
.article-body th,
.article-table th {
  background: var(--gray-900);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}
.article-body td,
.article-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.article-body tr:nth-child(even),
.article-table tr:nth-child(even) {
  background: var(--gray-50);
}
.article-body figure {
  margin: 1.5rem 0;
}
.article-body figcaption {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
}
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.article-body pre {
  background: var(--gray-900);
  color: #eee;
  padding: 1rem;
  border-radius: 12px;
  overflow-x: auto;
}
.article-body a {
  word-break: break-word;
}
@media (max-width: 640px) {
  .article-body table,
  .article-table {
    display: block;
    overflow-x: auto;
  }
}
.coming-soon-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.coming-soon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 20px 100px;
  background: var(--gray-900);
  text-align: center;
}

.coming-soon__content {
  max-width: 600px;
}

.coming-soon__icon {
  width: 100px;
  height: 100px;
  background: rgba(1, 128, 55, 0.1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  animation: pulse 2s ease-in-out infinite;
}

.coming-soon__icon svg {
  width: 50px;
  height: 50px;
  color: var(--green);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(1, 128, 55, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(1, 128, 55, 0);
  }
}

.coming-soon__label {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.coming-soon__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 24px;
}

.coming-soon__title span {
  color: var(--green);
}

.coming-soon__text {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 40px;
}

.coming-soon__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.coming-soon__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.coming-soon__btn--primary {
  background: var(--green);
  color: var(--white);
}

.coming-soon__btn--primary:hover {
  background: #016d2c;
  transform: translateY(-2px);
}

.coming-soon__btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray-700);
}

.coming-soon__btn--secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.coming-soon__btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 600px) {
  .coming-soon {
    padding: 140px 20px 60px;
  }

  .coming-soon__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
  }

  .coming-soon__icon svg {
    width: 40px;
    height: 40px;
  }

  .coming-soon__buttons {
    flex-direction: column;
  }

  .coming-soon__btn {
    justify-content: center;
  }
}

/* ============================================================
   Sections partagees par les templates produit et liste
   (scroll-anim, guide/FAQ SEO, articles lies, "dans la meme gamme")
   ============================================================ */
.scroll-anim {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.scroll-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-anim--delay-1 {
  transition-delay: 0.1s;
}
.scroll-anim--delay-2 {
  transition-delay: 0.2s;
}
.scroll-anim--delay-3 {
  transition-delay: 0.3s;
}
.scroll-anim--delay-4 {
  transition-delay: 0.4s;
}

.seo-guide {
  padding: 100px 0;
  background: var(--gray-50);
}
.seo-guide__label,
.seo-faq__label,
.related-articles__label {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.seo-guide__prose {
  max-width: 780px;
  font-family: "Inter", sans-serif;
  color: var(--gray-600);
  line-height: 1.85;
  font-size: 1rem;
}
.seo-guide__prose h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: var(--gray-900);
  line-height: 1.08;
  margin: 44px 0 14px;
}
.seo-guide__prose h2:first-child {
  margin-top: 0;
}
.seo-guide__prose p {
  margin-bottom: 16px;
}
.seo-guide__prose a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.seo-guide__prose a:hover {
  text-decoration: underline;
}
.seo-faq {
  padding: 100px 0;
  background: var(--white);
}
.seo-faq__title,
.related-articles__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 40px;
}
.seo-faq__list {
  max-width: 780px;
}
.seo-faq__item {
  border-bottom: 1px solid var(--gray-200);
}
.seo-faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gray-900);
  transition: color 0.2s ease;
}
.seo-faq__item summary::-webkit-details-marker {
  display: none;
}
.seo-faq__item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-right: 4px;
}
.seo-faq__item[open] summary {
  color: var(--green);
}
.seo-faq__item[open] summary::after {
  transform: rotate(-135deg);
}
.seo-faq__item p {
  font-family: "Inter", sans-serif;
  color: var(--gray-600);
  line-height: 1.8;
  padding: 0 0 22px;
  max-width: 720px;
}
.related-articles {
  padding: 100px 0;
  background: var(--gray-50);
}
.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.related-card__tag {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.related-card__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gray-900);
  line-height: 1.4;
}
.related-card__excerpt {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.related-card__link {
  margin-top: auto;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
}
@media (max-width: 768px) {
  .seo-guide,
  .seo-faq,
  .related-articles {
    padding: 64px 0;
  }
}

.same-range {
  padding: 70px 0;
  background: var(--gray-50);
}
.same-range__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 24px;
}
.same-range__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.same-range__links a {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.same-range__links a:hover {
  border-color: var(--green);
  color: var(--green);
}
.same-range__links a.same-range__cat {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.same-range__links a.same-range__cat:hover {
  background: var(--green-dark);
}

/* ============================================================
   Template pages produit (.product-*)
   Image de fond du hero fournie par page via --hero-img
   ============================================================ */
.product-landing {
  padding-top: 0;
}

.product-hero {
  position: relative;
  padding: 160px 0 70px;
  background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a1a 100%);
  overflow: hidden;
}
.product-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--hero-img) center/cover no-repeat;
  opacity: 0.85;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.product-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.product-hero__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 32px;
}
.product-hero__breadcrumb a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}
.product-hero__breadcrumb a:hover {
  color: var(--green);
}
.product-hero__breadcrumb svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  flex-shrink: 0;
}
.product-hero__breadcrumb span {
  color: var(--white);
  font-weight: 500;
}
.product-hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--green);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.1s forwards;
  opacity: 0;
}
.product-hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.2s forwards;
  opacity: 0;
}
.product-hero__title span {
  color: var(--green);
}
.product-hero__text {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease 0.3s forwards;
  opacity: 0;
}
.product-hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.4s forwards;
  opacity: 0;
}
.product-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.product-hero__btn--primary {
  background: var(--green);
  color: var(--white);
}
.product-hero__btn--primary:hover {
  background: #016d2c;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(1, 136, 55, 0.3);
}
.product-hero__btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray-600);
}
.product-hero__btn--secondary:hover {
  border-color: var(--white);
  transform: translateY(-3px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-gallery {
  padding: 80px 0;
  background: var(--white);
}
.product-gallery__header {
  text-align: center;
  margin-bottom: 48px;
}
.product-gallery__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gray-900);
}
.product-gallery__title span {
  color: var(--green);
}
.product-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-gallery__item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--gray-100);
  aspect-ratio: 1 / 1;
}
.product-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.product-gallery__item:hover img {
  transform: scale(1.05);
}
.product-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}
.product-gallery__item:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.product-advantages {
  padding: 80px 0;
  background: var(--gray-100);
}
.product-advantages__header {
  text-align: center;
  margin-bottom: 60px;
}
.product-advantages__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gray-900);
}
.product-advantages__title span {
  color: var(--green);
}
.product-advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.advantage-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: 16px;
  border-left: 3px solid var(--green);
  transition: all 0.3s ease;
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.advantage-card__title {
  font-family: "Inter", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.advantage-card__text {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.product-specs {
  padding: 60px 0;
  background: var(--gray-200);
}
.product-specs__header {
  text-align: center;
  margin-bottom: 40px;
}
.product-specs__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gray-900);
}
.product-specs__title span {
  color: var(--green);
}
.product-specs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-specs__item {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.product-specs__label {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.product-specs__value {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
}

.product-quote {
  padding: 80px 0;
  background: var(--white);
}
.product-quote__content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gray-900);
  margin-bottom: 16px;
}
.product-quote__content h2 span {
  color: var(--green);
}
.product-quote__content p {
  font-family: "Inter", sans-serif;
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}
.product-quote__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.product-quote__benefits {
  list-style: none;
  padding: 0;
  margin: 28px auto;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.product-quote__cta {
  margin-top: 24px;
}
.product-quote__benefits li {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  color: var(--gray-700);
  padding-left: 16px;
  position: relative;
}
.product-quote__benefits li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.product-cta {
  padding: 100px 0;
  background: var(--gray-900);
  text-align: center;
}
.product-cta__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.product-cta__title span {
  color: var(--green);
}
.product-cta__text {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 500px;
  margin: 0 auto 40px;
}
.product-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.product-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.product-cta__btn--primary {
  background: var(--green);
  color: var(--white);
}
.product-cta__btn--primary:hover {
  background: #016d2c;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(1, 136, 55, 0.3);
}
.product-cta__btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray-700);
}
.product-cta__btn--secondary:hover {
  border-color: var(--white);
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .product-advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-specs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-hero {
    padding: 120px 0 50px;
  }
  .product-hero::before {
    width: 100%;
    opacity: 0.3;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  }
  .product-hero__content {
    max-width: 100%;
  }
  .product-hero__buttons {
    flex-direction: column;
  }
  .product-hero__btn {
    justify-content: center;
  }
  .product-gallery__grid {
    grid-template-columns: 1fr;
  }
  .product-gallery__item {
    aspect-ratio: 4 / 3;
  }
  .product-advantages__grid {
    grid-template-columns: 1fr;
  }
  .product-specs__grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   Template pages liste / sous-categories (.subcat-*, .category-card)
   Image de fond du hero fournie par page via --hero-img
   ============================================================ */
.subcat-hero {
  position: relative;
  padding: 200px 0 120px;
  background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a1a 100%);
  overflow: hidden;
}
.subcat-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--hero-img) center/cover no-repeat;
  opacity: 0.85;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.subcat-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.subcat-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.subcat-hero__breadcrumb a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}
.subcat-hero__breadcrumb a:hover {
  color: var(--green);
}
.subcat-hero__breadcrumb svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}
.subcat-hero__breadcrumb span {
  color: var(--white);
}
.subcat-hero__label {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.subcat-hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 24px;
}
.subcat-hero__title span {
  color: var(--green);
}
.subcat-hero__text {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: var(--gray-400);
  line-height: 1.8;
}
.subcat-grid {
  padding: 100px 0;
  background: var(--white);
}
.subcat-grid__header {
  text-align: center;
  margin-bottom: 60px;
}
.subcat-grid__label {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.subcat-grid__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gray-900);
  line-height: 1;
}
.subcat-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.category-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gray-100);
  text-decoration: none;
  transition: all 0.4s ease;
}
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.category-card__image {
  height: 280px;
  background: var(--gray-200);
  overflow: hidden;
}
.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover .category-card__image img {
  transform: scale(1.08);
}
.category-card__content {
  padding: 30px;
}
.category-card__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.1;
}
.category-card__description {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}
.category-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green);
  transition: gap 0.3s ease;
}
.category-card:hover .category-card__link {
  gap: 12px;
}
.category-card__link svg {
  width: 18px;
  height: 18px;
}
.category-card--large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.category-card--large .category-card__image {
  height: 100%;
  min-height: 350px;
}
.category-card--large .category-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.category-card--large .category-card__name {
  font-size: 2.5rem;
}
.category-card--large .category-card__description {
  font-size: 1rem;
}
.subcat-cta {
  padding: 100px 0;
  background: var(--gray-900);
  text-align: center;
}
.subcat-cta__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.subcat-cta__title span {
  color: var(--green);
}
.subcat-cta__text {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 500px;
  margin: 0 auto 40px;
}
.subcat-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.subcat-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.subcat-cta__btn--primary {
  background: var(--green);
  color: var(--white);
}
.subcat-cta__btn--primary:hover {
  background: #016d2c;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(1, 136, 55, 0.3);
}
.subcat-cta__btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray-700);
}
.subcat-cta__btn--secondary:hover {
  border-color: var(--white);
  transform: translateY(-3px);
}
.subcat-cta__btn svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 1024px) {
  .subcat-grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-card--large {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .subcat-hero {
    padding: 160px 0 80px;
  }
  .subcat-hero::before {
    width: 100%;
    opacity: 0.15;
  }
  .subcat-grid {
    padding: 60px 0;
  }
  .subcat-grid__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .category-card--large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .category-card--large .category-card__image {
    min-height: 220px;
  }
  .category-card--large .category-card__name {
    font-size: 1.75rem;
  }
  .category-card__image {
    height: 200px;
  }
  .subcat-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(40px);
  }
  to {
    transform: translateY(0);
  }
}
.subcat-hero__breadcrumb {
  animation: slideUp 0.5s ease-out;
}
.subcat-hero__label {
  animation: slideUp 0.5s ease-out 0.1s both;
}
.subcat-hero__title {
  animation: slideUp 0.6s ease-out 0.15s both;
}
.subcat-hero__text {
  animation: slideUp 0.6s ease-out 0.2s both;
}

/* ================================
   UTILITAIRES
================================ */
/* Champ leurre anti-bot : hors écran, jamais focusable (tabindex=-1 dans le HTML) */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
/* Présent pour les lecteurs d'écran et le SEO, invisible à l'écran */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.container--narrow {
  max-width: 800px;
  margin: 0 auto 3rem;
}
/* Mention "Dernière mise à jour" des pages légales */
.legal-updated {
  margin-top: 3rem;
  color: var(--gray-400);
  font-size: 0.875rem;
}
/* Confirmation affichée à la place d'un formulaire envoyé (js/lead-form.js) */
.form-success {
  text-align: center;
  padding: 32px 16px;
}
.form-success__icon {
  display: block;
  margin: 0 auto 16px;
  color: var(--green);
}
.form-success__title {
  font-family: "Bebas Neue", sans-serif;
  color: var(--green);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.form-success__text {
  color: var(--gray-600);
}
