﻿/*

Activicode Web Platform

https://activicode.com

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #9a81e8;
  --secondary-color: #111827;
  --section-bg-color: #9a81e8;
  --custom-btn-bg-color: #9a81e8;
  --custom-btn-bg-hover-color: #000000;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #9a81e8;
  --link-hover-color: #000000;
  --redcode: #f33f5d;

  --body-font-family: "Open Sans", sans-serif;
  --title-font-family: "Montserrat", sans-serif;

  --h1-font-size: 58px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --menu-font-size: 14px;
  --btn-font-size: 18px;
  --copyright-font-size: 16px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family);
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

#accueil,
#section_1 {
  min-height: 100vh;
  position: relative;
  z-index: 0;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  /* background-image: linear-gradient(15deg, #111827 0%, #1f2937 100%); */
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  /* opacity: 0.85; */
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  color: white !important;
  background: #111827;
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  padding-top: 150px;
  padding-bottom: 80px;
}

.site-header .container {
  height: 100%;
}

.breadcrumb-item + .breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--white-color);
}

.site-header .custom-icon {
  color: var(--white-color);
  font-size: var(--h4-font-size);
}

.site-header .custom-icon:hover {
  color: var(--secondary-color);
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--secondary-color);
}

.navbar {
  background: transparent;
  border-bottom: 1px solid rgba(128, 208, 199, 0.35);
  z-index: 9;
}
.navbar-brand img {
  width: 230px;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
}

.navbar-brand span {
  font-family: var(--title-font-family);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: white !important;
  background: #a588f959 !important;
}

.navbar-auth {
  margin-left: 16px;
  gap: 10px;
  backdrop-filter: blur(6px);
}

.navbar-auth .nav-link.navbar-auth-link {
  margin: 0;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.navbar-auth .nav-link.navbar-auth-link:hover {
  transform: translateY(-1px);
}

.navbar-auth-link-register {
  background: rgba(154, 129, 232, 0.18);
  border: 1px solid rgba(154, 129, 232, 0.4);
  color: var(--white-color);
}

.navbar-auth-link-register:hover {
  background: rgba(154, 129, 232, 0.34) !important;
  border-color: rgba(154, 129, 232, 0.8) !important;
  color: var(--white-color) !important;
}

.navbar-auth-link-login {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
}

.navbar-auth-link-login:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  color: var(--white-color) !important;
}

.navbar-auth-separator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.sticky-wrapper.is-sticky .navbar-auth {
  background: rgba(17, 24, 39, 0.55);
  border-color: rgba(154, 129, 232, 0.6);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition:
    top 300ms 50ms ease,
    -webkit-transform 300ms 350ms ease;
  transition:
    top 300ms 50ms ease,
    transform 300ms 350ms ease;
  transition:
    top 300ms 50ms ease,
    transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition:
    top 300ms 350ms ease,
    -webkit-transform 300ms 50ms ease;
  transition:
    top 300ms 350ms ease,
    transform 300ms 50ms ease;
  transition:
    top 300ms 350ms ease,
    transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  --hero-nav-offset: 96px;
  --hero-top-gap: clamp(24px, 3vw, 44px);
  --hero-bottom-gap: clamp(28px, 4vw, 56px);
  --hero-admin-offset: 0px;
  background-image: linear-gradient(15deg, #111827 35%, #ff4062 100%);
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--hero-admin-offset));
  padding-top: calc(var(--hero-nav-offset) + var(--hero-top-gap));
  padding-bottom: var(--hero-bottom-gap);
}

body.admin-bar .hero-section {
  --hero-admin-offset: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .hero-section {
    --hero-admin-offset: 46px;
  }
}

#constellationCanvas {
  z-index: 1;
  pointer-events: none;
}
.constellation-wrapper {
  position: relative;
  isolation: isolate;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-section > .container > .row {
  min-height: calc(
    100svh - var(--hero-admin-offset) - var(--hero-nav-offset) -
      var(--hero-top-gap) - var(--hero-bottom-gap)
  );
}

@media screen and (max-width: 991px) {
  .hero-section {
    --hero-nav-offset: 84px;
    --hero-top-gap: 18px;
    --hero-bottom-gap: 34px;
  }
}

@media screen and (max-width: 767px) {
  .hero-section {
    --hero-nav-offset: 78px;
    --hero-top-gap: 16px;
    --hero-bottom-gap: 28px;
  }
}

.realisations-hero {
  position: relative;
  overflow: hidden;
}

.realisations-hero .constellation-canvas {
  z-index: 1;
  pointer-events: none;
}

.realisations-hero-header {
  background-image: linear-gradient(15deg, #111827 35%, #ff4062 100%);
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 150px;
}

.realisations-hero-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.realisations-hero-header .container {
  position: relative;
  z-index: 2;
}

.hero-content-shell {
  position: relative;
  z-index: 2;
  padding: 38px 34px 40px;
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.46),
    rgba(30, 41, 59, 0.22)
  );
  border: 1px solid rgba(151, 178, 240, 0.25);
  box-shadow: 0 24px 55px rgb(0 0 0 / 58%);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  transform-style: preserve-3d;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.25s ease;
}

.hero-content-shell:hover {
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.5);
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #9bc3ff;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-title {
  color: var(--white-color);
  margin-bottom: 14px;
  line-height: 1.1;
  min-height: 1.2em;
}

.hero-title-typed {
  display: inline-block;
  position: relative;
  color: var(--white-color);
  letter-spacing: 0.01em;
}

.hero-title-typed::after {
  content: "";
  display: inline-block;
  width: 0.12em;
  height: 0.95em;
  margin-left: 0.12em;
  background: #9bc3ff;
  animation: hero-caret 0.9s steps(1) infinite;
  transform: translateY(0.08em);
}

@keyframes hero-caret {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.hero-subtitle {
  color: rgba(226, 234, 255, 0.9);
  margin: 0 auto;
  max-width: 760px;
}

.hero-pill-row {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-pill {
  border: 1px solid rgba(151, 178, 240, 0.45);
  background: rgba(63, 89, 150, 0.24);
  color: #deebff;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 0.83rem;
}

.hero-actions {
  gap: 12px;
}

.hero-actions .custom-border-btn {
  border-color: rgba(205, 220, 255, 0.65);
  color: #dde8ff;
}

.hero-actions .custom-border-btn:hover {
  border-color: var(--custom-btn-bg-color);
}

.hero-section .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 10px 15px;
}

.hero-section .input-group-text {
  background-color: transparent;
  border: 0;
}

.hero-section input[type="search"] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.hero-section button[type="submit"] {
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white-color);
  max-width: 150px;
}

/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.featured-section {
  /* background-color: var(--secondary-color); */
  background-color: #0a0e17;
  border-radius: 0 0 100px 100px;
  padding-bottom: 100px;
}

.featured-section .row {
  position: relative;
  bottom: 100px;
  margin-bottom: -100px;
}

.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  /* height: 100%; */
}

.custom-block:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.custom-block > a {
  width: 100%;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 35px;
}

.custom-block .rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 20px;
}

/* Uniformise la hauteur des cards dans "Nos realisations" */
.explore-section .tab-pane .row {
  row-gap: 24px;
}

.explore-section .tab-pane .row > [class*="col-"] {
  display: flex;
  margin-bottom: 0 !important;
}

.explore-section .custom-block {
  width: 100%;
  min-height: 390px;
  display: flex;
}

.explore-section .custom-block > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.explore-section .custom-block .d-flex {
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}

.explore-section .custom-block h5 {
  min-height: 58px;
}

.explore-section .custom-block p {
  min-height: 60px;
}

.explore-section .custom-block-image {
  margin-top: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.explore-section .activicode-product-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 180px;
  padding: 14px;
  border-radius: 16px;
  background-color: var(--ac-logo-card-bg, #e9eef6) !important;
  background-image: none !important;
  border: 1px solid var(--ac-logo-card-border, #cfd8e5) !important;
  box-shadow: 0 12px 26px var(--ac-logo-card-shadow, rgba(15, 23, 42, 0.12));
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  opacity: 1;
}

.explore-section .activicode-product-logo-only {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.18));
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

.explore-section .activicode-product-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px var(--ac-logo-card-shadow, rgba(15, 23, 42, 0.16));
  border-color: var(--ac-logo-card-border, #bcc9d8) !important;
}

.explore-section .activicode-product-logo-card:hover .activicode-product-logo-only {
  transform: scale(1.04);
  filter: drop-shadow(0 12px 22px rgba(15, 23, 42, 0.28));
}

.team-home-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(154, 129, 232, 0.12), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(243, 63, 93, 0.1), transparent 26%),
    linear-gradient(180deg, #f7f9ff 0%, #eff3ff 100%);
}

.team-home-intro {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #526070;
}

.team-home-empty-card {
  border-radius: 24px;
  border: 1px solid rgba(154, 129, 232, 0.24);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
  padding: 34px 28px;
}

.team-home-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(154, 129, 232, 0.22);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.team-home-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(154, 129, 232, 0.18) 0%,
    rgba(154, 129, 232, 0) 72%
  );
  pointer-events: none;
}

.team-home-card:hover {
  transform: translateY(-5px);
  border-color: rgba(154, 129, 232, 0.36);
  box-shadow: 0 26px 52px rgba(15, 23, 42, 0.12);
}

.team-home-media {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: linear-gradient(145deg, #dbe7ff 0%, #eef2ff 100%);
}

.team-home-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-home-body {
  position: relative;
  z-index: 1;
  padding: 22px 20px 20px;
}

.team-home-mission {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(154, 129, 232, 0.28);
  background: rgba(154, 129, 232, 0.12);
  color: #5439b2;
  font-size: 0.76rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-home-name {
  color: #111827;
  font-size: 1.34rem;
  line-height: 1.18;
  margin-bottom: 10px;
}

.team-home-details {
  color: #526070;
  font-size: 0.97rem;
  line-height: 1.72;
  margin-bottom: 18px;
}

.team-home-block + .team-home-block {
  margin-top: 18px;
}

.team-home-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #334155;
  font-size: 0.78rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-home-task-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.team-home-task-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  font-size: 0.94rem;
  line-height: 1.55;
}

.team-home-task-list i {
  color: #5237af;
  margin-top: 2px;
  flex: 0 0 auto;
}

.team-home-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team-home-tech {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.explore-section [data-home-realisations-item].is-home-products-hidden {
  display: none !important;
}

.explore-section .activicode-realisations-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.explore-section .activicode-realisations-load-more {
  min-width: 170px;
}

.about-v2-team [data-about-team-item].is-about-team-hidden {
  display: none !important;
}

.about-team-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/*---------------------------------------
  REALISATIONS
-----------------------------------------*/
.realisations-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.formation-search {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.formation-search .input-group {
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(30, 41, 59, 0.96));
  align-items: center;
  min-height: 54px;
}

.formation-search .input-group-text {
  background: transparent;
  color: #ff4062;
  border: none;
  padding: 0 18px 0 20px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
}

.formation-search .form-control {
  border: none;
  padding: 0 8px;
  background: transparent;
  color: #f8fafc;
  height: 54px;
  line-height: 54px;
  text-align: center;
}

.formation-search .form-control:focus {
  box-shadow: none;
}

.formation-search .form-control::placeholder {
  color: rgba(226, 232, 240, 0.7);
}

.formation-search .btn {
  border: none;
  border-radius: 0;
  padding: 10px 26px;
  background: linear-gradient(135deg, #ff4062, #ff8a3c);
  color: #ffffff;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.01em;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.formation-search .btn:focus {
  box-shadow: none;
}

.formation-search .btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.filter-btn {
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: #ffffff;
  color: #0f172a;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: var(--font-weight-semibold);
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.filter-btn:hover,
.filter-btn:focus {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.filter-btn.is-active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.realisations-grid .is-hidden {
  display: none !important;
}

.realisations-grid .is-search-hidden {
  display: none !important;
}

.realisations-grid {
  row-gap: 24px;
}

.realisations-grid > [class*="col-"] {
  display: flex;
}

.realisations-grid .custom-block {
  height: 100%;
  width: 100%;
  display: flex;
}

.realisations-grid .custom-block > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.realisations-grid .custom-block .d-flex {
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}

.realisations-grid .custom-block h5 {
  min-height: 48px;
}

.realisations-grid .custom-block p {
  min-height: 52px;
}

.realisations-grid .custom-block-image {
  margin-top: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.realisations-grid [data-realisations-item].is-hidden {
  display: none;
}

.formation-detail-section .custom-block {
  height: 100%;
}

.formation-detail-section .row > [class*="col-"] {
  display: flex;
}

@media screen and (max-width: 767px) {
  .team-home-card {
    border-radius: 20px;
  }

  .team-home-body {
    padding: 18px 16px 16px;
  }

  .team-home-name {
    font-size: 1.18rem;
  }

  .explore-section .custom-block {
    min-height: 360px;
  }

  .explore-section .custom-block h5,
  .explore-section .custom-block p {
    min-height: 0;
  }

  .explore-section .activicode-product-logo-card {
    min-height: 150px;
    padding: 12px;
    border-radius: 14px;
  }

  .explore-section .activicode-product-logo-only {
    max-width: 100%;
    max-height: 100%;
  }
}

.formation-detail {
  scroll-margin-top: 120px;
}

@media screen and (max-width: 767px) {
  .realisations-filter {
    gap: 10px;
    margin-bottom: 24px;
  }

  .formation-search .input-group,
  .formation-search .input-group-text,
  .formation-search .form-control,
  .formation-search .btn {
    height: 50px;
  }

  .realisations-grid .custom-block h5,
  .realisations-grid .custom-block p {
    min-height: 0;
  }
}

.cta-constellation-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
  background: linear-gradient(
    145deg,
    rgba(12, 17, 30, 0.96),
    rgba(21, 30, 55, 0.95)
  );
  border: 1px solid rgba(126, 150, 204, 0.35);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  padding: 30px;
  color: var(--white-color);
}

.cta-constellation-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(106, 167, 255, 0.22) 0%,
    rgba(106, 167, 255, 0) 70%
  );
  pointer-events: none;
}

.cta-kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ec5ff;
  margin-bottom: 12px;
}

.cta-title {
  color: var(--white-color);
  margin-bottom: 14px;
  line-height: 1.25;
}

.cta-text {
  color: rgba(232, 237, 255, 0.88);
  margin-bottom: 20px;
}

.cta-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(144, 171, 231, 0.45);
  background: rgba(73, 99, 163, 0.2);
  color: #d8e5ff;
  font-size: 0.82rem;
}

.cta-btn {
  position: relative;
  z-index: 1;
}

.custom-block-overlay {
  height: 100%;
  min-height: 350px;
  padding: 0;
}

.custom-block-overlay > a {
  height: 100%;
}

.custom-block-overlay .custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  height: 100%;
  margin-top: 0;
}

.custom-block-overlay-text {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

.social-share {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 20px 35px;
}

.social-share .bi-bookmark {
  color: var(--white-color);
  font-size: var(--h5-font-size);
}

.social-share .bi-bookmark:hover {
  color: var(--secondary-color);
}

.bg-design {
  background-color: #00b0ff;
}

.bg-graphic {
  background-color: #00bfa6;
}

.bg-advertising {
  background-color: #f50057;
}

.bg-finance {
  background-color: #536dfe;
}

.bg-music {
  background-color: #f9a826;
}

.bg-education {
  background-color: #00bfa6;
}

/*---------------------------------------
  SERVICES               
-----------------------------------------*/
.activicode-detail-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.activicode-detail-block-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-family: var(--title-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  text-align: center;
  margin: 30px;
  padding: 40px;
}

.activicode-services-page .site-header {
  padding-bottom: 65px;
}

.custom-block-activicode-services-info {
  margin: 30px 20px 20px 30px;
}

.custom-block-activicode-services {
  height: inherit;
}

.custom-block-activicode-services .custom-block-image {
  width: 200px;
}

/*---------------------------------------
  PAGINATION              
-----------------------------------------*/
.pagination {
  margin-top: 40px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
}

.active > .page-link,
.page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/*---------------------------------------
  TIMELINE              
-----------------------------------------*/
.timeline-section {
  /* background-image: url("../images/comment_ca_marche.jpg"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-section .section-overlay {
  background-color: #111827;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 97%;
  background-color: var(--redcode);
  border-radius: 999px;
  position: absolute;
  left: 50px;
  top: 0;
  overflow: hidden;
  box-shadow:
    inset 1px 0 2px rgba(255, 255, 255, 0.32),
    inset -1px 0 2px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--secondary-color);
  width: 100%;
  border-radius: inherit;
  box-shadow:
    inset 1px 0 1px rgba(255, 255, 255, 0.22),
    inset -1px 0 1px rgba(0, 0, 0, 0.22);
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 40px;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(
      circle at 32% 28%,
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0) 40%
    ),
    linear-gradient(145deg, #2b3b5e 10%, #111827 85%);
  border-radius: 50%;
  box-shadow:
    inset 0 -12px 18px rgba(0, 0, 0, 0.42),
    inset 0 8px 12px rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(0, 0, 0, 0.35);
  z-index: 1;
  transition: all 0.35s ease;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 74px;
  height: 74px;
  position: absolute;
  top: 13px;
  left: 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 25px;
  width: 21px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  filter: blur(0.4px);
  transform: rotate(-18deg);
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 24px;
  color: var(--white-color);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 50px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background:
    radial-gradient(
      circle at 32% 28%,
      rgba(255, 255, 255, 0.36),
      rgba(255, 255, 255, 0) 40%
    ),
    linear-gradient(145deg, #f43f5e  8%, #f43f5e  85%);
}

.timeline-container
  .vertical-scrollable-timeline
  li.active
  .icon-holder::before {
  border-color: rgba(255, 255, 255, 0.48);
}

/*---------------------------------------
  FAQs              
-----------------------------------------*/
.faq-section .accordion-item {
  border: 1px solid rgba(154, 129, 232, 0.22);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.06);
  margin-bottom: 12px;
}

.faq-section .accordion-button {
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.35;
  padding: 16px 20px;
  color: #0f172a;
  background: #ffffff;
}

.faq-section .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(154, 129, 232, 0.2);
}

.faq-section .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}

.faq-section .accordion-button.collapsed {
  border-radius: 0;
}

.faq-section .accordion-button:not(.collapsed) {
  border-radius: 0;
  box-shadow: none;
  color: var(--primary-color);
  background: rgba(154, 129, 232, 0.08);
}

.faq-section .accordion-body {
  color: var(--p-color);
  font-size: 1rem;
  line-height: 1.8;
  padding: 0 20px 18px;
}

/*---------------------------------------
  NEWSLETTER               
-----------------------------------------*/
.newsletter-image {
  border-radius: var(--border-radius-medium);
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f6f2ff 0%, #f6f7ff 48%, #ffffff 100%);
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(154, 129, 232, 0.22) 0%,
    rgba(154, 129, 232, 0) 72%
  );
  pointer-events: none;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(154, 129, 232, 0.35);
  color: #5d4aa3;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-intro {
  max-width: 700px;
  margin: 0 auto;
  color: #526070;
}

.contact-map-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(154, 129, 232, 0.26);
  box-shadow: 0 20px 35px rgba(17, 24, 39, 0.12);
  background: #ffffff;
  min-height: 100%;
}

.google-map {
  border-radius: 0;
  min-height: 360px;
  display: block;
}

.contact-map-caption {
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid rgba(154, 129, 232, 0.2);
  color: #445164;
  font-size: 0.92rem;
}

.contact-map-caption .contact-quick-link {
  color: #1f2d44;
  background: rgba(154, 129, 232, 0.16);
  border: 1px solid rgba(154, 129, 232, 0.35);
  border-radius: 999px;
  padding: 5px 10px;
  line-height: 1;
  font-weight: var(--font-weight-semibold);
}

.contact-map-caption .contact-quick-link:hover {
  color: #ffffff;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-office-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(154, 129, 232, 0.24);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
  padding: 20px 18px;
}

.contact-office-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}

.contact-office-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 6px rgba(154, 129, 232, 0.16);
}

.contact-office-card h4 {
  font-size: 1.15rem;
  color: #172033;
}

.contact-office-address {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.contact-meta {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3f4c61;
  font-size: 0.92rem;
  min-width: 0;
}

.contact-meta i {
  color: var(--primary-color);
  font-size: 0.95rem;
}

.contact-link {
  color: #2a364b;
  font-weight: var(--font-weight-medium);
  font-size: 0.92rem;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-link:hover {
  color: var(--primary-color);
}

.contact-socials {
  margin-top: 14px;
}

.contact-socials-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #506078;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
}

.contact-socials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(154, 129, 232, 0.35);
  background: rgba(154, 129, 232, 0.08);
  color: #4b5a73;
  font-size: 0.9rem;
}

.contact-social-x {
  font-family: var(--title-font-family);
  font-weight: var(--font-weight-bold);
  font-size: 0.82rem;
  letter-spacing: -0.02em;
}

.contact-social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

.contact-cta-card {
  border-radius: 16px;
  background: linear-gradient(135deg, #111827 0%, #334155 100%);
  color: var(--white-color);
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.contact-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(
      circle at 16% 30%,
      rgba(255, 255, 255, 0.75) 0 2px,
      transparent 3px
    ),
    radial-gradient(
      circle at 34% 68%,
      rgba(159, 205, 255, 0.62) 0 1.8px,
      transparent 3px
    ),
    radial-gradient(
      circle at 56% 26%,
      rgba(255, 255, 255, 0.55) 0 1.7px,
      transparent 3px
    ),
    radial-gradient(
      circle at 72% 62%,
      rgba(158, 129, 232, 0.7) 0 2px,
      transparent 3px
    ),
    linear-gradient(130deg, rgba(177, 209, 255, 0.4) 0 1px, transparent 1px),
    linear-gradient(20deg, rgba(177, 209, 255, 0.3) 0 1px, transparent 1px);
  background-size: 100% 100%;
}

.contact-cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(6, 12, 26, 0.14);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.contact-cta-card > * {
  position: relative;
  z-index: 2;
}

.contact-cta-canvas {
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

.contact-cta-card p {
  color: rgba(235, 241, 255, 0.92);
  font-size: 1rem;
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
  justify-content: flex-end;
  align-items: center;
}

.contact-cta-btn {
  background: var(--primary-color);
  width: 52px;
  height: 52px;
  min-width: 52px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.contact-cta-actions .btn {
 
}

.contact-form-card {
  display: flex;
  flex-direction: column;
}

.contact-form-intro {
  color: #4b5a73;
  font-size: 0.94rem;
  line-height: 1.6;
  font-family: var(--body-font-family);
}

.contact-form-divider {
  margin: 2px 0 10px;
  border: 0;
  border-top: 1px solid rgba(154, 129, 232, 0.24);
}

.contact-quick-form {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.contact-form-label {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #506078;
  font-weight: var(--font-weight-semibold);
  font-family: var(--title-font-family);
}

.contact-quick-input {
  width: 100%;
  border: 1px solid rgba(154, 129, 232, 0.35);
  border-radius: 12px;
  background: #ffffff;
  color: #1c2a3f;
  padding: 10px 12px;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-quick-input:focus {
  border-color: rgba(154, 129, 232, 0.85);
  box-shadow: 0 0 0 3px rgba(154, 129, 232, 0.15);
}

.contact-form-submit {
  margin-top: 4px;
  width: 100%;
  font-size: 0.9rem;
}

/*---------------------------------------
  ABOUT PAGE
-----------------------------------------*/
.about-page-section {
  background: linear-gradient(180deg, #f6f8ff 0%, #eef2ff 100%);
}

.about-story-card,
.about-focus-card,
.about-value-card,
.about-metric-card {
  border: 1px solid rgba(154, 129, 232, 0.26);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.about-focus-list {
  display: grid;
  gap: 12px;
}

.about-focus-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #1f2937;
  font-weight: 600;
  line-height: 1.45;
}

.about-focus-item i {
  color: #7c3aed;
  line-height: 1.2;
}

.about-values-section {
  background:
    radial-gradient(circle at 10% 5%, rgba(154, 129, 232, 0.08), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(243, 63, 93, 0.08), transparent 35%),
    #f8faff;
}

.about-value-card {
  padding: 20px;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #9a81e8, #7c3aed);
}

.about-metrics-section {
  background: #f6f8ff;
}

.about-metric-card {
  padding: 18px 12px;
}

.about-metric-number {
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}

.about-metric-label {
  color: #4b5563;
  font-weight: 600;
  font-size: 0.88rem;
}

.about-cta-card {
  border: 1px solid rgba(154, 129, 232, 0.3);
}

.about-team-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(154, 129, 232, 0.08), transparent 34%),
    radial-gradient(circle at 88% 4%, rgba(243, 63, 93, 0.07), transparent 28%),
    #f7f9ff;
}

.about-team-lead-card {
  padding: 24px;
  border: 1px solid rgba(154, 129, 232, 0.38);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.about-team-lead-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.about-team-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 12px;
  background: rgba(154, 129, 232, 0.16);
  border: 1px solid rgba(154, 129, 232, 0.34);
  color: #5b3db5;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-member-card {
  padding: 18px;
  border: 1px solid rgba(154, 129, 232, 0.24);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.about-member-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #dfe7ff;
  border: 1px solid rgba(154, 129, 232, 0.22);
}

.about-member-card-lead .about-member-media {
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
}

.about-member-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.about-member-card:hover .about-member-media img {
  transform: scale(1.04);
}

.about-member-card-lead {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.97), rgba(244, 247, 255, 0.92));
}

.about-member-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #ffffff;
  background: linear-gradient(140deg, #9a81e8 0%, #7c3aed 100%);
}

.about-member-role {
  font-size: 0.86rem;
  font-weight: 700;
  color: #5b3db5;
  letter-spacing: 0.02em;
}

.about-adn-section {
  background-color: #111827 !important;
}

.about-adn-real {
  background-color: #111827 !important;
}

.about-adn-real .contact-kicker,
.about-adn-real p {
  color: rgba(230, 237, 248, 0.92);
}

.about-adn-real h2 {
  color: #ffffff;
}

.about-adn-real .about-adn-copy {
  max-width: 560px;
}

.about-adn-real .adn-meta-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.about-adn-real .adn-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 12px;
  color: #f8f5ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: rgba(154, 129, 232, 0.22);
  border: 1px solid rgba(154, 129, 232, 0.54);
}

.about-adn-real .adn-meta-chip i {
  color: #cdb9ff;
  font-size: 0.82rem;
}

.about-adn-real .adn-tech-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-adn-real .adn-tech-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  color: rgba(242, 247, 255, 0.92);
  font-size: 0.73rem;
  font-weight: 600;
  background: rgba(17, 24, 39, 0.52);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.about-adn-real .about-adn-stage,
.about-adn-real .about-adn-stage * {
  transform-style: preserve-3d;
}

.about-adn-real .atom-wild {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-adn-real .about-adn-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  max-width: 860px;
  width: 100%;
  min-height: 520px;
  overflow: visible;
}

.about-adn-real .atom {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: 0.4s ease 0s;
  cursor: zoom-in;
}

.about-adn-real .atom::before {
  content: "";
  width: 50vmin;
  height: 50vmin;
  position: absolute;
  background: radial-gradient(var(--adn-cloud, #913ab7) -50%, #fff0 50%);
  transform: translateZ(-6vmin);
  box-shadow:
    0 0 5vmin -2vmin #cddc3920,
    0 0 10vmin 0 #cddc3920,
    0 0 10vmin 0 #39dcbe20,
    0 0 10vmin 0 #cddc3920 inset,
    0 0 25vmin 0 #39dcbe20 inset;
  border-radius: 100%;
  animation: aboutAdnCloud 3s ease 0s infinite alternate;
  opacity: 0.25;
}

.about-adn-real .atom:active {
  transform: none;
}

.about-adn-real .flip-vertical {
  transform: scaleY(-1);
}

.about-adn-real .opacityWild-7 {
  opacity: 0.95;
}

.about-adn-real .about-adn-stage {
  min-height: clamp(540px, 84vmin, 860px);
  overflow: hidden;
}

.about-adn-real .atom {
  width: clamp(520px, 84vmin, 820px);
  height: clamp(520px, 84vmin, 820px);
  cursor: default;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.about-adn-real .adn-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 26;
  pointer-events: none;
}

.about-adn-real .adn-core-sphere {
  --adn-c1: #bc0003;
  --adn-c2: #fa0001;
  --adn-core-size: clamp(56px, 8.2vmin, 88px);
  --adn-core-half: calc(var(--adn-core-size) * 0.5);
  --adn-core-highlight-sm: calc(var(--adn-core-size) * 0.05);
  --adn-core-highlight-md: calc(var(--adn-core-size) * 0.083333);
  --adn-core-inner: calc(var(--adn-core-size) * 0.275);
  width: var(--adn-core-size);
  height: var(--adn-core-size);
  border-radius: 999px;
  border: 1px solid #0006;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      circle at 40% 60%,
      #fff0,
      var(--adn-core-half),
      #00000040 calc(var(--adn-core-half) + 1px) 100%
    ),
    radial-gradient(
      circle at 28% 57%,
      #fff,
      var(--adn-core-highlight-sm),
      #fff0 calc(var(--adn-core-highlight-sm) + 1px) 100%
    ),
    radial-gradient(
      circle at 37% 71%,
      #fff,
      var(--adn-core-highlight-md),
      #fff0 calc(var(--adn-core-highlight-md) + 1px) 100%
    ),
    radial-gradient(
      circle at 40% 60%,
      var(--adn-c2),
      var(--adn-core-inner),
      #fff0 calc(var(--adn-core-inner) + 1px) 100%
    ),
    var(--adn-c1);
  box-shadow: 0 0 12.5px #fff;
  animation: aboutAdnNucleusPulse 2s infinite linear;
}

.about-adn-real .adn-core-sphere img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.22));
}

.about-adn-real .adn-orbit-field {
  position: absolute;
  inset: 0;
  z-index: 14;
  animation: aboutAdnFieldDrift 56s linear infinite;
}

.about-adn-real .adn-orbit-field::before,
.about-adn-real .adn-orbit-field::after {
  content: none !important;
}

.about-adn-real .adn-tech-orbit {
  --orbit-size: 520px;
  --orbit-delay: 0s;
  --orbit-ry: 0deg;
  --orbit-duration: 16s;
  --orbit-sphere-size: 32px;
  --orbit-popout: 74px;
  --orbit-direction: normal;
  --hold-scale: 1;
  --hold-pop: 0px;
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--orbit-size);
  height: var(--orbit-size);
  transform: translate(-50%, -50%) rotateX(80deg) rotateY(var(--orbit-ry));
  border-radius: 50%;
  border: 2px solid color-mix(
    in srgb,
    var(--adn-orbit-color, #9a81e8) 52%,
    transparent
  );
  opacity: 0.56;
  transform-style: preserve-3d;
  pointer-events: none;
  z-index: 18;
}

.about-adn-real .adn-tech-orbit::before {
  content: none;
}

.about-adn-real .adn-tech-sphere {
  --adn-c1: #8bc34a;
  --adn-c2: #cddc39;
  --adn-sphere-size: var(--orbit-sphere-size);
  --adn-sphere-half: calc(var(--adn-sphere-size) * 0.5);
  --adn-sphere-highlight-sm: calc(var(--adn-sphere-size) * 0.05);
  --adn-sphere-highlight-md: calc(var(--adn-sphere-size) * 0.083333);
  --adn-sphere-inner: calc(var(--adn-sphere-size) * 0.275);
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--adn-sphere-size);
  height: var(--adn-sphere-size);
  margin: 0;
  padding: 0;
  border: 1px solid #0006;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  z-index: 10;
  background:
    radial-gradient(
      circle at 40% 60%,
      #fff0,
      var(--adn-sphere-half),
      #00000040 calc(var(--adn-sphere-half) + 1px) 100%
    ),
    radial-gradient(
      circle at 28% 57%,
      #fff,
      var(--adn-sphere-highlight-sm),
      #fff0 calc(var(--adn-sphere-highlight-sm) + 1px) 100%
    ),
    radial-gradient(
      circle at 37% 71%,
      #fff,
      var(--adn-sphere-highlight-md),
      #fff0 calc(var(--adn-sphere-highlight-md) + 1px) 100%
    ),
    radial-gradient(
      circle at 40% 60%,
      var(--adn-c2),
      var(--adn-sphere-inner),
      #fff0 calc(var(--adn-sphere-inner) + 1px) 100%
    ),
    var(--adn-c1);
  box-shadow: 0 0 9px 0 var(--adn-shadow, rgba(205, 220, 57, 0.6));
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, filter;
  animation: aboutAdnAtomElectron var(--orbit-duration) linear infinite;
  animation-delay: var(--orbit-delay);
  animation-direction: var(--orbit-direction);
}

.about-adn-real .adn-tech-sphere:hover {
  filter: saturate(1.15);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.34),
    0 0 24px 0 var(--adn-shadow, rgba(205, 220, 57, 0.62));
}

.about-adn-real .adn-tech-sphere::after {
  content: none;
}

.about-adn-real .adn-tech-sphere-inner {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background:
    radial-gradient(
      circle at 34% 30%,
      rgba(255, 255, 255, 0.94),
      rgba(241, 245, 252, 0.9) 58%,
      rgba(212, 222, 239, 0.86) 100%
    );
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: opacity, filter;
  box-shadow:
    -10px 5px 3px -5px rgba(255, 255, 255, 0.2) inset,
    10px 0 3px -5px rgba(255, 255, 255, 0.15);
}

.about-adn-real .adn-tech-sphere-inner img {
  width: 80%;
  height: 80%;
  position: relative;
  z-index: 2;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  opacity: 1 !important;
  filter:
    drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2))
    saturate(1.12)
    contrast(1.08);
}

.about-adn-real .adn-tech-sphere:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.about-adn-real .adn-tech-orbit.is-paused {
  z-index: 90;
}

.about-adn-real .adn-tech-orbit.is-paused::before {
  content: none !important;
}

.about-adn-real .adn-tech-orbit.is-paused .adn-tech-sphere {
  --hold-scale: 3.1;
  --hold-pop: var(--orbit-popout);
  animation-play-state: paused;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.4),
    0 0 26px var(--adn-shadow, rgba(205, 220, 57, 0.72));
  filter: saturate(1.2);
}

.about-adn-real .adn-tech-orbit.is-paused .adn-tech-sphere-inner {
  transform: none;
  opacity: 1;
  filter: brightness(1.16) saturate(1.2);
}

.about-adn-real .adn-tech-orbit.is-paused .adn-tech-sphere::after {
  content: none;
}

.about-adn-real .atom:hover .adn-tech-orbit::before {
  content: none !important;
}

.about-adn-real .adn-focus-panel {
  --adn-focus-color: #9a81e8;
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 120;
  min-width: min(88%, 340px);
  max-width: calc(100% - 28px);
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--adn-focus-color) 48%, #0b1220);
  background: linear-gradient(
    135deg,
    rgba(10, 14, 24, 0.95),
    rgba(12, 20, 34, 0.92)
  );
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
  display: flex;
  align-items: center;
  gap: 11px;
}

.about-adn-real .adn-focus-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--adn-focus-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--adn-focus-color) 24%, transparent);
  flex: 0 0 12px;
}

.about-adn-real .adn-focus-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-adn-real .adn-focus-label {
  color: rgba(203, 214, 237, 0.84);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
}

.about-adn-real .adn-focus-name {
  color: #f8fbff;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes aboutAdnCloud {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(50deg);
  }
}

@keyframes aboutAdnNucleusPulse {
  0% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 12.5px #fff;
  }
  50% {
    transform: scale(1.14) rotate(180deg);
    box-shadow: 0 0 22px #fff;
  }
  100% {
    transform: scale(1) rotate(360deg);
    box-shadow: 0 0 12.5px #fff;
  }
}

@keyframes aboutAdnAtomElectron {
  0% {
    transform: translate(-50%, -50%) rotate(0deg)
      translate(
        calc((var(--orbit-size) / -2) + (var(--adn-sphere-size) / 2) - var(--hold-pop, 0px)),
        0
      )
      rotateX(-80deg)
      rotateY(0deg) scale(var(--hold-scale, 1));
  }
  25% {
    filter: brightness(1.06) saturate(1.06);
  }
  75% {
    filter: brightness(1.18) saturate(1.16);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg)
      translate(
        calc((var(--orbit-size) / -2) + (var(--adn-sphere-size) / 2) - var(--hold-pop, 0px)),
        0
      )
      rotateX(-80deg)
      rotateY(360deg) scale(var(--hold-scale, 1));
  }
}

@keyframes aboutAdnFieldDrift {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-adn-real .adn-orbit-field,
  .about-adn-real .adn-tech-sphere,
  .about-adn-real .adn-core-sphere,
  .about-adn-real .atom::before {
    animation: none !important;
  }
}

@media screen and (max-width: 767px) {
  .about-team-lead-card {
    padding: 18px;
  }

  .about-adn-real .atom-wild {
    margin-top: 8px;
  }

  .about-adn-real .about-adn-stage {
    min-height: 520px;
    border-radius: 18px;
    padding: 0 6px;
  }

  .about-adn-real .atom {
    width: min(100%, 500px);
    height: min(100%, 500px);
  }

  .about-adn-real .adn-core-sphere {
    width: clamp(44px, 9vmin, 62px);
    height: clamp(44px, 9vmin, 62px);
  }

  .about-adn-real .adn-tech-sphere {
    --orbit-sphere-size: clamp(20px, 6.2vmin, 30px);
  }

  .about-adn-real .adn-tech-sphere-inner img {
    width: 76%;
    height: 76%;
  }

  .about-adn-real .adn-focus-panel {
    bottom: 12px;
    min-width: 0;
    width: calc(100% - 18px);
    padding: 9px 11px;
  }
}

/*---------------------------------------
  ADN QUANTUM (3D ATOM)
-----------------------------------------*/
.about-adn-quantum .about-adn-stage {
  isolation: isolate;
}

.about-adn-quantum .atom {
  --adn-shell-size: clamp(520px, 82vmin, 800px);
  position: relative;
  width: var(--adn-shell-size);
  height: var(--adn-shell-size);
  border-radius: 50%;
  overflow: hidden;
  perspective: 1400px;
  transform-style: preserve-3d;
  transform: none;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.46),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.about-adn-quantum .atom::before {
  width: 96%;
  height: 96%;
  left: 2%;
  top: 2%;
  background: radial-gradient(
    circle at 34% 28%,
    rgba(255, 255, 255, 0.4) 0%,
    color-mix(in srgb, var(--adn-cloud, #9a81e8) 30%, transparent) 38%,
    transparent 72%
  );
  opacity: 0.5;
  animation: aboutAdnCloud 8s ease-in-out infinite alternate;
}

.about-adn-quantum .atom::after {
  content: "";
  position: absolute;
  inset: 5.2%;
  border-radius: 999px;
  pointer-events: none;
  border: 1px solid rgba(196, 211, 238, 0.38);
  background:
    radial-gradient(
      circle at 32% 24%,
      rgba(255, 255, 255, 0.44) 0%,
      rgba(255, 255, 255, 0.12) 24%,
      rgba(255, 255, 255, 0.03) 44%,
      transparent 70%
    ),
    radial-gradient(
      circle at 50% 58%,
      rgba(154, 129, 232, 0.2),
      rgba(154, 129, 232, 0.05) 56%,
      transparent 82%
    );
  box-shadow:
    inset 0 0 72px rgba(154, 129, 232, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 34px 90px rgba(0, 0, 0, 0.48);
  transform: translateZ(-14px);
  animation: aboutAdnShellBrilliance 8.5s ease-in-out infinite;
}

.about-adn-quantum .adn-core-sphere {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(
      circle at 30% 24%,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.06) 28%,
      transparent 62%
    ),
    radial-gradient(
      circle at 74% 78%,
      rgba(6, 10, 19, 0.2) 0%,
      rgba(6, 10, 19, 0.08) 34%,
      transparent 72%
    ),
    linear-gradient(145deg, #111827, #1f2937);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.44),
    0 0 20px rgba(109, 122, 147, 0.28);
  animation: aboutAdnNucleusGlow 3.6s ease-in-out infinite;
}

.about-adn-quantum .adn-core-sphere::before,
.about-adn-quantum .adn-core-sphere::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.about-adn-quantum .adn-core-sphere::before {
  z-index: 2;
  background:
    radial-gradient(
      circle at 27% 22%,
      rgba(255, 255, 255, 0.84) 0%,
      rgba(255, 255, 255, 0.2) 25%,
      rgba(255, 255, 255, 0.04) 48%,
      transparent 68%
    ),
    radial-gradient(
      circle at 76% 76%,
      rgba(4, 9, 19, 0.24) 0%,
      rgba(4, 9, 19, 0.08) 34%,
      transparent 72%
    );
  mix-blend-mode: screen;
  opacity: 0.34;
  animation: aboutAdnCoreGloss 5.2s ease-in-out infinite alternate;
}

.about-adn-quantum .adn-core-sphere::after {
  z-index: 1;
  box-shadow:
    inset 0 -10px 14px rgba(0, 0, 0, 0.22),
    inset 0 10px 13px rgba(255, 255, 255, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.about-adn-quantum .adn-core-sphere img {
  width: 76%;
  height: 76%;
  max-width: 76%;
  max-height: 76%;
  display: block;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 4;
}

.about-adn-quantum .adn-core-sphere,
.about-adn-quantum .adn-tech-sphere,
.about-adn-quantum .adn-tech-sphere-inner {
  border-radius: 50%;
}

.about-adn-quantum .adn-tech-sphere-inner {
  overflow: hidden;
}

.about-adn-quantum .adn-orbit-field {
  animation: none;
  transform-style: preserve-3d;
  z-index: auto !important;
}

.about-adn-quantum .adn-tech-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 1;
  transform: none;
  pointer-events: none;
  z-index: 500;
}

.about-adn-quantum .adn-core {
  z-index: 500;
}

.about-adn-quantum .adn-tech-sphere {
  left: 50%;
  top: 50%;
  margin: 0;
  animation: none;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  backface-visibility: hidden;
  will-change: transform;
  transform: translate3d(
      calc(-50% + var(--adn-x, 0px)),
      calc(-50% + var(--adn-y, 0px)),
      var(--adn-z, 0px)
    )
    scale(var(--adn-scale, 1));
  transition:
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.about-adn-quantum .adn-tech-sphere-inner {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14%;
  box-sizing: border-box;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 30% 24%,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.14) 28%,
      rgba(255, 255, 255, 0.02) 56%,
      transparent 72%
    ),
    radial-gradient(
      circle at 72% 78%,
      rgba(11, 18, 33, 0.16) 0%,
      rgba(11, 18, 33, 0.06) 36%,
      transparent 70%
    ),
    linear-gradient(
      145deg,
      rgba(247, 250, 255, 0.94),
      rgba(219, 228, 242, 0.88)
    );
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    inset -8px 6px 10px rgba(255, 255, 255, 0.14),
    inset 10px -10px 14px rgba(18, 26, 44, 0.12);
  /* Keep logos facing the camera while spheres keep orbit/depth motion. */
  transform: none;
  will-change: opacity, filter;
}

.about-adn-quantum .adn-tech-sphere-inner::before,
.about-adn-quantum .adn-tech-sphere-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.about-adn-quantum .adn-tech-sphere-inner::before {
  z-index: 3;
  background:
    radial-gradient(
      circle at 28% 24%,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.26) 24%,
      rgba(255, 255, 255, 0.06) 44%,
      transparent 66%
    ),
    radial-gradient(
      circle at 72% 74%,
      rgba(12, 18, 32, 0.22) 0%,
      rgba(12, 18, 32, 0.08) 34%,
      transparent 68%
    );
  mix-blend-mode: screen;
  opacity: 0.42;
  animation: aboutAdnTechGloss 4.8s ease-in-out infinite alternate;
}

.about-adn-quantum .adn-tech-sphere-inner::after {
  z-index: 1;
  box-shadow:
    inset 0 -9px 12px rgba(0, 0, 0, 0.18),
    inset 0 8px 11px rgba(255, 255, 255, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.about-adn-quantum .adn-tech-sphere-inner img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 2;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  transform: none;
  transform-origin: 50% 50%;
  will-change: auto;
}

.about-adn-quantum .adn-tech-sphere-inner,
.about-adn-quantum .adn-tech-sphere-inner img {
  backface-visibility: visible !important;
  -webkit-backface-visibility: visible !important;
}

.about-adn-quantum .adn-tech-sphere::after {
  content: "";
  position: absolute;
  inset: -26%;
  border-radius: inherit;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--adn-shadow, #cddc39) 30%, transparent) 0%,
    transparent 72%
  );
  filter: blur(5px);
  opacity: 0.62;
  z-index: -1;
  pointer-events: none;
}

.about-adn-quantum .adn-tech-sphere:hover {
  filter: brightness(1.1) saturate(1.16);
}

.about-adn-quantum .adn-tech-orbit.is-paused .adn-tech-sphere {
  filter: brightness(1.16) saturate(1.22);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.48),
    0 0 34px var(--adn-shadow, rgba(205, 220, 57, 0.74));
}

.about-adn-quantum .adn-tech-orbit.is-paused .adn-tech-sphere-inner {
  transform: none;
}

@keyframes aboutAdnShellBrilliance {
  0% {
    box-shadow:
      inset 0 0 54px rgba(154, 129, 232, 0.14),
      inset 0 0 0 1px rgba(255, 255, 255, 0.03),
      0 28px 76px rgba(0, 0, 0, 0.4);
    filter: brightness(0.96);
  }
  50% {
    box-shadow:
      inset 0 0 66px rgba(154, 129, 232, 0.26),
      inset 0 0 0 1px rgba(255, 255, 255, 0.06),
      0 32px 84px rgba(0, 0, 0, 0.48);
    filter: brightness(1.08);
  }
  100% {
    box-shadow:
      inset 0 0 54px rgba(154, 129, 232, 0.14),
      inset 0 0 0 1px rgba(255, 255, 255, 0.03),
      0 28px 76px rgba(0, 0, 0, 0.4);
    filter: brightness(0.96);
  }
}

@keyframes aboutAdnNucleusGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.8);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.94);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.8);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-adn-quantum .adn-core-sphere::before,
  .about-adn-quantum .adn-tech-sphere-inner::before {
    animation: none;
  }
}

@media screen and (max-width: 767px) {
  .about-adn-quantum .atom {
    --adn-shell-size: min(100%, 500px);
  }
}

.contact-form .form-floating > textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}

/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 20px;
  outline: none;
}

.form-floating > label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  border-bottom: 10px solid var(--secondary-color);
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0f172a 0%, #1f2937 100%);
  color: var(--white-color);
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.site-footer-canvas {
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(5, 10, 22, 0.12);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent var(--secondary-color) transparent;
  pointer-events: none;
}

.site-footer-title {
  color: #cfbdf9;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.site-footer-grid {
  row-gap: 1.6rem;
  align-items: flex-start;
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
}

.site-footer-brand img {
  height: 24px;
  width: auto;
}

.site-footer-summary {
  max-width: 36ch;
  color: rgba(232, 238, 255, 0.88);
  line-height: 1.7;
  font-size: 0.95rem;
}

.site-footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 11px;
  border: 1px solid rgba(154, 129, 232, 0.42);
  background: rgba(154, 129, 232, 0.14);
  color: rgba(238, 229, 255, 0.96);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

.site-footer-cta {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-color: rgba(154, 129, 232, 0.6);
  color: rgba(237, 226, 255, 0.96);
}

.site-footer-cta:hover,
.site-footer-cta:focus {
  color: #ffffff;
}

.site-footer-links {
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer-link-item {
  display: flex;
  align-items: center;
  list-style: none;
  line-height: normal;
}

.site-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(241, 245, 255, 0.86);
  font-size: 0.9rem;
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-footer-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(154, 129, 232, 0.6);
  flex: 0 0 6px;
}

.site-footer-link:hover {
  color: var(--primary-color);
  transform: translateX(2px);
}

.site-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.site-footer-contact-item {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
}

.site-footer-contact-icon {
  color: rgba(197, 176, 255, 0.95);
  font-size: 0.86rem;
  line-height: 1.4;
  margin-top: 2px;
}

.site-footer-contact-item .site-footer-link::before {
  display: none;
}

.site-footer-contact-address {
  color: rgba(236, 242, 255, 0.85);
  line-height: 1.6;
  font-size: 0.88rem;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.site-footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(154, 129, 232, 0.35);
  color: rgba(241, 245, 255, 0.95);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.site-footer-social-link:hover,
.site-footer-social-link:focus {
  transform: translateY(-2px);
  background: rgba(154, 129, 232, 0.32);
  border-color: rgba(154, 129, 232, 0.75);
  color: #ffffff;
}

.site-footer-social-x {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  transform: translateY(-0.5px);
}

.site-footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(154, 129, 232, 0.28);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer-bottom-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer-bottom-links .site-footer-link {
  font-size: 0.84rem;
}

.site-footer-bottom-links .site-footer-link::before {
  display: none;
}

.site-footer p,
.site-footer .site-footer-link,
.site-footer .site-footer-title,
.site-footer .copyright-text {
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.copyright-text {
  color: rgba(241, 245, 255, 0.8);
  font-size: var(--copyright-font-size);
}

@media screen and (max-width: 991px) {
  .site-footer-grid {
    row-gap: 1.2rem;
  }

  .site-footer-summary {
    max-width: 100%;
  }

  .site-footer-bottom {
    margin-top: 24px;
    padding-top: 14px;
  }
}

@media screen and (max-width: 767px) {
  .site-footer-link {
    font-size: 0.88rem;
  }

  .site-footer-social-link {
    width: 34px;
    height: 34px;
  }

  .site-footer-bottom {
    align-items: flex-start;
    gap: 10px;
  }
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition:
    background 0.2s,
    color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  #sticky-wrapper,
  .sticky-wrapper {
    height: auto !important;
  }

  #sticky-wrapper .navbar,
  .sticky-wrapper .navbar,
  #sticky-wrapper.is-sticky .navbar,
  .sticky-wrapper.is-sticky .navbar {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar {
    background-color: var(--secondary-color);
  }

  .navbar .container {
    align-items: center;
  }

  .navbar-brand img {
    width: 180px;
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 12px;
    padding: 10px 8px 14px;
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.96);
    border: 1px solid rgba(154, 129, 232, 0.35);
  }

  .navbar-expand-lg .navbar-nav {
    width: 100%;
    padding-bottom: 0;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    display: block;
    margin: 0;
    padding: 11px 14px;
    text-align: left;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 0;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 6px;
    margin-bottom: 15px;
    box-shadow: none;
  }

  .navbar .dropdown-menu::before {
    display: none;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .hero-content-shell {
    padding: 28px 22px 30px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 360px;
  }

  .custom-block-activicode-services .custom-block-image {
    width: auto;
  }

  .custom-block-activicode-services > .d-flex,
  .custom-block-activicode-services-info,
  .custom-block-activicode-services a {
    flex-direction: column;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    left: 32px;
    width: 6px;
    top: 8px;
    height: calc(100% - 14px);
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding: 10px 0 48px 96px;
  }

  .timeline-container .vertical-scrollable-timeline li::before {
    left: 32px;
    width: 6px;
  }

  .timeline-container .vertical-scrollable-timeline li .icon-holder {
    top: 8px;
    width: 64px;
    height: 64px;
  }

  .timeline-container .vertical-scrollable-timeline li .icon-holder::before {
    width: 46px;
    height: 46px;
    top: 9px;
    left: 9px;
  }

  .timeline-container .vertical-scrollable-timeline li .icon-holder::after {
    top: 13px;
    left: 17px;
    width: 13px;
    height: 7px;
  }

  .timeline-container .vertical-scrollable-timeline li .icon-holder i {
    font-size: 17px;
  }

  .timeline-container .vertical-scrollable-timeline li p {
    line-height: 1.75;
  }

  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .faq-section .accordion-button {
    font-size: 1rem;
    padding: 14px 16px;
  }

  .faq-section .accordion-body {
    padding: 0 16px 16px;
    line-height: 1.7;
  }

  .contact-intro {
    max-width: 100%;
  }

  .google-map {
    min-height: 300px;
  }

  .contact-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-cta-actions {
    width: 100%;
  }

  .contact-cta-actions .btn {
    width: 100%;
  }

  .contact-cta-actions .contact-cta-btn {
    width: 52px;
    height: 52px;
  }
}

@media screen and (max-width: 480px) {
  .timeline-container .vertical-scrollable-timeline .list-progress {
    left: 27px;
    width: 5px;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding: 8px 0 38px 82px;
  }

  .timeline-container .vertical-scrollable-timeline li::before {
    left: 27px;
    width: 5px;
  }

  .timeline-container .vertical-scrollable-timeline li .icon-holder {
    width: 54px;
    height: 54px;
  }

  .timeline-container .vertical-scrollable-timeline li .icon-holder::before {
    width: 38px;
    height: 38px;
    top: 8px;
    left: 8px;
  }

  .timeline-container .vertical-scrollable-timeline li .icon-holder i {
    font-size: 15px;
  }

  .timeline-container .vertical-scrollable-timeline li p {
    line-height: 1.6;
  }

  .contact-map-caption {
    font-size: 0.84rem;
    padding: 10px 12px;
  }

  .contact-office-card {
    padding: 16px 14px;
  }

  .contact-office-card h4 {
    font-size: 1rem;
  }

  .google-map {
    min-height: 260px;
  }

  .navbar-brand img {
    width: 155px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

/* ------Customiz-------- */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: white !important;
  background: #a588f959 !important;
}

@keyframes aboutAdnTechGloss {
  0% {
    transform: translate3d(-8%, -10%, 0) scale(0.98);
    opacity: 0.64;
  }
  50% {
    transform: translate3d(3%, -1%, 0) scale(1.04);
    opacity: 0.82;
  }
  100% {
    transform: translate3d(10%, 8%, 0) scale(1.08);
    opacity: 0.68;
  }
}

@keyframes aboutAdnCoreGloss {
  0% {
    transform: translate3d(-7%, -9%, 0) scale(0.98);
    opacity: 0.4;
  }
  50% {
    transform: translate3d(2%, -2%, 0) scale(1.03);
    opacity: 0.52;
  }
  100% {
    transform: translate3d(8%, 7%, 0) scale(1.06);
    opacity: 0.42;
  }
}

.bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* terminale */

.terminal-only-block {
  height: 100%;
  min-height: 350px;
}

.terminal-only-block .terminal-macos {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.terminal-macos {
  background-color: rgba(11, 15, 28, 0.62);
  border-radius: 12px;
  border: 1px solid rgba(151, 178, 240, 0.22);
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  color: #e6e6e6;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px) saturate(116%);
  -webkit-backdrop-filter: blur(10px) saturate(116%);
  overflow: hidden;
}

/* Header */
.terminal-header {
  background: rgba(27, 35, 56, 0.76);
  border-bottom: 1px solid rgba(151, 178, 240, 0.18);
  padding: 10px 14px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.dot.red {
  background: #ff5f56;
}

.dot.yellow {
  background: #ffbd2e;
}

.dot.green {
  background: #27c93f;
}

.terminal-title {
  font-size: 0.85rem;
  color: #cfcfcf;
}

/* Body */
.terminal-body {
  background: rgba(8, 12, 24, 0.36);
  padding: 16px;
  gap: 16px;
  flex: 1;
}

.terminal-line {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.prompt {
  color: #00ff9c;
}

.path {
  color: #4ea1ff;
}

.terminal-heading {
  font-weight: 600;
  color: #ffffff;
}

.terminal-text {
  color: #bdbdbd;
  max-width: 600px;
  line-height: 1.6;
}

.terminal-link {
  color: #4ea1ff;
  text-decoration: none;
}

.terminal-link:hover {
  text-decoration: underline;
}

/* Output / badge */
.terminal-output {
  display: flex;
  align-items: flex-start;
}

.terminal-badge {
  border: 1px solid #00ff9c;
  color: #00ff9c;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

@keyframes acImageSkeletonShimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

html.ac-js img:not(.ac-img-ready):not(.ac-skip-skeleton) {
  opacity: 0;
  background: linear-gradient(
    100deg,
    rgba(148, 163, 184, 0.28) 20%,
    rgba(226, 232, 240, 0.64) 40%,
    rgba(148, 163, 184, 0.28) 60%
  );
  background-size: 220% 100%;
  animation: acImageSkeletonShimmer 1.2s linear infinite;
}

html.ac-js img.ac-img-ready {
  opacity: 1;
  transition: opacity 0.22s ease;
  animation: none;
  background: transparent;
}

html.ac-js img.ac-img-error {
  opacity: 1;
  animation: none;
  background: rgba(226, 232, 240, 0.48);
}

html.ac-js #wpadminbar img,
html.ac-js #wpadminbar img.ac-img-loading,
html.ac-js #wpadminbar img.ac-img-ready,
html.ac-js #wpadminbar img.ac-img-error {
  opacity: 1 !important;
  animation: none !important;
  background: transparent !important;
}



