body {
  margin: 0;
  font-family: "Urbanist", sans-serif;
  background-color: #000000;
  color: #ffffff;
  letter-spacing: 1px;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #061226;
  min-height: 1280px;
}
.layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  will-change: transform;
  pointer-events: none; /* décor only */
  min-height: 1280px;
}
.layer svg {
  width: 100%;
  height: 100%;
  display: block;
}
.layer-1 {
  z-index: 1;
  background-image: url("./img/head-bg.png");
  background-size: cover;
  background-position: bottom center;
  opacity: 0.6;
}
.layer-2 {
  z-index: 2;
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.layer-2a {
  z-index: 2;
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.layer-2b {
  z-index: 2;
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.layer-2c {
  z-index: 2;
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.layer-3 {
  z-index: 3;
  background-image: url("./img/bigKong.webp?12");
  background-size: 750px auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.layer-4 {
  z-index: 4;
  pointer-events: auto;
}

.layer-5 {
  z-index: 5;
  pointer-events: auto;

  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: repeat-x;

  background-image: url("./img/DarkGradDown.svg");
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: repeat-x;
}

/* Foreground content */
.hero-content {
  text-align: center;
  color: #eaf2ff;
  max-width: 970px;
  margin: 5vh auto;
}
.hero-content .card {
  background: rgba(6, 18, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  max-width: 780px;
}
.hero-content h1 {
  font-size: clamp(3rem, 4vw + 1rem, 10rem);
  line-height: 1.05;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  font-weight: 900;
  color: #ffffff;
  text-align: center;

  background-image: radial-gradient(
    70.54% 70.54%,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0.573) 92.71%,
    rgba(255, 255, 255, 0.6) 92.72%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero h1 word-by-word reveal animation */
.hero-content h1 .word {
  display: inline-block;
  opacity: 0.3;
  filter: blur(10px);
  animation: wordReveal 0.6s ease-out forwards;
  background-image: radial-gradient(
    70.54% 70.54%,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0.573) 92.71%,
    rgba(255, 255, 255, 0.6) 92.72%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes wordReveal {
  0% {
    opacity: 0.3;
    filter: blur(10px);
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
.hero-content p {
  opacity: 0.9;
}
.hero-cta {
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .layer {
    transform: none !important;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger léger pour la section 2 */
.section-2 .fade-up:nth-child(1) {
  transition-delay: 0s;
}
.section-2 .fade-up:nth-child(2) {
  transition-delay: 0.2s;
}
.section-2 .fade-up:nth-child(3) {
  transition-delay: 0.4s;
}
.section-2 .fade-up:nth-child(4) {
  transition-delay: 0.6s;
}

.carousel-section {
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  width: 3000px;
  height: 58px;
}

#carousel-bottom {
  margin-left: -1500px;
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
}
.rail-item {
  flex: 0 0 auto;
  height: 48px;
  display: block;

  border-radius: 9px;
  font-size: 22px;
  color: #ebe9ff;
  letter-spacing: 0;
  text-align: center;
  line-height: 48px;
  margin: 4px;
  padding: 0px 20px;
}

.zoom-text {
  font-size: 3rem;
  transform-origin: center;
  scale: 0.3;
  opacity: 0;
  transition: scale 0.5s ease, opacity 0.5s ease;
}
.zoom-text.visible {
  scale: 1;
  opacity: 1;
}

.sticky-text {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-text .text-block {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  transition: opacity 500ms ease;
  flex-direction: column;
}
.sticky-text .text-block.active {
  opacity: 1;
}

/* Styles des images de droite (étapes) */
.sticky-text-section .step-image {
  display: block;
  width: 100%;
  height: auto;
  margin: calc(100vh - 50vh) 0; /* espace pour déclencher l'étape confortablement */
  opacity: 0; /* sera géré par JS */
  transition: opacity 120ms linear;
  border-radius: 20px;
}
.no-step-image {
  display: none;
}

/* Benefit cards */
.benefit-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #191925;
  border: none;
  border-radius: 20px;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(100, 100, 255, 0.15);
}
.benefit-icon {
  font-size: 3rem;
}
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefit-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}
.benefit-list li::before {
  content: "👉";
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.feature-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6ee7b7;
  font-weight: bold;
}

/* Pricing & Europe icons */
.pricing-icon,
.europe-icon {
  font-size: 8rem;
  opacity: 0.8;
}

/* Clients section */
.client-section {
  background: #02030a;
  border-radius: 40px;
  padding: 5rem 0 3rem;
}
.client-section .container {
  max-width: 1200px;
}
.client-card {
  background: #191925;
  border: 1px solid #191925;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, border-color 0.3s ease;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.client-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 96, 255, 0.8);
}
.client-avatar {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.35);
}
.client-name {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0;
}
.client-role {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  font-size: 0.95rem;
}
.client-quote {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
  line-height: 1.7;
}
.client-heading h2 {
  font-size: clamp(2.6rem, 3vw, 3.4rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}
.client-kicker {
  letter-spacing: 0.4em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}
.client-subtitle {
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin: 0 auto;
}
.client-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
}
.client-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.client-row article {
  flex: 1;
  min-width: 260px;
  max-width: 400px;
}
.client-row--sm {
  justify-content: center;
}
.faq-section {
  margin-top: 4rem;
  padding: 4rem 0;
}
.faq-heading h3 {
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.faq-subtitle {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}
.faq-accordion {
  display: grid;
  gap: 1rem;
  max-width: 960px;
  margin: auto;
}
.faq-item {
  border: 1px solid #191925;
  border-radius: 20px;
  background: #191925;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s ease;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: transform 0.3s ease;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: " ";
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 7L15 12L10 17' stroke='%23ffffffa6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}
.faq-item[open] summary::after {
  transform: rotate(270deg);
}
.faq-item p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}
.pricing-section {
  margin-top: 3rem;
  padding-bottom: 3rem;
}
.pricing-section h3 {
  font-size: clamp(2.2rem, 2.8vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.pricing-section p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
}
.pricing-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.pricing-card {
  border: 10px solid #191925;
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.border-best {
  border-color: #6355e4;
}

.pricing-card h4 {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}
.pricing-card .price {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0.8rem 0;
}
.pricing-card .prospects {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  .client-card {
    min-height: unset;
  }
  .client-section {
    padding: 3.5rem 0;
  }
  .faq-section {
    padding: 3rem 0;
  }
}

/* CTA Final */
.cta-final {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.15) 0%,
    rgba(139, 92, 246, 0.15) 100%
  );
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.bg-tag1 {
  background-color: #6355e4 !important;
}
.bg-tag2 {
  background-color: #55557d !important;
}
.bg-tag3 {
  background-color: #39395e !important;
}

.test-button {
  align-content: center;
  align-items: center;
  background-attachment: scroll;
  background-clip: border-box;
  background-color: rgba(0, 0, 0, 0);
  background-image: radial-gradient(
    67% 140% at 4.6% 40.8%,
    rgb(250, 147, 250) 0%,
    rgb(152, 58, 214) 100%
  );
  background-origin: padding-box;
  background-position: 0% 0%;
  background-repeat: repeat;
  background-size: auto;
  border-radius: 52px;
  box-shadow: inset 0px -3px 3px 0px rgb(228, 150, 255);
  box-sizing: border-box;
  color: #fff;
  column-gap: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 12px;
  font-weight: bold;
  height: 48.2031px;
  justify-content: center;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 14.5px 24px;
  position: relative;
  row-gap: 10px;
  text-decoration-color: rgb(0, 0, 238);
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  width: 165.047px;
  will-change: auto;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease;
}

body .powbtn,
body .powbtn2 {
  width: 300px;
  height: 100px;
  font-size: 30px;
  text-align: center;
  line-height: 100px;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  background: linear-gradient(-45deg, #ffa63d, #ff3d77, #338aff, #3cf0c5);
  background-size: 600%;
  -webkit-animation: animebtn 16s linear infinite;
  animation: animebtn 16s linear infinite;
}
body .powbtn2 {
  position: absolute;
  margin-top: -70px;
  z-index: -1;
  filter: blur(30px);
  opacity: 0.8;
}

@keyframes animebtn {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.buttons {
  margin: 10%;
  text-align: center;
}

.btn-hover {
  width: 200px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  margin: 20px;
  height: 55px;
  text-align: center;
  border: none;
  background-size: 300% 100%;

  border-radius: 50px;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn-hover:hover {
  background-position: 100% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn-hover:focus {
  outline: none;
}

.btn-hover.color-1 {
  background-image: linear-gradient(
    to right,
    #25aae1,
    #40e495,
    #30dd8a,
    #2bb673
  );
  box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
}
.btn-hover.color-2 {
  background-image: linear-gradient(
    to right,
    #f5ce62,
    #e43603,
    #fa7199,
    #e85a19
  );
  box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);
}
.btn-hover.color-3 {
  background-image: linear-gradient(
    to right,
    #667eea,
    #764ba2,
    #6b8dd6,
    #8e37d7
  );
  box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
}
.btn-hover.color-4 {
  background-image: linear-gradient(
    to right,
    #fc6076,
    #ff9a44,
    #ef9d43,
    #e75516
  );
  box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
}
.btn-hover.color-5 {
  background-image: linear-gradient(
    to right,
    #0ba360,
    #3cba92,
    #30dd8a,
    #2bb673
  );
  box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}
.btn-hover.color-6 {
  background-image: linear-gradient(
    to right,
    #009245,
    #fcee21,
    #00a8c5,
    #d9e021
  );
  box-shadow: 0 4px 15px 0 rgba(83, 176, 57, 0.75);
}
.btn-hover.color-7 {
  background-image: linear-gradient(
    to right,
    #6253e1,
    #852d91,
    #a3a1ff,
    #f24645
  );
  box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);
}
.btn-hover.color-8 {
  background-image: linear-gradient(
    to right,
    #29323c,
    #485563,
    #2b5876,
    #4e4376
  );
  box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
}
.btn-hover.color-9 {
  background-image: linear-gradient(
    to right,
    #25aae1,
    #4481eb,
    #04befe,
    #3f86ed
  );
  box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
}
.btn-hover.color-10 {
  background-image: linear-gradient(
    to right,
    #ed6ea0,
    #ec8c69,
    #f7186a,
    #fbb03b
  );
  box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75);
}
.btn-hover.color-11 {
  background-image: linear-gradient(
    to right,
    #eb3941,
    #f15e64,
    #e14e53,
    #e2373f
  );
  box-shadow: 0 5px 15px rgba(242, 97, 103, 0.4);
}

.sow_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 150px;
  color: white;
  font-family: "Montserrat";
  font-size: 2.5rem;
  text-align: center;
  --borderWidth: 3px;
  background: black;
  position: relative;
  border-radius: var(--borderWidth);
}

.sow_button:after {
  content: "";
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(
    60deg,
    #f79533,
    #f37055,
    #ef4e7b,
    #a166ab,
    #5073b8,
    #1098ad,
    #07b39b,
    #6fba82
  );
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
  animation: animatedgradient 3s ease infinite;
  background-size: 400% 400%;
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.gradient-text {
  background-image: radial-gradient(
    70.54% 70.54%,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0.573) 92.71%,
    rgba(255, 255, 255, 0.6) 92.72%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
}

.no-gradient-text {
  color: #fff;
  letter-spacing: -2px;
}
.lead {
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0px;
}
.lead li::before {
  content: " ";
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 7L15 12L10 17' stroke='%236355E4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: absolute;
  margin-left: -30px;
  margin-top: 4px;
}

ul.lead {
  list-style-type: none;
  padding-left: 30px;
}

.lead li {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}

/* SW buttons */

.swbtn {
  display: block;
  margin: 0px 0;
  min-height: 50px;
  padding: 13px 24px;
  font-family: "Lucida Grande", "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 4px;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  background-position: top center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  transition-property: background, color;
}

.swfield {
  min-height: 50px;
  padding: 13px 24px;
  font-family: "Lucida Grande", "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 20px;
  background-color: transparent;
  border: none;
  border: none;
  border-radius: 4px;
  outline: none;
  color: #ffffffae;
}

.swfield:focus {
  box-shadow: none;
  color: #fff;
}

.bg-swblack {
  background: #00000063;
  padding: 5px;
  width: 450px;
  border-radius: inherit;
  border-radius: 26px;
  margin: auto;
  display: flex !important;
  justify-content: space-between;
}

.swbtn1 {
  position: relative;
  display: block;
  color: #fff;
  border-radius: 26px;
  box-sizing: border-box;
  border: 2px solid transparent;
  background-color: #0e0e30;
  background-clip: padding-box;
  overflow: hidden;
  z-index: 1;
  margin-left: auto;
}
.swbtn1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  border: 2px solid transparent;
  background-image: linear-gradient(#231751, #231751),
    linear-gradient(90deg, #6150fc, #6942ef);
  background-clip: padding-box, border-box;
  background-repeat: repeat-x;
  background-size: calc(100% + 2px * 2) calc(100% + 2px * 2);
  background-position: center;
  border-radius: 26px;
  z-index: -1;
  transition: border-color 0.2s;
}
.swbtn1::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vmax;
  height: 70vmax;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #6150fc, #6942ef);
  transform-origin: center;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}
.swbtn1:hover {
  color: var(--textColor2);
}
.swbtn1:hover::after {
  transform: translate(-50%, -50%) scale(1);
}
.swbtn1:active {
  color: #c3c4d5;
}
.swbtn1:focus {
  color: white;
}
.swbtn1:focus::before {
  border-color: #00b8d9;
}

.swbtn2 {
  position: relative;
  color: var(--textColor2);
  border-radius: 26px;
  background-image: linear-gradient(
    90deg,
    #0065ff,
    #6942ef,
    #6554c0,
    #6150fc,
    #0065ff,
    #6942ef
  );
  background-size: 400%;
  background-position: 0% 0%;
}
.swbtn2::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 26px;
  background-image: linear-gradient(
    90deg,
    #0065ff,
    #6942ef,
    #6554c0,
    #6150fc,
    #0065ff,
    #6942ef
  );
  background-size: 500%;
  background-position: 0% 0%;
  filter: blur(10px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.2s;
}
.swbtn2:hover {
  animation: gradientRotate 2s infinite;
}
.swbtn2:hover::before {
  opacity: 1;
  animation: gradientRotate 2s infinite;
}
.swbtn2:active {
  color: #c3c4d5;
}
.swbtn2:focus::before {
  opacity: 1;
}

.swbtn3 {
  position: relative;
  border-radius: 26px;
  color: var(--textColor3);
  background-color: transparent;
  border: 2px solid transparent;
  background-clip: padding-box;
  overflow: hidden;
  z-index: 1;
}
.swbtn3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  border: 2px solid #313152;
  background-position: center;
  border-radius: 26px;
  z-index: -1;
  transition: border-color 0.2s;
}
.swbtn3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vmax;
  height: 70vmax;
  border-radius: 50%;
  background-color: #737594;
  opacity: 0.3;
  transform-origin: center;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}
.swbtn3--active::after {
  background-color: #f7841d;
  opacity: 1;
}
.swbtn3:focus {
  color: var(--textColor2);
}
.swbtn3:focus::before {
  border-color: #737594;
}
.swbtn3:hover,
.swbtn3:hover:focus {
  color: var(--textColor2);
}
.swbtn3:hover::after,
.swbtn3:hover:focus::after {
  transform: translate(-50%, -50%) scale(1);
}
.swbtn3:active {
  color: #c3c4d5;
}

.swbtn4 {
  position: relative;
  border-radius: 26px;
  color: var(--textColor3);
  border: none;
  overflow: hidden;
  z-index: 1;
}
.swbtn4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #0e0e30;
  background-clip: padding-box;
  border: 2px solid transparent;
  border-radius: 26px;
  z-index: -1;
  transition: border-color 0.2s;
}
.swbtn4::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #737594;
  border-radius: 26px;
  z-index: -2;
  transform: translate(-150%, -150%);
  transform-origin: left top;
  transition: transform 0.2s;
}
.swbtn4:hover {
  color: white;
}
.swbtn4:hover::after {
  transform: translate(0, 0);
}
.swbtn4:active {
  color: #c3c4d5;
}
.swbtn4:focus {
  color: #d8d8e3;
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
.logo {
  display: block;
}

.bubbles {
  position: relative;
}

.bubble {
  border-radius: 18.75px;
  font-family: "Urbanist", sans-serif;
  font-size: 18.75px;
  color: #f8f8f8;
  letter-spacing: 0;
  line-height: 24px;
  text-shadow: 0 2px 50px rgba(0, 0, 0, 0.23);
  width: 350px;
  padding: 15px;
}

.bubble {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 18px;
  width: 300px;
  padding: 10px;
  margin-top: 170px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  transition: filter 0.3s ease;
}

.bubble:hover {
  filter: brightness(1.1);
}

@keyframes bubbleFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes bubbleFloatLayer2 {
  0%,
  100% {
    transform: translateY(0px) scale(0.75);
  }
  50% {
    transform: translateY(-15px) scale(0.75);
  }
}

@keyframes bubbleFloatLayer2a {
  0%,
  100% {
    transform: translateY(0px) scale(0.82);
  }
  50% {
    transform: translateY(-15px) scale(0.82);
  }
}

@keyframes bubbleFloatLayer2b {
  0%,
  100% {
    transform: translateY(0px) scale(0.88);
  }
  50% {
    transform: translateY(-15px) scale(0.88);
  }
}

@keyframes bubbleFloatLayer2c {
  0%,
  100% {
    transform: translateY(0px) scale(0.94);
  }
  50% {
    transform: translateY(-15px) scale(0.94);
  }
}

@keyframes bubbleFloatLayer3 {
  0%,
  100% {
    transform: translateY(0px) scale(0.92);
  }
  50% {
    transform: translateY(-15px) scale(0.92);
  }
}

@keyframes bubbleFloatLayer4 {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1);
  }
}

.bubble-a1 {
  animation-delay: 0s;
}
.bubble-a2 {
  animation-delay: 0.5s;
}
.bubble-a3 {
  animation-delay: 1s;
}
.bubble-a4 {
  animation-delay: 1.5s;
}
.bubble-a5 {
  animation-delay: 2s;
}
.bubble-a6 {
  animation-delay: 2.5s;
}
.bubble-a7 {
  animation-delay: 3s;
}
.bubble-a8 {
  animation-delay: 3.5s;
}

/* Effet de profondeur avec blur et scale sur les layers */
/* Layer 2 (arrière-plan le plus lointain) - très flou et très petit */
.layer-2 .bubble-a3 {
  filter: blur(4px);
  animation: bubbleFloatLayer2 6s ease-in-out infinite;
}
.layer-2 .bubble-a5 {
  filter: blur(4px);
  animation: bubbleFloatLayer2 6s ease-in-out infinite;
}

.layer-2 .bubble-a3:hover {
  filter: blur(4px) brightness(1.1);
}
.layer-2 .bubble-a5:hover {
  filter: blur(4px) brightness(1.1);
}

/* Layer 2a (arrière-plan intermédiaire lointain) */
.layer-2a .bubble-a1 {
  filter: blur(3.5px);
  animation: bubbleFloatLayer2a 6s ease-in-out infinite;
}
.layer-2a .bubble-a8 {
  filter: blur(3.5px);
  animation: bubbleFloatLayer2a 6s ease-in-out infinite;
}

.layer-2a .bubble-a1:hover {
  filter: blur(3.5px) brightness(1.1);
}
.layer-2a .bubble-a8:hover {
  filter: blur(3.5px) brightness(1.1);
}

/* Layer 2b (arrière-plan intermédiaire proche) */
.layer-2b .bubble-a2 {
  filter: blur(2.5px);
  animation: bubbleFloatLayer2b 6s ease-in-out infinite;
}
.layer-2b .bubble-a6 {
  filter: blur(2.5px);
  animation: bubbleFloatLayer2b 6s ease-in-out infinite;
}

.layer-2b .bubble-a2:hover {
  filter: blur(2px) brightness(1.1);
}
.layer-2b .bubble-a6:hover {
  filter: blur(2px) brightness(1.1);
}

/* Layer 2c (juste derrière le gorille) */
.layer-2c .bubble-a7 {
  filter: blur(2.5px);
  animation: bubbleFloatLayer2c 6s ease-in-out infinite;
}

.layer-2c .bubble-a7:hover {
  filter: blur(1.5px) brightness(1.1);
}

/* Layer 4 (premier plan) - net */
.layer-4 .bubble-a4 {
  filter: blur(0px);
  animation: bubbleFloatLayer4 6s ease-in-out infinite;
  filter: blur(0px) brightness(1.1);
  opacity: 1;
}

.layer-4 .bubble-a4:hover {
  filter: blur(0px) brightness(1.1);
}

.bubble-a1 {
  top: 47vh;
  margin-right: 230px;
  position: absolute;
  right: 0;
  background: #7040ffd2;
}

.bubble-a2 {
  top: 68vh;
  left: 0;
  margin-left: 180px;
  position: absolute;
  background-color: #b2b3ffd2;
  color: #000000;
}

.bubble-a3 {
  top: 46vh;
  left: 0;
  margin-left: 260px;
  position: absolute;
  background-color: #c2b6e9d2;
  color: #000000;
}

.bubble-a4 {
  top: 58vh;
  margin-right: 160px;
  right: 0;
  position: absolute;
  background: #d4c9ffd2;
  color: #000000;
}

.bubble-a5 {
  top: 38vh;
  margin-right: 150px;
  right: 0;
  position: absolute;
  background-color: #9d8effd2;
  color: #000000;
}

.bubble-a6 {
  top: 57vh;
  left: 0;
  margin-left: 140px;
  position: absolute;
  background: #8a7affd2;
}

.bubble-a7 {
  top: 36vh;
  left: 0;
  margin-left: 180px;
  position: absolute;
  background: #7040ffd2;
}

.bubble-a8 {
  top: 68vh;
  margin-right: 180px;
  right: 0;
  position: absolute;
  background-color: #a896ffd2;
  color: #000000;
}

.bubble span {
  width: 50px;
  height: 50px;
  background-color: #c2b6e9d2;
  border-radius: 50%;
  background-repeat: no-repeat;
  display: block;
  background-size: cover;
  margin-right: 10px;
  float: left;
  margin-bottom: 5px;
}

.bubble-a1 span {
  background-image: url(./img/ava-12.jpg);
}
.bubble-a2 span {
  background-image: url(./img/ava-7.jpg);
}
.bubble-a3 span {
  background-image: url(./img/ava-14.jpg);
}
.bubble-a4 span {
  background-image: url(./img/ava-13.jpg);
}
.bubble-a5 span {
  background-image: url(./img/ava-11.jpg);
}
.bubble-a6 span {
  background-image: url(./img/ava-1.jpg);
}
.bubble-a7 span {
  background-image: url(./img/ava-2.jpg);
}
.bubble-a8 span {
  background-image: url(./img/ava-4.jpg);
}

.bubble p {
  line-height: 1.5;
  margin-bottom: 0;
}

.ln35 {
  line-height: 35px;
  text-decoration: none;
}

.btn-outline-primary {
  border-color: #6150fc;
  color: #6150fc;
}

.btn-outline-primary:hover {
  border-color: #6150fc;
  background-color: #6150fca8;
  color: #fff;
}
.btn-outline-primary.active,
.btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary:active {
  background-color: #6150fc !important;
  border-color: #6150fc !important;
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #6150fc, #6942ef);
  color: white;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(97, 80, 252, 0.4);
}

.pricing-card {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(99, 85, 228, 0.2);
}

.pricing-card .period {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.pricing-card ul {
  margin-top: 1.5rem;
}

.pricing-card ul li {
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card ul li .check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #6150fc76;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card ul li .check-icon svg {
  width: 12px;
  height: 12px;
  fill: #fdfdff;
}

/* sur mobilz */
@media (max-width: 768px) {
  .bg-swblack {
    width: 100%;
  }

  .bubble {
    font-size: 10px;
    letter-spacing: 0;
    line-height: 18px;
    width: 200px;
    padding: 10px;
    margin-top: 170px;
  }
  .bubble-a1 {
    margin-right: -70px;
    top: 52vh;
  }
  .bubble-a2 {
    margin-left: -5px;
    top: 70vh;
  }
  .bubble-a3 {
    top: 48vh;
    margin-left: -30px;
  }
  .bubble-a4 {
    margin-right: -30px;
    top: 65vh;
  }
  .bubble-a5 {
    margin-right: -50px;
    top: 42vh;
  }
  .bubble-a6 {
    margin-left: 10px;
    top: 55vh;
  }
  .bubble-a7 {
    margin-left: 20px;
    top: 40vh;
  }
  .bubble-a8 {
    margin-right: -10px;
    top: 60vh;
  }

  .bubble span {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }

  .layer,
  .hero {
    min-height: 1100px;
  }
  .layer-3 {
    background-size: 600px auto;
  }
  .layer-2a,
  .layer-2b,
  .layer-2c {
    min-height: 1100px;
  }

  .sticky-text .text-block {
    opacity: 1 !important;
    position: relative !important;
    margin: 100px 0;
    display: block;
  }

  .sticky-text {
    position: relative;
    top: 0;
    height: auto;
    display: block;
  }

  .no-step-image {
    display: block;
    width: 100%;
    margin: 50px 0;
    border-radius: 20px;
  }
  .step-image {
    display: none !important;
  }

  .display-5 {
    font-size: calc(2rem + 2.1vw);
  }
}



  /* Language Switcher */
      .lang-switcher {
        display: flex;
        gap: 5px;
        align-items: center;
      }
      .lang-option {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 500;
        transition: all 0.2s;
      }
      .lang-option:hover {
        color: #fff;
        background: rgba(255,255,255,0.1);
      }
      .lang-option.active {
        color: #fff;
        background: rgba(255,255,255,0.2);
      }

      /* Mobile Navigation Styles */
      .logo-icon {
        filter: drop-shadow(0 2px 8px rgba(255,255,255,0.2));
      }

      .swbtn-mobile {
        font-size: 12px;
        padding: 8px 16px;
      }

      /* Burger Menu Button */
      .burger-menu {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0);
        border: none;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1001;
        margin-left: 1px;
      }

      .burger-menu:hover {
        background: rgba(255,255,255,0.15);
      }

      .burger-menu span {
        width: 20px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
      }

      .burger-menu.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .burger-menu.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
      }

      .burger-menu.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      /* Mobile Menu Overlay */
      .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
      }

      .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
      }

      /* Mobile Off-Canvas Menu */
      .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
      }

      .mobile-menu.active {
        transform: translateX(0);
      }

      .mobile-menu-content {
        padding: 80px 24px 24px;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 32px;
      }

      /* Mobile Navigation Items */
      .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      .mobile-nav-item {
        color: rgba(255,255,255,0.9);
        text-decoration: none;
        padding: 16px 20px;
        border-radius: 12px;
        font-size: 24px;
        font-weight: 500;

        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        transform: translateX(20px);
        opacity: 0;
      }

      .mobile-menu.active .mobile-nav-item {
        transform: translateX(0);
        opacity: 1;
      }

      .mobile-menu.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
      .mobile-menu.active .mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }
      .mobile-menu.active .mobile-nav-item:nth-child(3) { transition-delay: 0.2s; }
      .mobile-menu.active .mobile-nav-item:nth-child(4) { transition-delay: 0.25s; }

      .mobile-nav-item:hover,
      .mobile-nav-item:active {
        transform: translateX(4px);
        color: #fff;
      }

      /* Mobile Language Switcher */
      .mobile-lang-switcher {
        margin-top: auto;
        padding-top: 24px;
        border-top: 1px solid rgba(255,255,255,0.1);
            padding-right: 80px;
      }

      .mobile-lang-label {
        color: rgba(255,255,255,0.6);
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: block;
        margin-bottom: 12px;
      }

      .mobile-lang-options {
        display: flex;
        gap: 8px;
      }

      .mobile-lang-option {
        flex: 1;
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        padding: 12px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s;
        text-align: center;
        display: block;
      }

      .mobile-lang-option:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.2);
        color: #fff;
      }

      .mobile-lang-option.active {
        background: rgba(255,255,255,0.15);
        border-color: rgba(255,255,255,0.3);
        color: #fff;
      }

      /* Prevent body scroll when menu is open */
      body.menu-open {
        overflow: hidden;
      }

/* ================================================
   SITE FOOTER
   ================================================ */
.site-footer {
  background: #f8f9fa;
  color: #333;
  padding: 60px 0 0;
  margin-top: 80px;
}

.footer-logo img {
  height: auto;
}

.footer-description {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: #666;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #000;
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: #000;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #000;
}

.footer-links-2col {
  columns: 2;
  column-gap: 20px;
}

.footer-cta-text {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
}

.btn-footer-cta {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-footer-cta:hover {
  background: #333;
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
  font-size: 13px;
  color: #888;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #333;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links-2col {
    columns: 1;
  }
}

/* ================================================
   SITE FOOTER - DARK THEME (for homepage)
   ================================================ */
.site-footer-dark {
  background: #0a0a0a;
  color: #f0f0f0;
}

.site-footer-dark .footer-description {
  color: #aaa;
}

.site-footer-dark .footer-social a {
  color: #aaa;
}

.site-footer-dark .footer-social a:hover {
  color: #fff;
}

.site-footer-dark .footer-title {
  color: #fff;
}

.site-footer-dark .footer-links a {
  color: #aaa;
}

.site-footer-dark .footer-links a:hover {
  color: #fff;
}

.site-footer-dark .footer-cta-text {
  color: #aaa;
}

.site-footer-dark .btn-footer-cta {
  background: #fff;
  color: #000;
}

.site-footer-dark .btn-footer-cta:hover {
  background: #e0e0e0;
  color: #000;
}

.site-footer-dark .footer-bottom {
  border-top-color: #333;
  color: #777;
}

.site-footer-dark .footer-bottom-links a {
  color: #777;
}

.site-footer-dark .footer-bottom-links a:hover {
  color: #fff;
}

/* ================================================
   PAGE LAYOUT (header noir, fond blanc)
   ================================================ */
.page-layout {
  background: #fff;
  color: #333;
  min-height: 100vh;
}

.page-layout .site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.page-layout .site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 15px;
}

.page-layout .header-logo img {
  height: 32px;
  width: auto;
}

.page-layout .header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-layout .header-nav a {
  color: #333;
  text-decoration: none;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s;
}

.page-layout .header-nav a:hover {
  background: #f5f5f5;
}

.page-layout .header-cta {
  background: #000;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
}

.page-layout .header-cta:hover {
  background: #333 !important;
}

/* Mobile menu for pages */
.page-layout .burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.page-layout .burger-menu span {
  width: 24px;
  height: 2px;
  background: #333;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .page-layout .header-nav {
    display: none;
  }

  .page-layout .burger-menu {
    display: flex;
  }

  .page-layout .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  }

  .page-layout .mobile-menu.active {
    right: 0;
  }

  .page-layout .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .page-layout .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .page-layout .mobile-nav a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
  }

  .page-layout .mobile-nav a:hover {
    color: #000;
  }
}

/* Page content */
.page-content {
  padding: 60px 0;
}

.page-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #000;
}

.page-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #000;
}

.page-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #000;
}

.page-content p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-content ul, .page-content ol {
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 24px;
}

.page-content a {
  color: #0066cc;
}

.page-content a:hover {
  text-decoration: underline;
}

.page-content blockquote {
  border-left: 4px solid #000;
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #555;
}

/* ============================================
   Article Images - Blog & Pages
   ============================================ */
.article-image {
  margin: 32px 0;
  text-align: center;
}

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

.article-image figcaption {
  margin-top: 12px;
  font-size: 0.875rem;
  color: #666;
  font-style: italic;
}

/* Desktop: images can overflow slightly for style */
@media (min-width: 992px) {
  .page-content .article-image,
  .blog-content .article-image,
  .article-body .article-image {
    margin-left: -40px;
    margin-right: -40px;
  }

  .page-content .article-image img,
  .blog-content .article-image img,
  .article-body .article-image img {
    max-width: calc(100% + 80px);
    width: calc(100% + 80px);
  }
}

/* Mobile: images stay within container */
@media (max-width: 991px) {
  .article-image {
    margin-left: 0;
    margin-right: 0;
  }

  .article-image img {
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
  }
}

/* ================================================
   HOMEPAGE FOOTER
   ================================================ */
.hp-footer {
  background: linear-gradient(180deg, #0a0a12 0%, #000 100%);
  color: #fff;
  padding: 80px 0 0;
  margin-top: 0;
}

.hp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.hp-footer-brand {
  max-width: 280px;
}

.hp-footer-logo img {
  height: auto;
  opacity: 0.95;
}

.hp-footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
}

.hp-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.hp-footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.hp-footer-social a:hover {
  color: #fff;
}

.hp-footer-nav h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.hp-footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hp-footer-nav li {
  margin-bottom: 12px;
}

.hp-footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.hp-footer-nav a:hover {
  color: #fff;
}

.hp-footer-cta h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.hp-footer-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 16px;
}

.hp-footer-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.hp-footer-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  transform: translateY(-2px);
}

.hp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 0;
}

.hp-footer-lang {
  display: flex;
  gap: 16px;
}

.hp-footer-lang a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}

.hp-footer-lang a:hover,
.hp-footer-lang a.active {
  color: #fff;
}

/* Mobile */
@media (max-width: 991px) {
  .hp-footer {
    padding: 60px 0 0;
  }

  .hp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hp-footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
  }

  .hp-footer-social {
    justify-content: center;
  }

  .hp-footer-cta {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hp-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hp-footer-nav {
    text-align: center;
  }

  .hp-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}