:root {
  --orange: #F2A642;
  --orange-soft: #f7a944;
  --black: #050607;
  --white: #ffffff;
  --muted: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.11);
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

/* =========================================================
   HEADER — GLOBAL
========================================================= */

.en-header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  pointer-events: none;
}

/* =========================================================
   HEADER — GLASS / BLUR BAR
========================================================= */

.en-header__inner {
  width: min(calc(100% - 48px), 1640px);
  height: 100%;
  margin: 0 auto;
  padding: 0 34px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;

  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.12);

  background:
    radial-gradient(circle at 0% 50%, rgba(242,166,66,.16), transparent 30%),
    linear-gradient(
      90deg,
      rgba(26,19,14,.58),
      rgba(5,7,9,.54) 42%,
      rgba(7,8,10,.62)
    );

  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(255,255,255,.025),
    0 20px 60px rgba(0,0,0,.36);

  pointer-events: auto;
}

/* =========================================================
   HEADER — SCROLLED STATE
========================================================= */

.en-header.is-scrolled .en-header__inner {
  background:
    radial-gradient(circle at 0% 50%, rgba(242,166,66,.13), transparent 30%),
    linear-gradient(
      90deg,
      rgba(26,19,14,.68),
      rgba(5,7,9,.68) 42%,
      rgba(7,8,10,.74)
    );

  border-color: rgba(255,255,255,.14);

  backdrop-filter: blur(28px) saturate(155%);
  -webkit-backdrop-filter: blur(28px) saturate(155%);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    inset 0 -1px 0 rgba(255,255,255,.03),
    0 24px 70px rgba(0,0,0,.46);
}

/* =========================================================
   HEADER — LOGO
========================================================= */

.en-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.en-logo img {
  display: block;
  width: 190px;
  height: auto;
}

/* =========================================================
   HEADER — NAV DESKTOP
========================================================= */

.en-nav {
  flex: 1 1 auto;
}

.en-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.en-nav__item {
  position: relative;
}

.en-nav__item > a {
  position: relative;

  min-height: var(--header-height);

  display: inline-flex;
  align-items: center;

  color: rgba(255,255,255,.78);

  text-decoration: none;
  text-transform: uppercase;

  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;

  transition: color .3s ease;
}

.en-nav__item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 19px;

  width: 0;
  height: 1px;

  background: linear-gradient(90deg, #f2a642, rgba(242,166,66,0));

  transition: width .35s ease;
}

.en-nav__item > a:hover,
.en-nav__item > a.is-active,
.en-nav__item--mega:hover > a,
.en-nav__item--mega.is-open > a {
  color: #f2a642;
}

.en-nav__item > a:hover::after,
.en-nav__item > a.is-active::after,
.en-nav__item--mega:hover > a::after,
.en-nav__item--mega.is-open > a::after {
  width: 100%;
}

/* Zone tampon entre lien et méga menu */
.en-nav__item--mega::after {
  content: "";
  position: absolute;
  left: -60px;
  right: -60px;
  top: 100%;
  height: 82px;
}

/* =========================================================
   HEADER — BUTTONS
========================================================= */

.en-demo-btn,
.en-mobile-demo,
.en-mega-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  text-decoration: none;
  text-transform: uppercase;

  font-weight: 950;
  letter-spacing: .045em;

  border-radius: 999px;

  transition:
    transform .35s ease,
    border-color .35s ease,
    background .35s ease,
    box-shadow .35s ease;
}

.en-demo-btn {
  flex: 0 0 auto;
  min-height: 54px;
  padding: 0 28px;

  border: 1px solid rgba(242,166,66,.72);

  background: rgba(242,166,66,.055);
  color: #fff;

  font-size: 12px;
}

.en-demo-btn::before,
.en-mobile-demo::before,
.en-mega-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  transform: translateX(-120%) skewX(-18deg);

  background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);

  transition: transform .7s ease;
}

.en-demo-btn:hover::before,
.en-mobile-demo:hover::before,
.en-mega-btn:hover::before {
  transform: translateX(120%) skewX(-18deg);
}

.en-demo-btn:hover {
  transform: translateY(-2px);
  border-color: #f2a642;
  background: rgba(242,166,66,.13);
  box-shadow: 0 0 36px rgba(242,166,66,.26);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-arrow svg {
  width: 18px;
  height: 18px;

  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform .3s ease;
}

.en-demo-btn:hover .btn-arrow svg,
.en-mobile-demo:hover .btn-arrow svg,
.en-mega-btn:hover .btn-arrow svg {
  transform: translateX(4px);
}

/* =========================================================
   HEADER — BURGER
========================================================= */

.en-burger {
  display: none;

  width: 48px;
  height: 48px;

  padding: 0;

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;

  background: rgba(255,255,255,.045);

  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.en-burger span {
  display: block;
  width: 18px;
  height: 2px;

  border-radius: 999px;

  background: #fff;

  transition:
    transform .3s ease,
    opacity .3s ease;
}

body.menu-open .en-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .en-burger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .en-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   MEGA MENU — WRAPPER
========================================================= */

.en-mega-menu {
  position: fixed;
  left: 50%;
  top: calc(var(--header-height) + 34px);
  z-index: 990;

  width: min(92vw, 1540px);

  transform: translateX(-50%) translateY(18px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  overflow: visible;

  transition:
    opacity .32s ease,
    visibility .32s ease,
    transform .32s ease;
}

/* =========================================================
   MEGA MENU — TOP LINE + NOTCH
========================================================= */

.en-nav__item--mega {
  --mega-notch-x: 50%;
}

.en-mega-menu::before {
  content: "";

  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 9;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(242,166,66,.08) 22%,
      rgba(242,166,66,.78) 50%,
      rgba(242,166,66,.08) 78%,
      transparent 100%
    );

  pointer-events: none;
}

.en-mega-menu::after {
  content: "";

  position: absolute;
  top: -13px;
  left: var(--mega-notch-x);
  z-index: 10;

  width: 26px;
  height: 26px;

  transform: translateX(-50%) rotate(45deg);

  background: rgba(5,7,9,.96);

  border-left: 1px solid rgba(242,166,66,.82);
  border-top: 1px solid rgba(242,166,66,.82);

  box-shadow:
    -4px -4px 14px rgba(242,166,66,.18);

  pointer-events: none;
}

.en-nav__item--mega:hover .en-mega-menu,
.en-nav__item--mega.is-open .en-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateX(-50%) translateY(0);
}

/* =========================================================
   MEGA MENU — SURFACE
========================================================= */

.en-mega-menu__surface {
  position: relative;
  overflow: hidden;

  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);

  background:
    linear-gradient(90deg, rgba(5, 7, 9, .90), rgb(5 7 9 / 92%) 44%, rgb(5 7 9 / 71%)), radial-gradient(circle at 50% 0%, rgba(242, 166, 66, .12), #00000094 28%), url(../assets/images/mega-menu-bg.webp);

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.025),
    0 34px 90px rgba(0,0,0,.58);
}

.en-mega-menu__surface::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 12% 42%, rgba(242,166,66,.12), transparent 24%),
    radial-gradient(circle at 88% 42%, rgba(242,166,66,.12), transparent 24%),
    linear-gradient(to bottom, rgba(255,255,255,.025), transparent 40%);

  pointer-events: none;
}

/* =========================================================
   MEGA MENU — LAYOUT
========================================================= */

.en-mega-inner {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.2fr .9fr 1.2fr;

  min-height: 520px;
}

.en-mega-panel,
.en-mega-center {
  position: relative;
  padding: 35px 35px;
}

.en-mega-panel {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 34px;
  align-items: center;
}

.en-mega-panel--norman {
  grid-template-columns: 1fr .92fr;
}

.en-mega-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  border-left: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
}



/* =========================================================
   MEGA MENU — ROBOTS
========================================================= */

.en-mega-robot {
  position: relative;
  align-self: end;
  width: 100%;
  max-width: 380px; /* avant 320px */
  margin-bottom: -2px;
  z-index: 2;
}

.en-mega-robot img {
  display: block;

  width: 145%; /* avant 125% */
  max-width: none;
  max-height: 680px; /* avant 560px */

  object-fit: contain;
  object-position: bottom center;

  transform: translateX(-12%);

  filter:
    drop-shadow(0 28px 42px rgba(0,0,0,.55))
    drop-shadow(0 0 26px rgba(242,166,66,.12));
	margin-bottom: -31px;
}

/* Norman */
/* Norman plus visible dans le mega menu */
.en-mega-panel--norman .en-mega-robot {
  justify-self: start;
  margin-left: -70px;
}
.en-mega-panel--norman .en-mega-robot img {
    transform: translateX(-6%);
}

/* Responsive */
@media (max-width: 1280px) {
  .en-mega-robot img {
    width: 125%;
    max-height: 560px;
  }
}

@media (max-width: 1024px) {
  .en-mega-robot img {
    width: 100%;
    max-height: 380px;
    transform: none;
  }
}

/* =========================================================
   MEGA MENU — CONTENT
========================================================= */

.en-mega-label {
  display: block;
  margin-bottom: 12px;

  color: #f2a642;

  font-size: 26px;
  line-height: 1;
  font-weight: 950;

  letter-spacing: .08em;
  text-transform: uppercase;
}

.en-mega-content h3,
.en-mega-center h3 {
  margin: 0 0 18px;

  color: #fff;

  font-size: 21px;
  line-height: 1.35;
  font-weight: 600;

  text-transform: uppercase;
}

.en-mega-center h3 {
  color: #fff;
  font-size: 28px;
  letter-spacing: .04em;
}

.en-mega-center h4 {
  margin: 0 0 15px;

  color: #f2a642;

  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;

  text-transform: uppercase;
}

.en-mega-content h3::after,
.en-mega-center h4::after {
  content: "";
  display: block;

  width: 48px;
  height: 1px;

  margin-top: 22px;

  background: linear-gradient(90deg, #f2a642, rgba(242,166,66,0));
}

.en-mega-center h4::after {
  margin-left: auto;
  margin-right: auto;
}

.en-mega-content p,
.en-mega-center p {
  margin: 0 0 32px;

  color: rgba(255,255,255,.68);

  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

/* =========================================================
   MEGA MENU — BUTTON
========================================================= */

.en-mega-btn {
  min-height: 54px;
  padding: 0 26px;

  border: 1px solid rgba(242,166,66,.68);

  background: rgba(242,166,66,.045);
  color: #fff;

  font-size: 12px;
}

.en-mega-btn:hover {
  transform: translateY(-2px);

  border-color: #f2a642;
  background: rgba(242,166,66,.12);

  box-shadow: 0 0 34px rgba(242,166,66,.18);
}

/* =========================================================
   MEGA MENU — CENTER ICON / NOTE
========================================================= */

.en-mega-center-icon {
  width: 88px;
  height: 88px;

  margin-bottom: 28px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);

  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,.12), transparent 34%),
    linear-gradient(145deg, rgba(22,24,30,.96), rgba(6,7,10,.98));

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.08),
    inset 0 -10px 22px rgba(0,0,0,.68),
    0 18px 38px rgba(0,0,0,.48),
    0 0 34px rgba(242,166,66,.16);
}

.en-mega-center-icon svg {
  width: 38px;
  height: 38px;

  stroke: #f2a642;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.en-mega-note {
  margin-top: 8px;
  padding: 24px 26px;

  max-width: 340px;

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.09);

  background:
    radial-gradient(circle at 10% 0%, rgba(242,166,66,.10), transparent 28%),
    rgba(255,255,255,.035);

  text-align: center;
}

.en-mega-note strong {
  display: block;
  margin-bottom: 8px;

  color: #fff;

  font-size: 13px;
  line-height: 1.35;
  font-weight: 950;

  text-transform: uppercase;
}

.en-mega-note span {
  color: rgba(255,255,255,.62);

  font-size: 14px;
  line-height: 1.2;
}

/* =========================================================
   MEGA MENU — FEATURES
========================================================= */

.en-mega-features {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid rgba(255,255,255,.08);

  background: rgba(255,255,255,.025);
}

.en-mega-feature {
  padding: 26px 34px;

  border-right: 1px solid rgba(255,255,255,.07);
}

.en-mega-feature:last-child {
  border-right: 0;
}

.en-mega-feature span {
  display: block;
  margin-bottom: 6px;

  color: #fff;

  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.en-mega-feature p {
  margin: 0;

  color: rgba(255,255,255,.60);

  font-size: 14px;
  line-height: 1.45;
}
.en-mega-feature-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(242,166,66,.18),
      rgba(242,166,66,.05)
    );

  border: 1px solid rgba(242,166,66,.18);

  box-shadow:
    0 0 25px rgba(242,166,66,.08),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.en-mega-feature-icon i {
  color: #f2a642;
  font-size: 26px;
  line-height: 1;
}
/* =========================================================
   Mega features premium
========================================================= */

.en-mega-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid rgba(255,255,255,.06);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.02),
      rgba(255,255,255,.01)
    );

  backdrop-filter: blur(12px);
}

.en-mega-feature {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 28px 26px;

  position: relative;
}

.en-mega-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;

  width: 1px;
  height: calc(100% - 48px);

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(255,255,255,.08),
      transparent
    );
}

.en-mega-feature-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(242,166,66,.18),
      rgba(242,166,66,.06)
    );

  border: 1px solid rgba(242,166,66,.18);

  box-shadow:
    0 0 30px rgba(242,166,66,.08),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.en-mega-feature-icon i {
  font-size: 22px;
  color: #f2a642;
}

.en-mega-feature-content span {
  display: block;

  margin-bottom: 6px;

  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.en-mega-feature-content p {
  margin: 0;

  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.2;
}

/* Hover premium */
.en-mega-feature:hover .en-mega-feature-icon {
  transform: translateY(-2px);

  box-shadow:
    0 0 40px rgba(242,166,66,.16),
    0 10px 30px rgba(0,0,0,.28);
}

/* Responsive */
@media (max-width: 1024px) {

  .en-mega-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {

  .en-mega-features {
    grid-template-columns: 1fr;
  }

  .en-mega-feature:not(:last-child)::after {
    display: none;
  }
}
/* =========================================================
   MOBILE MENU
========================================================= */

.en-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;

  background: rgba(0,0,0,.62);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;
  pointer-events: none;

  transition: opacity .35s ease;
}

.en-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1300;

  width: min(420px, 88vw);
  height: 100vh;

  padding: 28px;

  background:
    radial-gradient(circle at 80% 15%, rgba(242,166,66,.20), transparent 34%),
    linear-gradient(145deg, rgba(16,18,20,.98), rgba(3,4,5,.98));

  border-left: 1px solid rgba(255,255,255,.12);

  box-shadow: -30px 0 80px rgba(0,0,0,.55);

  transform: translateX(104%);

  transition: transform .45s cubic-bezier(.22,1,.36,1);
}

body.menu-open .en-mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .en-mobile-menu {
  transform: translateX(0);
}

.en-mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 46px;
}

.en-mobile-menu__top img {
  width: 168px;
  height: auto;
}

.en-mobile-close {
  width: 46px;
  height: 46px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);

  background: rgba(255,255,255,.06);

  color: white;

  font-size: 30px;
  line-height: 1;

  cursor: pointer;

  transition:
    transform .3s ease,
    background .3s ease;
}

.en-mobile-close:hover {
  transform: rotate(90deg);
  background: rgba(242,166,66,.13);
}

.en-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.en-mobile-nav a {
  position: relative;

  padding: 10px 16px;

  border-radius: 18px;
  border: 1px solid transparent;

  color: rgba(255,255,255,.76);

  text-decoration: none;
  text-transform: uppercase;

  font-size: 14px;
  font-weight: 850;
  letter-spacing: .08em;

  transition:
    background .3s ease,
    color .3s ease,
    border-color .3s ease,
    transform .3s ease;
}

.en-mobile-nav a:hover,
.en-mobile-nav a.is-active {
  color: #f2a642;

  background: rgba(255,255,255,.055);
  border-color: rgba(242,166,66,.22);

  transform: translateX(4px);
}

.en-mobile-demo {
  width: 100%;
  min-height: 58px;

  margin-top: 34px;
  padding: 0 24px;

  background: linear-gradient(135deg, #f2a642, #ffb95f);
  color: #130900;

  font-size: 13px;

  box-shadow: 0 18px 48px rgba(242,166,66,.28);
}

/* =========================================================
   DROPDOWN MOBILE — PREMIUM
========================================================= */

.en-mobile-dropdown {
  width: 100%;
}

.en-mobile-dropdown-toggle {
  width: 100%;
  padding: 0 0 0 17px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.82);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.en-mobile-dropdown-toggle span:first-child {
  display: block;
  text-align: left;
}

.en-mobile-dropdown-icon {
  width: 44px;
  height: 44px;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f2a642;
  font-size: 24px;
  line-height: 1;
  pointer-events: none;
  transition: transform .3s ease, color .3s ease;
}

.en-mobile-dropdown.is-open .en-mobile-dropdown-icon {
  transform: rotate(45deg);
  color: #fff;
}

.en-mobile-submenu {
  display: grid;
  gap: 10px;

  max-height: 0;
  overflow: hidden;

  margin: 0 18px 0 17px;
  padding: 0;

  opacity: 0;
  visibility: hidden;

  border-left: 0;

  transition:
    max-height .4s ease,
    opacity .28s ease,
    visibility .28s ease,
    padding .35s ease,
    margin .35s ease;
}

.en-mobile-dropdown.is-open .en-mobile-submenu {
  display: block !important;
  max-height: 500px !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
}

.en-mobile-submenu a {
  position: relative;

  display: block;

  padding: 16px 18px 16px 62px;

  overflow: hidden;

  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);

  background:
    radial-gradient(circle at 0% 50%, rgba(242,166,66,.12), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.015));

  color: rgba(255,255,255,.78);

  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .045em;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 12px 28px rgba(0,0,0,.20);

  transform: translateY(8px);
  opacity: 0;

  transition:
    transform .35s ease,
    opacity .35s ease,
    color .3s ease,
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}

.en-mobile-dropdown.is-open .en-mobile-submenu a {
  transform: translateY(0);
  opacity: 1;
}

.en-mobile-dropdown.is-open .en-mobile-submenu a:nth-child(1) {
  transition-delay: .04s;
}

.en-mobile-dropdown.is-open .en-mobile-submenu a:nth-child(2) {
  transition-delay: .08s;
}

.en-mobile-dropdown.is-open .en-mobile-submenu a:nth-child(3) {
  transition-delay: .12s;
}



.en-mobile-submenu a:hover {
  color: #fff;
  border-color: rgba(242,166,66,.42);
  background:
    radial-gradient(circle at 0% 50%, rgba(242,166,66,.18), transparent 38%),
    linear-gradient(135deg, rgba(242,166,66,.08), rgba(255,255,255,.02));

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 16px 34px rgba(0,0,0,.28),
    0 0 26px rgba(242,166,66,.08);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1280px) {
  .en-nav__list {
    gap: 24px;
  }

  .en-logo img {
    width: 170px;
  }

  .en-demo-btn {
    padding: 0 22px;
  }

  .en-mega-menu {
    width: min(94vw, 1180px);
  }

  .en-mega-inner {
    grid-template-columns: 1fr;
  }

  .en-mega-center {
    order: -1;

    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .en-mega-panel {
    grid-template-columns: 220px 1fr;
    padding: 38px;
  }

  .en-mega-panel--norman {
    grid-template-columns: 1fr 220px;
  }

  .en-mega-robot img {
    max-height: 280px;
  }
}

@media (max-width: 1080px) {
  .en-nav,
  .en-demo-btn,
  .en-mega-menu {
    display: none;
  }

  .en-burger {
    display: flex;
  }

  .en-header__inner {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .en-header {
    top: 14px;
  }

  .en-header__inner {
    width: min(calc(100% - 28px), 1640px);
    border-radius: 16px;
  }

  .en-logo img {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .en-header__inner {
    padding: 0 16px;
  }

  .en-logo img {
    width: 132px;
  }

  .en-burger {
    width: 44px;
    height: 44px;
  }

  .en-mobile-menu {
    width: 92vw;
    padding: 22px 18px;
  }

  .en-mobile-nav a {
    padding: 10px 14px;
    font-size: 13px;
  }

  .en-mobile-demo {
    min-height: 54px;
    font-size: 12px;
  }
}

/* =========================================================
   BUTTONS
========================================================= */

.en-demo-btn,
.en-primary-btn,
.en-secondary-btn,
.en-mobile-demo {
  position: relative;

  overflow: hidden;
  isolation: isolate;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  text-decoration: none;
  text-transform: uppercase;

  font-weight: 900;
  letter-spacing: .045em;

  border-radius: 999px;

  transition:
    transform .35s ease,
    border-color .35s ease,
    background .35s ease,
    box-shadow .35s ease;
}

.en-demo-btn::before,
.en-primary-btn::before,
.en-secondary-btn::before,
.en-mobile-demo::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  transform: translateX(-120%) skewX(-18deg);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.26),
      transparent
    );

  transition: transform .7s ease;
}

.en-demo-btn:hover::before,
.en-primary-btn:hover::before,
.en-secondary-btn:hover::before,
.en-mobile-demo:hover::before {
  transform: translateX(120%) skewX(-18deg);
}

.en-demo-btn {
  position: relative;
  z-index: 3;

  flex: 0 0 auto;

  padding: 16px 27px;

  border: 1px solid rgba(255,138,0,.72);

  background: rgba(255,138,0,.055);

  color: #fff;

  font-size: 12px;

  box-shadow:
    inset 0 0 18px rgba(255,138,0,.04),
    0 0 18px rgba(255,138,0,.06);
}

.en-demo-btn:hover {
  transform: translateY(-2px);

  border-color: var(--orange);

  background: rgba(255,138,0,.13);

  box-shadow:
    0 0 36px rgba(255,138,0,.22),
    inset 0 0 18px rgba(255,138,0,.08);
}

/*** 

====================================================================
	HERO
====================================================================

***/

.en-hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 34px);
  overflow: hidden;

  background-image:
    linear-gradient(90deg,
      rgba(0,0,0,.96) 0%,
      rgba(0,0,0,.88) 28%,
      rgba(0,0,0,.52) 47%,
      rgba(0,0,0,.12) 68%,
      rgba(0,0,0,.52) 100%
    ),
    radial-gradient(circle at 52% 42%, rgba(255,138,0,.24), transparent 28%),
    url("../images/emma-norman-hero.png");

  background-size: cover, cover, cover;

  background-position:
    center,
    center,
    center top;

  background-repeat: no-repeat;
}

.en-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.12),
      rgba(0,0,0,.18) 55%,
      rgba(0,0,0,.92)
    ),
    radial-gradient(
      circle at 20% 55%,
      rgba(255,138,0,.08),
      transparent 28%
    );

  pointer-events: none;
}

.en-hero__grid {
  position: absolute;
  inset: calc(var(--header-height) + 34px) 0 0;

  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);

  background-size: 82px 82px;

  opacity: .26;

  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      black 12%,
      black 72%,
      transparent 100%
    );

  pointer-events: none;
}

.en-hero__inner {
  position: relative;
  z-index: 2;

  max-width: 1640px;
  min-height: calc(100vh - var(--header-height) - 34px);

  margin: 0 auto;

  padding:
    42px
    72px
    0;

  display: flex;
  align-items: center;
}

.en-hero__content {
  width: min(640px, 100%);
  padding: 72px 0 64px;
}

.en-eyebrow {
  margin-bottom: 28px;

  color: var(--orange-soft);

  text-transform: uppercase;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: .42em;
}

.en-hero h1 {
  margin: 0 0 26px;

  max-width: 720px;

  text-transform: uppercase;

  font-size: clamp(44px, 4.4vw, 60px);
  line-height: .95;

  letter-spacing: -.045em;

  font-weight: 600;
}

.en-hero h1 span {
  display: block;

  color: var(--orange);

  letter-spacing: .045em;
}

.en-hero__lead {
  margin: 0 0 28px;

  color: rgba(255,255,255,.96);

  font-size: clamp(21px, 1.75vw, 29px);
  line-height: 1.34;
  font-weight: 500;
}

.en-hero__text {
  max-width: 560px;

  margin: 0 0 42px;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.2;
}

.en-hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 34px;
}

.en-primary-btn {
  min-height: 60px;

  padding: 0 32px;

  background:
    linear-gradient(
      135deg,
      #F3A642 0%,
      #F3A642 88%
    );

  color: #130900;

  font-size: 13px;

  box-shadow:
    0 18px 48px rgba(255,120,0,.32);
}

.en-primary-btn:hover {
  transform: translateY(-4px);

  box-shadow:
    0 26px 70px rgba(255,120,0,.46);
}

.en-secondary-btn {
  min-height: 60px;

  padding: 0 32px;

  border: 1px solid rgba(255,255,255,.18);

  background: rgba(255,255,255,.045);

  color: #fff;

  font-size: 13px;

  backdrop-filter: blur(16px);
}

.en-secondary-btn:hover {
  transform: translateY(-4px);

  border-color: rgba(255,138,0,.6);

  background: rgba(255,138,0,.09);

  box-shadow:
    0 18px 46px rgba(0,0,0,.4);
}

.en-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;

  color: rgba(255,255,255,.78);

  font-size: 13px;
  font-weight: 600;
}

.en-hero__badges span {
  position: relative;

  padding-left: 21px;
}

.en-hero__badges span::before {
  content: "✦";

  position: absolute;
  left: 0;
  top: -1px;

  color: var(--orange-soft);
}

/* MOBILE MENU */

.en-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;

  background: rgba(0,0,0,.62);

  backdrop-filter: blur(8px);

  opacity: 0;
  pointer-events: none;

  transition: opacity .35s ease;
}

.en-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1300;

  width: min(420px, 88vw);
  height: 100vh;

  padding: 28px;

  background:
    radial-gradient(circle at 80% 15%, rgba(255,138,0,.20), transparent 34%),
    linear-gradient(145deg, rgba(16,18,20,.98), rgba(3,4,5,.98));

  border-left: 1px solid rgba(255,255,255,.12);

  box-shadow:
    -30px 0 80px rgba(0,0,0,.55);

  transform: translateX(104%);

  transition:
    transform .45s cubic-bezier(.22,1,.36,1);
}

body.menu-open .en-mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .en-mobile-menu {
  transform: translateX(0);
}

.en-mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 46px;
}

.en-mobile-menu__top img {
  width: 168px;
  height: auto;
}

.en-mobile-close {
  width: 46px;
  height: 46px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);

  background: rgba(255,255,255,.06);

  color: white;

  font-size: 30px;
  line-height: 1;

  cursor: pointer;

  transition:
    transform .3s ease,
    background .3s ease;
}

.en-mobile-close:hover {
  transform: rotate(90deg);

  background: rgba(255,138,0,.13);
}

.en-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.en-mobile-nav a {
  position: relative;

  padding: 10px 16px;

  border-radius: 18px;
  border: 1px solid transparent;

  text-decoration: none;
  text-transform: uppercase;

  font-size: 14px;
  font-weight: 850;

  letter-spacing: .08em;

  color: rgba(255,255,255,.76);

  transition:
    background .3s ease,
    color .3s ease,
    border-color .3s ease,
    transform .3s ease;
}

.en-mobile-nav a:hover,
.en-mobile-nav a.is-active {
  color: var(--orange-soft);

  background: rgba(255,255,255,.055);

  border-color: rgba(255,138,0,.22);

  transform: translateX(4px);
}

.en-mobile-demo {
  width: 100%;

  margin-top: 34px;

  min-height: 58px;

  padding: 0 24px;

  background:
    linear-gradient(
      135deg,
      #ffbd55,
      #ff7800
    );

  color: #130900;

  font-size: 13px;

  box-shadow:
    0 18px 48px rgba(255,120,0,.28);
}

/* RESPONSIVE */

@media (max-width: 1280px) {

  .en-header__inner,
  .en-hero__inner {
    padding-left: 44px;
    padding-right: 44px;
  }

  .en-nav {
    gap: 24px;
  }

  .en-logo img {
    width: 170px;
  }

  .en-demo-btn {
    padding: 14px 21px;
  }

  .en-hero {
    background-position:
      center,
      center,
      62% top;
  }
}

@media (max-width: 1080px) {

  .en-nav,
  .en-demo-btn {
    display: none;
  }

  .en-burger {
    display: flex;
  }

  .en-hero {
    background-image:
      linear-gradient(90deg,
        rgba(0,0,0,.96) 0%,
        rgba(0,0,0,.84) 42%,
        rgba(0,0,0,.42) 70%,
        rgba(0,0,0,.70) 100%
      ),
      radial-gradient(circle at 58% 40%, rgba(255,138,0,.20), transparent 30%),
      url("../images/emma-norman-hero.webp");

    background-position:
      center,
      center,
      64% top;
  }

  .en-hero__content {
    width: min(560px, 100%);
  }
}

@media (max-width: 768px) {

  :root {
    --header-height: 70px;
  }

  .en-header__inner {
    padding: 0 22px;
  }

  .en-logo img {
    width: 150px;
  }

  .en-hero {
    min-height: 820px;
    padding-top: var(--header-height);

    background-image:
      linear-gradient(
        to bottom,
        rgba(0,0,0,.12) 0%,
        rgba(0,0,0,.22) 26%,
        rgba(0,0,0,.72) 58%,
        rgba(0,0,0,1) 100%
      ),
      linear-gradient(
        90deg,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.42) 46%,
        rgba(0,0,0,.25) 100%
      ),
      url("../images/emma-norman-hero-2.webp");

    background-size:
      cover,
      cover,
      auto 640px;

    background-position:
      center,
      center,
      center top 24px;

    background-repeat: no-repeat;
  }

  .en-hero__inner {
    min-height: calc(820px - var(--header-height));

    padding:
      0
      22px
      48px;

    display: flex;
    align-items: flex-end;
  }

  .en-hero__content {
    width: 100%;
    max-width: 720px;

    padding: 0;

    position: relative;
    z-index: 3;
  }

  .en-eyebrow {
    margin-bottom: 14px;

    font-size: 11px;

    letter-spacing: .32em;
  }

  .en-hero h1 {
    max-width: 660px;

    margin-bottom: 18px;

    font-size: 48px;
    line-height: .92;

    letter-spacing: -.055em;
  }

  .en-hero__lead {
    max-width: 600px;

    margin-bottom: 18px;

    font-size: 22px;
    line-height: 1.32;
  }

  .en-hero__text {
    max-width: 620px;

    margin-bottom: 28px;

    font-size: 15.5px;
    line-height: 1.65;
  }

  .en-hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;

    max-width: 720px;

    margin-bottom: 26px;
  }

  .en-primary-btn,
  .en-secondary-btn {
    width: 100%;

    min-height: 54px;

    padding: 0 18px;

    font-size: 11px;

    white-space: nowrap;
  }

  .en-hero__badges {
    gap: 12px 18px;

    font-size: 12px;
  }
}

@media (max-width: 480px) {

  :root {
    --header-height: 68px;
  }

  .en-header__inner {
    padding: 0 16px;
  }

  .en-logo img {
    width: 132px;
  }

  .en-burger {
    width: 44px;
    height: 44px;
  }

  .en-hero {
    min-height: 760px;
    padding-top: var(--header-height);

    background-image:
      linear-gradient(
        to bottom,
        rgba(0,0,0,.08) 0%,
        rgba(0,0,0,.18) 22%,
        rgba(0,0,0,.74) 52%,
        rgba(0,0,0,1) 100%
      ),
      linear-gradient(
        90deg,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.46) 44%,
        rgba(0,0,0,.24) 100%
      ),
      url("../images/emma-norman-hero-2.png");

    background-size:
      cover,
      cover,
      auto 500px;

    background-position:
      center,
      center,
      center top 18px;

    background-repeat: no-repeat;
  }

  .en-hero__inner {
    min-height: calc(760px - var(--header-height));

    padding:
      0
      16px
      38px;

    display: flex;
    align-items: flex-end;
  }

  .en-hero__content {
    width: 100%;
    max-width: 100%;

    position: relative;
    z-index: 3;
  }

  .en-eyebrow {
    margin-bottom: 12px;

    font-size: 10px;

    letter-spacing: .28em;
  }

  .en-hero h1 {
    margin-bottom: 16px;

    font-size: 34px;
    line-height: .92;

    letter-spacing: -.055em;
  }

  .en-hero__lead {
    margin-bottom: 16px;

    font-size: 18px;
    line-height: 1.28;
  }

  .en-hero__text {
    margin-bottom: 24px;

    font-size: 14px;
    line-height: 1.6;
  }

  .en-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin-bottom: 22px;
  }

  .en-primary-btn,
  .en-secondary-btn {
    width: 100%;

    min-height: 54px;

    padding: 0 16px;

    font-size: 11px;
  }

  .en-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;

    font-size: 11px;
    line-height: 1.4;
  }

  .en-hero__badges span {
    padding-left: 16px;
  }

  .en-mobile-menu {
    width: 92vw;

    padding:
      22px
      18px;
  }

  .en-mobile-nav a {
    padding: 10px 14px;

    font-size: 13px;
  }

  .en-mobile-demo {
    min-height: 54px;

    font-size: 12px;
  }
}

/* =========================================================
   BIEN PLUS QU’UN CHATBOT
========================================================= */
.en-process-heading {
  max-width: 1640px;
  margin: 0 auto 34px;
  text-align: center;
}

.en-process-heading h2 {
  margin: 0 0 10px;
  text-transform: uppercase;
  color: rgba(255,255,255,.96);
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: .055em;
  font-weight: 700;
}

.en-process-heading h2 span {
  color: var(--orange);
}

.en-process-heading p {
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: 15px;
}
.en-process-section {
  position: relative;
  z-index: 5;
  padding: 42px 72px 0;
  background: #050607;
}

.en-process-grid {
  max-width: 1640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.en-process-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 34px 28px 28px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 22% 18%, rgba(255,138,0,.11), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

.en-process-card::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 92px;
  width: calc(100% - 92px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255,138,0,.75), rgba(255,138,0,0));
  opacity: .55;
  transition: opacity .35s ease, transform .35s ease;
}

.en-process-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,138,0,.26), transparent 32%, rgba(255,255,255,.08));
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.en-process-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,138,0,.42);
  background:
    radial-gradient(circle at 22% 18%, rgba(255,138,0,.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: 0 28px 70px rgba(0,0,0,.38), 0 0 34px rgba(255,138,0,.10);
}

.en-process-card:hover::before {
  opacity: .95;
  transform: translateX(10px);
}

.en-process-card:hover::after {
  opacity: 1;
}

.en-process-number {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--orange);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .03em;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,.22), transparent 28%),
    radial-gradient(circle at 50% 55%, rgba(255,138,0,.18), transparent 38%),
    #030405;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 12px 34px rgba(0,0,0,.45),
    0 0 24px rgba(255,138,0,.10);
  transition: transform .35s ease, box-shadow .35s ease;
}

.en-process-card:hover .en-process-number {
  transform: scale(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 16px 42px rgba(0,0,0,.5),
    0 0 34px rgba(255,138,0,.24);
}

.en-process-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.96);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 900;
}

.en-process-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 1.45;
  font-style: italic;
}

/* Tablette */
@media (max-width: 1180px) {
  .en-process-section {
    padding: 36px 44px 0;
  }

  .en-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .en-process-card {
    min-height: 230px;
  }
}
@media (max-width: 1024px) {

  .en-process-heading h2 {
    font-size: 26px;
  }

  .en-process-heading p {
    font-size: 14px;
  }

  .en-process-card h3 {
    font-size: 21px;
    line-height: 1.08;
  }

  .en-process-card p {
    font-size: 15px;
  }

}
/* 768px */
@media (max-width: 768px) {
	
	  .en-process-heading h2 {
    font-size: 22px;
  }

  .en-process-card h3 {
    font-size: 18px;
  }
	
  .en-process-section {
    padding: 30px 22px 0;
  }

  .en-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .en-process-card {
    min-height: 220px;
    padding: 28px 22px 24px;
  }

  .en-process-number {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
    font-size: 25px;
  }

  .en-process-card h3 {
    font-size: 22px;
  }

  .en-process-card p {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .en-process-section {
    padding: 26px 14px 0;
  }

  .en-process-grid {
    grid-template-columns: 1fr;
  }

  .en-process-card {
    min-height: 205px;
  }
}




/* =========================================================
   EMMA & NORMAN — DUO BLOCK
========================================================= */

.ai-duo-section {
  --duo-orange: #f2a642;
  --duo-black: #050507;

  padding: 80px 20px;
  background: var(--duo-black);
  overflow: hidden;
	padding-bottom: 40px;
}

.ai-duo-card {
  position: relative;
  width: min(100%, 1640px);
  min-height: 515px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(242, 166, 66, 0.24);

background:
  url("../images/emma-norman-bg.webp");

  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;

  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.ai-duo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.62), transparent 34%, transparent 66%, rgba(36,18,7,0.48)),
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 36%, rgba(0,0,0,0.22));
}

.ai-duo-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 10;
  pointer-events: none;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.ai-duo-col,
.ai-duo-center {
  position: relative;
  min-height: 455px;
}

.ai-duo-col {
  z-index: 2;
}

.ai-duo-content {
  position: absolute;
  top: 56px;
  z-index: 6;
  width: 235px;
}

.ai-duo-col-left .ai-duo-content {
  left: 40px;
}

.ai-duo-col-right .ai-duo-content {
  right: 40px;
}

.ai-duo-content h2 {
  margin: 0 0 8px;
  color: var(--duo-orange);
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(242, 166, 66, 0.3);
}

.ai-duo-content p {
  margin: 0 0 38px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 650;
}

.ai-duo-content ul {
  display: grid;
  gap: 20px;
  margin: 0 0 54px;
  padding: 0;
  list-style: none;
}

.ai-duo-content li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.65);
}

.ai-duo-content li::before {
  content: "";

  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.10);

  background:
    radial-gradient(
      circle at 30% 28%,
      rgba(255,255,255,.10),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(22,24,30,.96),
      rgba(6,7,10,.94)
    );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.08),
    inset 0 -8px 18px rgba(0,0,0,.55),
    0 10px 22px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,255,255,.02);

  position: relative;

  transition:
    transform .32s ease,
    border-color .32s ease,
    box-shadow .32s ease;
}

/* Glow orange */
.ai-duo-content li::after {
  content: "✓";

  position: absolute;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #f2a642;

  font-size: 13px;
  font-weight: 900;

  text-shadow:
    0 0 10px rgba(242,166,66,.22);

  z-index: 2;

  transition:
    transform .28s ease,
    color .28s ease;
}

/* Reflection premium */
.ai-duo-content li::before {
  overflow: hidden;
}

.ai-duo-content li::before {
  background:
    radial-gradient(
      circle at 30% 28%,
      rgba(255,255,255,.10),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(22,24,30,.96),
      rgba(6,7,10,.94)
    );
}

.ai-duo-content li:hover::before {
  transform: translateY(-2px) scale(1.04);

  border-color: rgba(242,166,66,.48);

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.10),
    inset 0 -10px 22px rgba(0,0,0,.62),
    0 14px 28px rgba(0,0,0,.42),
    0 0 24px rgba(242,166,66,.16);
}

.ai-duo-content li:hover::after {
  transform: scale(1.08);
  color: #fff;
}

.ai-duo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 230px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(242,166,66,0.92);
  background: rgba(0,0,0,0.72);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.01em;
  box-shadow:
    inset 0 0 18px rgba(242,166,66,0.04),
    0 0 18px rgba(242,166,66,0.06);
  transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.ai-duo-btn:hover {
  transform: translateY(-2px);
  background: rgba(242,166,66,0.06);
  box-shadow:
    inset 0 0 18px rgba(242,166,66,0.08),
    0 0 28px rgba(242,166,66,0.16);
}

.btn-arrow {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

.btn-arrow svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s ease;
}

.ai-duo-btn:hover .btn-arrow svg {
  transform: translateX(3px);
}

.ai-duo-robot {
  position: absolute;
  bottom: -6px;
  z-index: 5;
  width: auto;
  max-width: none;
  height: 410px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,0.7));
}

.ai-duo-robot-norman {
    left: 300px;
    height: 450px;
}

.ai-duo-robot-emma {
    right: 314px;
    height: 450px;
}


.ai-duo-center {
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ai-duo-rings {
  position: absolute;
  inset: 18px -30px;
  display: grid;
  place-items: center;
  opacity: 0.9;
  pointer-events: none;
}

.ai-duo-rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242,166,66,0.18);
  box-shadow: 0 0 18px rgba(242,166,66,0.08);
}

.ai-duo-rings span:nth-child(1) {
  width: 140px;
  height: 140px;
}

.ai-duo-rings span:nth-child(2) {
  width: 210px;
  height: 210px;
}

.ai-duo-rings span:nth-child(3) {
  width: 282px;
  height: 282px;
}

.ai-duo-rings span:nth-child(4) {
  width: 352px;
  height: 352px;
}

.ai-duo-center-text {
  position: relative;
  z-index: 4;
  margin-bottom: 46px;
  color: rgba(255,255,255,0.9);
  font-size: 21px;
  line-height: 1.45;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 16px rgba(0,0,0,0.72);
}

.ai-duo-center-text span {
  display: block;
}

.ai-duo-btn-center {
  position: relative;
  z-index: 4;
  min-height: 72px;
  line-height: 1.35;
  text-align: center;
}

/* Responsive */
@media (max-width: 1180px) {
  .ai-duo-card {
    grid-template-columns: 1fr 260px 1fr;
  }

  .ai-duo-robot {
    height: 380px;
  }

  .ai-duo-robot-norman {
    left: 178px;
  }

  .ai-duo-robot-emma {
    right: 170px;
  }

  .ai-duo-content {
    width: 210px;
  }
	.ai-duo-content li {
  font-size: 13px;
}
}


@media (max-width: 1024px) {


}

@media (max-width: 980px) {
  .ai-duo-card {
    grid-template-columns: 1fr;
    min-height: 1330px;
  }

  .ai-duo-col,
  .ai-duo-center {
    min-height: 360px;
  }

  .ai-duo-col-left {
    order: 1;
  }

  .ai-duo-center {
    order: 2;
    min-height: 290px;
  }

  .ai-duo-col-right {
    order: 3;
  }

  .ai-duo-col-left .ai-duo-content,
  .ai-duo-col-right .ai-duo-content {
    left: 32px;
    right: auto;
  }

  .ai-duo-robot-norman,
  .ai-duo-robot-emma {
    right: 4%;
    left: auto;
  }
}



@media (max-width: 620px) {
  .ai-duo-section {
    padding: 50px 14px;
  }

  .ai-duo-card {
    border-radius: 16px;
	  grid-template-columns: 1fr;
        min-height: auto;
  }

  .ai-duo-col,
  .ai-duo-center {
    min-height: 420px;
  }

  .ai-duo-content {
    top: 34px;
    left: 22px !important;
    width: calc(100% - 44px);
  }

  .ai-duo-content h2 {
    font-size: 24px;
  }

  .ai-duo-content p {
    margin-bottom: 24px;
  }

  .ai-duo-content ul {
    gap: 14px;
    margin-bottom: 28px;
  }

  .ai-duo-robot {
    height: 300px;
    right: 10px;
    opacity: 0.78;
  }

  .ai-duo-center {
    min-height: 260px;
  }

  .ai-duo-rings span:nth-child(4) {
    width: 292px;
    height: 292px;
  }

  .ai-duo-center-text {
    margin-bottom: 32px;
    font-size: 17px;
  }

  .ai-duo-btn {
    min-width: 210px;
    min-height: 52px;
    font-size: 12px;
  }
}

@media (max-width: 375px) {
 .ai-duo-robot {
    height: 300px;
    right: 10px;
    opacity: 0.78;
  }
	  }




/* =========================================================
   SECTEURS
========================================================= */


.en-sectors-section {
  padding: 40px 20px;
  background: #050507;
}

.en-sectors-card {
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: 28px 22px 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(242,166,66,.08), transparent 36%),
    rgba(8, 11, 14, .72);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.025),
    0 22px 70px rgba(0,0,0,.38);
}

.en-sectors-card h2 {
  margin: 0 0 20px;
  text-align: center;
  color: #f4f0ea;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.en-sectors-card h2 span {
  color: #f2a642;
  font-weight: 900;
}

.en-sectors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.en-sector-item {
  min-height: 128px;
  padding: 16px 14px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(4, 7, 10, .48);
  color: rgba(255,255,255,.78);
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.16;
  font-weight: 600;
  box-shadow: inset 0 0 22px rgba(255,255,255,.018);
  transition:
    transform .3s ease,
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease,
    color .3s ease;
}

.en-sector-item:hover {
  transform: translateY(-4px);
  color: #fff;
  border-color: rgba(242,166,66,.42);
  background: rgba(242,166,66,.055);
  box-shadow:
    inset 0 0 26px rgba(242,166,66,.04),
    0 16px 36px rgba(0,0,0,.32);
}

.en-sector-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f2a642;
}

.en-sector-icon svg {
  width: 46px;
  height: 46px;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(1px 1px 0 rgba(255,255,255,.28))
    drop-shadow(0 0 8px rgba(242,166,66,.22));
}

@media (max-width: 1100px) {
  .en-sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .en-sectors-section {
    padding: 50px 14px;
  }

  .en-sectors-card {
    padding: 24px 14px 14px;
  }

  .en-sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .en-sector-item {
    min-height: 122px;
    font-size: 14px;
  }

  .en-sector-icon,
  .en-sector-icon svg {
    width: 40px;
    height: 40px;
  }
}


/* =========================================================
   ASSISTANTS IA POUR VOS ÉQUIPES
========================================================= */

.en-teams-section {
  padding: 40px 20px;
  background: #050507;
  overflow: hidden;
}

.en-teams-card {
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: 28px 28px 34px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 50% 0%, rgba(242,166,66,.08), transparent 36%),
    rgba(8, 11, 14, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.025),
    0 22px 70px rgba(0,0,0,.38);
}

.en-teams-header {
  margin-bottom: 26px;
  text-align: center;
}

.en-teams-header h2 {
  margin: 0;
  color: #f4f0ea;
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.en-teams-header h2 span {
  color: #f2a642;
  font-weight: 900;
}

.en-teams-slider-wrap {
  position: relative;
}

.en-teams-slider {
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 4px 4px;
}

.en-teams-slider::-webkit-scrollbar {
  display: none;
}

.en-team-card {
  position: relative;
  flex: 0 0 calc((100% - 54px) / 4);
  height: 330px;
  min-height: 330px;
  max-height: 330px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: #080b0f;
  scroll-snap-align: start;
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.02),
    0 18px 44px rgba(0,0,0,.30);
  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.en-team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242,166,66,.42);
  box-shadow:
    inset 0 0 0 1px rgba(242,166,66,.06),
    0 24px 54px rgba(0,0,0,.42),
    0 0 30px rgba(242,166,66,.10);
}

.en-team-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease, filter .35s ease;
}

.en-team-card:hover img {
  transform: scale(1.045);
  filter: brightness(1.08);
}

.en-team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 35%,
      rgba(3,5,8,.78) 72%,
      rgba(3,5,8,.94) 100%
    );
}

.en-team-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  height: 44%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 100%, rgba(242,166,66,.10), transparent 42%);
}

.en-team-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  min-height: 72px;
}

.en-team-content h3 {
  margin: 0 0 8px;
  color: #f2a642;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(242,166,66,.18);
}

.en-team-content p {
  margin: 0;
  max-width: 260px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 550;
}

/* Loupe */
.en-card-zoom {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(5,5,7,.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(8px) scale(.92);
  transition:
    opacity .28s ease,
    transform .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.en-card-zoom svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.en-team-card:hover .en-card-zoom {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(242,166,66,.42);
  background: rgba(242,166,66,.12);
}

.en-teams-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(242,166,66,.46);
  background: rgba(5,5,7,.72);
  color: #f2a642;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 0 24px rgba(0,0,0,.38),
    inset 0 0 12px rgba(242,166,66,.05);
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    color .25s ease;
}

.en-teams-arrow span {
  display: block;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-2px);
}

.en-teams-arrow:hover {
  color: #fff;
  border-color: rgba(242,166,66,.9);
  background: rgba(242,166,66,.10);
}

.en-teams-arrow-prev {
  left: -50px;
}

.en-teams-arrow-next {
  right: -50px;
}

@media (max-width: 1380px) {
  .en-teams-arrow-prev {
    left: -14px;
  }

  .en-teams-arrow-next {
    right: -14px;
  }
}

@media (max-width: 1100px) {
  .en-team-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 680px) {
  .en-teams-section {
    padding: 54px 14px;
  }

  .en-teams-card {
    padding: 24px 14px 28px;
    border-radius: 16px;
  }

  .en-teams-header {
    margin-bottom: 22px;
  }

  .en-team-card {
    flex-basis: 86%;
    height: 320px;
    min-height: 320px;
    max-height: 320px;
  }

  .en-team-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .en-teams-arrow {
    width: 38px;
    height: 38px;
  }

  .en-teams-arrow-prev {
    left: -6px;
  }

  .en-teams-arrow-next {
    right: -6px;
  }
}


/* =========================================================
   PREMIUM CAROUSEL ARROWS
========================================================= */

.en-teams-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;

  width: 64px;
  height: 64px;

  transform: translateY(-50%);

  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;

  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.12), transparent 34%),
    linear-gradient(
      145deg,
      rgba(22,24,30,.96),
      rgba(6,7,10,.94)
    );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.08),
    inset 0 -8px 18px rgba(0,0,0,.55),
    0 12px 28px rgba(0,0,0,.38),
    0 0 0 1px rgba(255,255,255,.02);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  overflow: hidden;

  transition:
    transform .32s ease,
    border-color .32s ease,
    box-shadow .32s ease,
    background .32s ease;
}

/* Glow orange subtil */
.en-teams-arrow::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  background:
    radial-gradient(
      circle at center,
      rgba(242,166,66,.16),
      transparent 70%
    );

  opacity: 0;

  transition: opacity .32s ease;
}

/* Reflection premium */
.en-teams-arrow::after {
  content: "";

  position: absolute;
  top: -40%;
  left: -60%;

  width: 70%;
  height: 180%;

  transform: rotate(24deg);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.12),
      transparent
    );

  opacity: .55;
}

/* Hover */
.en-teams-arrow:hover {
  transform: translateY(-50%) scale(1.06);

  border-color: rgba(242,166,66,.48);

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.10),
    inset 0 -10px 22px rgba(0,0,0,.62),
    0 16px 34px rgba(0,0,0,.46),
    0 0 28px rgba(242,166,66,.16);
}

.en-teams-arrow:hover::before {
  opacity: 1;
}

/* Active click */
.en-teams-arrow:active {
  transform: translateY(-50%) scale(.96);
}

/* =========================================================
   SVG ARROW
========================================================= */

.en-teams-arrow span {
  display: none;
}

.en-teams-arrow svg {
  position: relative;
  z-index: 2;

  width: 22px;
  height: 22px;

  stroke: #f2a642;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;

  filter:
    drop-shadow(0 0 10px rgba(242,166,66,.18));

  transition:
    transform .28s ease,
    stroke .28s ease;
}

.en-teams-arrow:hover svg {
  transform: scale(1.08);
  stroke: #fff;
}

/* =========================================================
   POSITION
========================================================= */

.en-teams-arrow-prev {
  left: -78px;
}

.en-teams-arrow-next {
  right: -78px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1380px) {

  .en-teams-arrow {
    width: 56px;
    height: 56px;
  }

  .en-teams-arrow-prev {
    left: -18px;
  }

  .en-teams-arrow-next {
    right: -18px;
  }

  .en-teams-arrow svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 680px) {

  .en-teams-arrow {
    width: 48px;
    height: 48px;
  }

  .en-teams-arrow-prev {
    left: -6px;
  }

  .en-teams-arrow-next {
    right: -6px;
  }

  .en-teams-arrow svg {
    width: 18px;
    height: 18px;
  }
}



/* =========================================================
   FINAL CTA — EMMA & NORMAN
========================================================= */

.en-final-cta-section {
  padding: 40px 20px 80px;
  background: #050507;
  overflow: hidden;
}

.en-final-cta-card {
  position: relative;

  width: min(100%, 1640px);
  min-height: 450px;

  margin: 0 auto;
  padding: 42px 52px;

  display: grid;
  grid-template-columns: 1.15fr 1px .92fr .95fr;
  align-items: center;
  gap: 52px;

  overflow: hidden;

  border-radius: 18px;
  border: 1px solid rgb(47 47 47);

  background:linear-gradient(90deg, rgba(5, 7, 9, .96) 0%, rgb(5 7 9 / 0%) 48%, rgb(22 12 7 / 45%) 100%), url(../images/final-cta-bg.webp);

  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.025),
    0 24px 80px rgba(0,0,0,.42);
}

.en-final-cta-card::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;

  background:
    radial-gradient(circle at 70% 50%, rgba(242,166,66,.12), transparent 34%),
    linear-gradient(
      180deg,
      rgba(255,255,255,.035),
      transparent 42%,
      rgba(0,0,0,.22)
    );
}

.en-final-cta-card > * {
  position: relative;
  z-index: 2;
}

/* =========================================================
   LEFT
========================================================= */

.en-final-cta-left h2 {
  margin: 0 0 26px;

  color: #f4f0ea;

  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.34;
  font-weight: 500;

  letter-spacing: .055em;
  text-transform: uppercase;
}

.en-final-cta-left h2 span {
  color: #f2a642;
  font-weight: 900;
}

.en-final-cta-left p {
  max-width: 560px;

  margin: 0;

  color: rgba(255,255,255,.74);

  font-size: 18px;
  line-height: 1.65;
  font-weight: 550;
}

/* =========================================================
   SEPARATOR
========================================================= */

.en-final-cta-separator {
  width: 1px;
  height: 150px;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(255,255,255,.16),
      transparent
    );
}

/* =========================================================
   FEATURES
========================================================= */

.en-final-cta-middle {
  display: grid;
  gap: 24px;
}

.en-final-cta-feature {
  display: flex;
  align-items: center;
  gap: 18px;

  color: rgba(255,255,255,.84);

  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}

/* =========================================================
   PREMIUM CTA ICONS
========================================================= */

.en-final-cta-icon {
  position: relative;

  width: 54px;
  height: 54px;

  flex: 0 0 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.10);

  background:
    radial-gradient(
      circle at 30% 28%,
      rgba(255,255,255,.10),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(22,24,30,.96),
      rgba(6,7,10,.94)
    );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.08),
    inset 0 -8px 18px rgba(0,0,0,.55),
    0 12px 28px rgba(0,0,0,.38),
    0 0 0 1px rgba(255,255,255,.02);

  overflow: hidden;

  transition:
    transform .32s ease,
    border-color .32s ease,
    box-shadow .32s ease,
    background .32s ease;
}

/* Glow orange */
.en-final-cta-icon::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  background:
    radial-gradient(
      circle at center,
      rgba(242,166,66,.16),
      transparent 72%
    );

  opacity: 0;

  transition: opacity .32s ease;
}

/* Reflection premium */
.en-final-cta-icon::after {
  content: "";

  position: absolute;
  top: -40%;
  left: -60%;

  width: 70%;
  height: 180%;

  transform: rotate(24deg);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.10),
      transparent
    );

  opacity: .55;
}

/* Hover */
.en-final-cta-feature:hover .en-final-cta-icon {
  transform: translateY(-3px) scale(1.04);

  border-color: rgba(242,166,66,.48);

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.10),
    inset 0 -10px 22px rgba(0,0,0,.62),
    0 16px 34px rgba(0,0,0,.46),
    0 0 28px rgba(242,166,66,.16);
}

.en-final-cta-feature:hover .en-final-cta-icon::before {
  opacity: 1;
}

/* =========================================================
   SVG
========================================================= */

.en-final-cta-icon svg {
  position: relative;
  z-index: 2;

  width: 24px;
  height: 24px;

  stroke: #f2a642;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;

  fill: none;

  filter:
    drop-shadow(0 0 10px rgba(242,166,66,.18));

  transition:
    transform .28s ease,
    stroke .28s ease;
}

.en-final-cta-feature:hover .en-final-cta-icon svg {
  transform: scale(1.08);
  stroke: #fff;
}

/* =========================================================
   RIGHT
========================================================= */

.en-final-cta-right {
  display: flex;
  justify-content: center;
}

/* =========================================================
   BUTTON
========================================================= */

.en-final-cta-btn {
  position: relative;

  overflow: hidden;
  isolation: isolate;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  min-width: 340px;
  min-height: 62px;

  padding: 0 34px;

  border: 0;
  border-radius: 999px;

  background: #f2a642;
  color: #050507;

  text-decoration: none;
  text-transform: uppercase;

  font-size: 13px;
  line-height: 1;
  font-weight: 950;

  letter-spacing: .055em;

  box-shadow:
    0 18px 42px rgba(242,166,66,.22),
    inset 0 1px 0 rgba(255,255,255,.22);

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    filter .3s ease;
}

.en-final-cta-btn::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent 20%,
      rgba(255,255,255,.18) 50%,
      transparent 80%
    );

  transform: translateX(-140%);
  transition: transform .8s ease;
}

.en-final-cta-btn:hover::before {
  transform: translateX(140%);
}

.en-final-cta-btn:hover {
  transform: translateY(-2px);

  filter: brightness(1.04);

  box-shadow:
    0 22px 54px rgba(242,166,66,.30),
    inset 0 1px 0 rgba(255,255,255,.28);
}

/* =========================================================
   BUTTON ARROW
========================================================= */

.en-final-cta-btn .btn-arrow {
  width: 22px;
  height: 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.en-final-cta-btn .btn-arrow svg {
  width: 22px;
  height: 22px;

  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform .3s ease;
}

.en-final-cta-btn:hover .btn-arrow svg {
  transform: translateX(4px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {

  .en-final-cta-card {
    grid-template-columns: 1fr;

    gap: 34px;

    padding: 40px;
  }

  .en-final-cta-separator {
    display: none;
  }

  .en-final-cta-right {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
.en-final-cta-card {
    background-position: 70% center;
}
}



@media (max-width: 680px) {

  .en-final-cta-section {
    padding: 34px 14px 60px;
  }

  .en-final-cta-card {
    padding: 30px 22px;

    border-radius: 16px;
  }

  .en-final-cta-left h2 {
    font-size: 24px;
    line-height: 1.32;
  }

  .en-final-cta-left p {
    font-size: 15px;
  }

  .en-final-cta-feature {
    align-items: flex-start;
    font-size: 14px;
  }

  .en-final-cta-btn {
    width: 100%;
    min-width: 0;
    min-height: 60px;

    font-size: 12px;
  }
}


/* =========================================================
   FOOTER — SECTION
========================================================= */

.en-footer {
  position: relative;
  padding: 40px 20px 28px;
  background:
    radial-gradient(circle at 50% 100%, rgba(242,166,66,.10), transparent 34%),
    #050507;
  overflow: hidden;
}

/* =========================================================
   FOOTER — MAIN CARD
========================================================= */

.en-footer-card {
  position: relative;
  width: min(100%, 1640px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(6,8,11,.90), rgba(4,5,7,.94));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.025),
    0 28px 90px rgba(0,0,0,.46);
}

/* =========================================================
   FOOTER — BACKGROUND IMAGE
========================================================= */

.en-footer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5,7,9,.86) 0%,
      rgba(5,7,9,.68) 38%,
      rgba(5,7,9,.46) 62%,
      rgba(5,7,9,.76) 100%
    ),
    url("../images/footer-emma-norman-bg.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
}

/* =========================================================
   FOOTER — OVERLAY GLOW
========================================================= */

.en-footer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 82%, rgba(242,166,66,.16), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(242,166,66,.10), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.035), transparent 58%);
  pointer-events: none;
}

/* =========================================================
   FOOTER — MAIN GRID
========================================================= */

.en-footer-main,
.en-footer-bottom {
  position: relative;
  z-index: 2;
}

.en-footer-main {
  display: grid;
  grid-template-columns: 1.6fr .75fr .75fr .75fr 1.15fr;
  gap: 52px;
  padding: 70px 68px 72px;
}

/* =========================================================
   FOOTER — BRAND / LOGO
========================================================= */

.en-footer-logo {
  display: inline-flex;
  margin-bottom: 28px;
}

.en-footer-logo img {
  display: block;
  width: 285px;
  max-width: 100%;
  height: auto;
}

/* =========================================================
   FOOTER — TAGLINE
========================================================= */

.en-footer-tagline {
  margin: 0 0 28px;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.en-footer-tagline span {
  color: #f2a642;
}

/* =========================================================
   FOOTER — DESCRIPTION
========================================================= */

.en-footer-text {
  max-width: 430px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.74);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
}

/* =========================================================
   FOOTER — SOCIALS
========================================================= */

.en-footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.en-footer-socials a {
  position: relative;
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.10), rgba(8,10,14,.98));
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.10),
    inset 0 -12px 28px rgba(0,0,0,.78),
    0 16px 34px rgba(0,0,0,.50),
    0 0 0 1px rgba(242,166,66,.06);
  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.en-footer-socials a::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background:
    radial-gradient(circle, rgba(242,166,66,.42), rgba(242,166,66,.14) 42%, transparent 72%);
  opacity: 1;
  filter: blur(12px);
  transition:
    transform .35s ease,
    opacity .35s ease;
}

.en-footer-socials a::after {
  content: "";
  position: absolute;
  width: 84%;
  height: 84%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,.14), transparent 34%),
    linear-gradient(145deg, rgba(28,30,36,.98), rgba(5,6,9,.98));
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.10),
    inset 0 -12px 24px rgba(0,0,0,.78);
  z-index: 1;
}

.en-footer-socials svg {
  position: relative;
  z-index: 3;
  width: 26px;
  height: 26px;
  fill: #fff;
  stroke: none;
  filter: drop-shadow(0 0 12px rgba(255,255,255,.14));
  transition:
    transform .3s ease,
    fill .3s ease,
    filter .3s ease;
}

.en-footer-socials a:hover {
  transform: translateY(-5px) scale(1.06);
  border-color: rgba(242,166,66,.58);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.12),
    inset 0 -14px 28px rgba(0,0,0,.82),
    0 22px 44px rgba(0,0,0,.60),
    0 0 36px rgba(242,166,66,.24);
}

.en-footer-socials a:hover::before {
  transform: scale(1.08);
}

.en-footer-socials a:hover svg {
  transform: scale(1.12);
  fill: #f2a642;
  filter: drop-shadow(0 0 18px rgba(242,166,66,.34));
}

/* =========================================================
   FOOTER — NAVIGATION COLUMNS
========================================================= */

.en-footer-col h3 {
  position: relative;
  margin: 0 0 34px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.en-footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 28px;
  height: 1px;
  background: #f2a642;
}

.en-footer-col a {
  position: relative;
  display: table;
  margin-bottom: 15px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  transition:
    color .3s ease,
    transform .3s ease;
}

.en-footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background:
    linear-gradient(90deg, #f2a642 0%, rgba(242,166,66,0) 100%);
  transition: width .35s ease;
}

.en-footer-col a:hover {
  color: #f2a642;
  transform: translateX(2px);
}

.en-footer-col a:hover::after {
  width: 100%;
}

/* =========================================================
   FOOTER — CTA CARD
========================================================= */

.en-footer-cta-card {
  padding: 36px 36px 34px;
  border-radius: 18px;
  border: 1px solid rgba(242,166,66,.32);
  background:rgb(5 7 9 / 0%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.025),
    0 18px 48px rgba(0,0,0,.36);
  text-align: center;
}

/* =========================================================
   FOOTER — CTA TITLE
========================================================= */

.en-footer-cta-title {
  margin: 0 0 26px;
  color: #f2a642;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* =========================================================
   FOOTER — PREMIUM ORB
========================================================= */

.en-footer-cta-mark {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.12), transparent 34%),
    linear-gradient(145deg, rgba(22,24,30,.96), rgba(6,7,10,.94));
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.08),
    inset 0 -10px 22px rgba(0,0,0,.62),
    0 16px 34px rgba(0,0,0,.46),
    0 0 34px rgba(242,166,66,.14);
}

.en-footer-cta-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at center, rgba(242,166,66,.20), transparent 72%);
}

.en-footer-cta-mark::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 70%;
  height: 180%;
  transform: rotate(24deg);
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
  opacity: .55;
}

.en-footer-cta-orb {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,.36);
  box-shadow:
    inset 0 0 16px rgba(242,166,66,.08),
    0 0 22px rgba(242,166,66,.18);
}

.en-footer-cta-orb img {
  display: block;
  width: 53px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(242,166,66,.35));
}

/* =========================================================
   FOOTER — CTA TEXT
========================================================= */

.en-footer-cta-card p:not(.en-footer-cta-title) {
  max-width: 310px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.2;
}

/* =========================================================
   FOOTER — CTA BUTTON
========================================================= */

.en-footer-demo-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  min-height: 62px;
  padding: 0 26px;
  border-radius: 999px;
  background: #f2a642;
  color: #050507;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .055em;
  box-shadow:
    0 18px 42px rgba(242,166,66,.22),
    inset 0 1px 0 rgba(255,255,255,.22);
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    filter .3s ease;
}

.en-footer-demo-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-140%);
  background:
    linear-gradient(
      120deg,
      transparent 20%,
      rgba(255,255,255,.18) 50%,
      transparent 80%
    );
  transition: transform .8s ease;
}

.en-footer-demo-btn:hover::before {
  transform: translateX(140%);
}

.en-footer-demo-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 22px 54px rgba(242,166,66,.30),
    inset 0 1px 0 rgba(255,255,255,.28);
}

.en-footer-demo-btn .btn-arrow svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s ease;
}

.en-footer-demo-btn:hover .btn-arrow svg {
  transform: translateX(4px);
}

/* =========================================================
   FOOTER — HELP SECTION
========================================================= */

.en-footer-help {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-left: 8px;
}

.en-footer-help-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  color: #f2a642;
}

.en-footer-help-icon svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.en-footer-help p {
  margin: 0 0 6px;
  color: rgba(255,255,255,.76);
  font-size: 16px;
}

.en-footer-help span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.62);
  font-size: 15px;
}

.en-footer-help a {
  color: #f2a642;
  text-decoration: none;
  font-size: 15px;
}

/* =========================================================
   FOOTER — BOTTOM BAR
========================================================= */

.en-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 42px;
  padding: 28px 68px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.018);
  text-align: center;
}

.en-footer-bottom p {
  width: 100%;
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: 14px;
}

.en-footer-bottom p span {
  color: #f2a642;
}

.en-footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 42px;
}

.en-footer-legal a {
  color: rgba(255,255,255,.56);
  text-decoration: none;
  font-size: 14px;
  transition: color .25s ease;
}

.en-footer-legal a:hover {
  color: #f2a642;
}

/* =========================================================
   FOOTER — RESPONSIVE 1440
========================================================= */

@media (max-width: 1440px) {
  .en-footer-main {
    gap: 38px;
    padding: 64px 52px 66px;
  }

  .en-footer-logo img {
    width: 255px;
  }
}

/* =========================================================
   FOOTER — RESPONSIVE 1280
========================================================= */

@media (max-width: 1280px) {
  .en-footer-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    padding: 56px 44px 60px;
  }

  .en-footer-brand {
    grid-column: 1 / -1;
    max-width: 680px;
  }

  .en-footer-cta {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(320px, 420px) 1fr;
    gap: 34px;
    align-items: center;
  }

  .en-footer-help {
    margin-top: 0;
    padding: 28px;
    border-radius: 18px;
    background: rgb(5 7 9 / 0%);
    border: 1px solid rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

/* =========================================================
   FOOTER — RESPONSIVE 1024
========================================================= */

@media (max-width: 1024px) {
  .en-footer-card::before {
    background:
      linear-gradient(
        180deg,
        rgba(5,7,9,.52) 0%,
        rgba(5,7,9,.76) 38%,
        rgba(5,7,9,.94) 100%
      ),
      url("../images/footer-emma-norman-bg.webp");
    background-position: center top;
  }

  .en-footer-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 48px 32px 52px;
  }

  .en-footer-brand {
    grid-column: 1 / -1;
  }

  .en-footer-col {
    padding: 24px;
    border-radius: 18px;
    background: rgb(5 7 9 / 0%);
    border: 1px solid rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }


.en-footer-cta {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(320px, 420px) 1fr;
    gap: 34px;
    align-items: center;
  }

    .en-footer-help {
        margin-top: 0;
        padding: 28px;
        border-radius: 18px;
        background: rgba(5, 7, 9, .50);
        border: 1px solid rgba(255, 255, 255, .07);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
  .en-footer-bottom {
    padding: 26px 32px;
  }
}

/* =========================================================
   FOOTER — RESPONSIVE 768
========================================================= */

@media (max-width: 768px) {
  .en-footer {
    padding: 32px 14px 24px;
  }

  .en-footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 42px 24px 46px;
  }

  .en-footer-brand,
  .en-footer-cta {
    grid-column: 1 / -1;
  }
	
	  .en-footer-cta {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FOOTER — RESPONSIVE 767
========================================================= */

@media (max-width: 767px) {
  .en-footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .en-footer-col {
    padding: 22px;
  }

  .en-footer-bottom {
    padding: 24px;
  }
	
.en-footer-col {
        padding: 24px;
        border-radius: 18px;
        background: rgb(5 7 9 / 0%);
        border: 0px;
        backdrop-filter: none;
        -webkit-backdrop-filter: 0;
    }
	    .en-footer-help {
display:none;
    }
	
	    .en-footer-col {
        padding: 10px;
    }
}

/* =========================================================
   FOOTER — RESPONSIVE 620
========================================================= */

@media (max-width: 620px) {
  .en-footer-card {
    border-radius: 20px;
  }

  .en-footer-logo img {
    width: 220px;
  }

  .en-footer-tagline {
    font-size: 15px;
    letter-spacing: .09em;
  }

  .en-footer-text {
    font-size: 15px;
  }

  .en-footer-socials a {
    width: 64px;
    height: 64px;
  }

  .en-footer-socials svg {
    width: 23px;
    height: 23px;
  }

  .en-footer-cta-card {
    padding: 30px 22px;
  }
}

/* =========================================================
   FOOTER — RESPONSIVE 500
========================================================= */

@media (max-width: 500px) {
  .en-footer-main {
    padding: 36px 20px 40px;
  }

  .en-footer-socials {
    gap: 14px;
  }

  .en-footer-socials a {
    width: 58px;
    height: 58px;
  }

  .en-footer-help {
    align-items: flex-start;
    padding: 22px;
  }

  .en-footer-legal {
    gap: 14px 22px;
  }
}

/* =========================================================
   FOOTER — RESPONSIVE 425
========================================================= */

@media (max-width: 425px) {
  .en-footer {
    padding-inline: 10px;
  }

  .en-footer-main {
    padding: 34px 18px 38px;
  }

  .en-footer-col h3 {
    font-size: 14px;
  }

  .en-footer-col a {
    font-size: 14px;
  }

  .en-footer-demo-btn {
    font-size: 12px;
    min-height: 58px;
  }
}

/* =========================================================
   FOOTER — RESPONSIVE 375
========================================================= */

@media (max-width: 375px) {
  .en-footer-logo img {
    width: 200px;
  }

  .en-footer-tagline {
    font-size: 14px;
  }

  .en-footer-cta-title {
    font-size: 13px;
  }

  .en-footer-cta-mark {
    width: 84px;
    height: 84px;
  }
}

/* =========================================================
   FOOTER — RESPONSIVE 320
========================================================= */

@media (max-width: 320px) {
  .en-footer-main {
    padding: 30px 14px 34px;
  }

  .en-footer-logo img {
    width: 180px;
  }

  .en-footer-socials a {
    width: 52px;
    height: 52px;
  }

  .en-footer-socials svg {
    width: 20px;
    height: 20px;
  }

  .en-footer-bottom {
    padding: 22px 14px;
  }
}


/* =========================================================
   BACK TO TOP
========================================================= */

.en-backtop {
  position: fixed;

  right: 28px;
  bottom: 28px;

  width: 74px;
  height: 74px;

  border: none;
  border-radius: 50%;

  padding: 0;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(255,255,255,.10),
      rgba(8,10,14,.98)
    );

  border: 1px solid rgba(255,255,255,.12);

  overflow: hidden;

  z-index: 999;

  opacity: 0;
  visibility: hidden;

  transform:
    translateY(14px)
    scale(.92);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.10),
    inset 0 -12px 28px rgba(0,0,0,.78),
    0 16px 34px rgba(0,0,0,.50),
    0 0 0 1px rgba(242,166,66,.06);

  transition:
    opacity .35s ease,
    visibility .35s ease,
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

/* =========================================================
   BACK TO TOP — VISIBLE
========================================================= */

.en-backtop.is-visible {
  opacity: 1;
  visibility: visible;

  transform:
    translateY(0)
    scale(1);
}

/* =========================================================
   BACK TO TOP — GLOW
========================================================= */

.en-backtop::before {
  content: "";

  position: absolute;
  inset: -3px;

  border-radius: inherit;

  background:
    radial-gradient(
      circle,
      rgba(242,166,66,.42),
      rgba(242,166,66,.14) 42%,
      transparent 72%
    );

  opacity: 1;

  filter: blur(12px);

  transition:
    transform .35s ease,
    opacity .35s ease;
}

/* =========================================================
   BACK TO TOP — INNER ORB
========================================================= */

.en-backtop::after {
  content: "";

  position: absolute;

  width: 84%;
  height: 84%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 30% 24%,
      rgba(255,255,255,.14),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(28,30,36,.98),
      rgba(5,6,9,.98)
    );

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.10),
    inset 0 -12px 24px rgba(0,0,0,.78);

  z-index: 1;
}

/* =========================================================
   BACK TO TOP — CENTER ORB
========================================================= */

.en-backtop-orb {
  position: absolute;
  z-index: 2;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(242,166,66,.18),
      rgba(242,166,66,.04)
    );

  box-shadow:
    0 0 18px rgba(242,166,66,.24);
}

/* =========================================================
   BACK TO TOP — SVG
========================================================= */

.en-backtop svg {
  position: relative;
  z-index: 3;

  width: 24px;
  height: 24px;

  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform .3s ease,
    stroke .3s ease,
    filter .3s ease;

  filter:
    drop-shadow(0 0 12px rgba(255,255,255,.14));
}

/* =========================================================
   BACK TO TOP — HOVER
========================================================= */

.en-backtop:hover {
  transform:
    translateY(-4px)
    scale(1.06);

  border-color: rgba(242,166,66,.58);

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.12),
    inset 0 -14px 28px rgba(0,0,0,.82),
    0 22px 44px rgba(0,0,0,.60),
    0 0 36px rgba(242,166,66,.24);
}

.en-backtop:hover::before {
  transform: scale(1.08);
}

.en-backtop:hover svg {
  transform: translateY(-2px);

  stroke: #f2a642;

  filter:
    drop-shadow(0 0 18px rgba(242,166,66,.34));
}

/* =========================================================
   BACK TO TOP — RESPONSIVE
========================================================= */

@media (max-width: 768px) {

  .en-backtop {
    width: 66px;
    height: 66px;

    right: 18px;
    bottom: 18px;
  }

  .en-backtop svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 500px) {

  .en-backtop {
    width: 58px;
    height: 58px;

    right: 14px;
    bottom: 14px;
  }

  .en-backtop-orb {
    width: 34px;
    height: 34px;
  }

  .en-backtop svg {
    width: 20px;
    height: 20px;
  }
}