:root {
    --bg-dark: #0c0f13;
    --text-light: #e8edf3;
    --accent: #53a9ff;
    --accent-soft: rgba(83,169,255,0.15);
    --font: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    background: radial-gradient(ellipse at center, #0d1117 0%, #06080b 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: 8rem 2rem;
    text-align: center;
}


@keyframes pulsating-halo {
  0% {
    box-shadow: 0 0 30px rgba(83,169,255,0.4);
  }
  50% {
    box-shadow: 0 0 60px rgba(83,169,255,0.6);
  }
  100% {
    box-shadow: 0 0 30px rgba(83,169,255,0.4);
  }
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
  padding-top: 8rem;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  animation: pulsating-halo 5s infinite; 
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 12, 16, 0.9) 25%, rgba(10, 12, 16, 0.5) 60%, rgba(10, 12, 16, 0) 100%);
  pointer-events: none;
}

.hero .content {
  position: relative;
  z-index: 2;
  width: min(90%, 950px);
  margin-left: calc((100vw - 1200px) / 2 + 2rem - 40px);
}

.hero h1 {
  font-size: calc(clamp(2.4rem, 6vw, 4.2rem) - 0.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #9cd4ff 0%, #53a9ff 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(83,169,255,0.3);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none;
  opacity: 0.65;
}

.hero-bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: rotate(-5deg) scale(1.1);
  filter: brightness(1.1) saturate(1.3) drop-shadow(0 0 20px rgba(83,169,255,0.4));
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta {
    background: var(--accent);
    color: #fff;
    padding: 0.9rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}
.cta:hover {
    background: #2f89e1;
}


.fonctionnement h3 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #cce2ff; 
    line-height: 1.4;
    margin-bottom: 3rem;
}

.fonctionnement h3 span {
    display: inline-block;
    color: #8fa0b5; 
    font-weight: 400;
}

.fonctionnement .steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}
.step img {
    width: 120px;
    opacity: 0.9;
}
.step h4 {
    color: var(--accent);
    margin-top: 1rem;
    font-size: 1.2rem;
}
.step p {
    opacity: 0.7;
    max-width: 280px;
    margin: 0.5rem auto 0;
}


.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.cards .card {
    background: var(--accent-soft);
    padding: 2rem;
    border-radius: 12px;
    width: 280px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 0 30px rgba(83,169,255,0.4);  
}

.cards .card:hover {
    transform: translateY(-5px);
    background: rgba(83,169,255,0.25);  
    box-shadow: 0 0 40px rgba(83,169,255,0.6);  
}

.card {
    background: var(--accent-soft);
    padding: 2rem;
    border-radius: 12px;
    width: 280px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
    animation: pulsating-halo 5s infinite; 
}
.card:hover {
    transform: translateY(-5px);
    background: rgba(83,169,255,0.25);
}
.card h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}


.tech {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}
.tech-text {
    max-width: 500px;
    font-size: 1.2rem;
}

.tech-illu {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(83,169,255,0.25), rgba(20,40,70,0.05) 70%, transparent 100%);
  box-shadow:
      0 0 60px rgba(83,169,255,0.25),
      inset 0 0 80px rgba(83,169,255,0.08);
  overflow: hidden;
  animation: pulsating-halo 5s infinite; 
}


.tech-illu .blip {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(83,169,255,0.4);
  border-radius: 50%;
  box-shadow:
    0 0 10px rgba(83,169,255,0.7),
    0 0 25px rgba(83,169,255,0.6),
    0 0 40px rgba(83,169,255,0.3);
  opacity: 0;
  animation: blip-glow 4s ease-in-out infinite; 
}


.tech-illu .blip:nth-of-type(1) { top: 25%; left: 30%; animation-delay: 1s; }
.tech-illu .blip:nth-of-type(2) { top: 60%; left: 40%; animation-delay: 1.5s; }
.tech-illu .blip:nth-of-type(3) { top: 40%; left: 70%; animation-delay: 2s; }
.tech-illu .blip:nth-of-type(4) { top: 70%; left: 55%; animation-delay: 2.5s; }
.tech-illu .blip:nth-of-type(5) { top: 50%; left: 20%; animation-delay: 3s; }
.tech-illu .blip:nth-of-type(6) { top: 35%; left: 80%; animation-delay: 3.5s; }
.tech-illu .blip:nth-of-type(7) { top: 15%; left: 15%; animation-delay: 4s; }
.tech-illu .blip:nth-of-type(8) { top: 25%; left: 80%; animation-delay: 4.5s; }
.tech-illu .blip:nth-of-type(9) { top: 80%; left: 60%; animation-delay: 5s; }
.tech-illu .blip:nth-of-type(10) { top: 40%; left: 55%; animation-delay: 5.5s; }
.tech-illu .blip:nth-of-type(11) { top: 75%; left: 45%; animation-delay: 6s; }
.tech-illu .blip:nth-of-type(12) { top: 60%; left: 20%; animation-delay: 6.5s; }
.tech-illu .blip:nth-of-type(13) { top: 50%; left: 75%; animation-delay: 7s; }
.tech-illu .blip:nth-of-type(14) { top: 65%; left: 35%; animation-delay: 7.5s; }
.tech-illu .blip:nth-of-type(15) { top: 55%; left: 60%; animation-delay: 8s; }

@keyframes blip-glow {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
    box-shadow:
      0 0 10px rgba(83,169,255,0.4),
      0 0 25px rgba(83,169,255,0.2);
  }
  50%, 80% {
    opacity: 1;
    transform: scale(1.6);
    background: rgba(120,190,255,0.9);
    box-shadow:
      0 0 20px rgba(120,190,255,0.9),
      0 0 45px rgba(120,190,255,0.8),
      0 0 80px rgba(83,169,255,0.6);
  }
  90% {
    opacity: 0.8;
    transform: scale(1.5);
  }
}



.tech-illu::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
      from 0deg,
      rgba(83,169,255,0.4) 0deg,
      rgba(83,169,255,0.1) 60deg,
      rgba(83,169,255,0.0) 120deg,
      rgba(83,169,255,0.4) 360deg
  );
  animation: radar-spin 6s linear infinite, pulsating-halo 5s infinite;
  mix-blend-mode: screen;
  filter: blur(2px);
}


.tech-illu::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(83,169,255,0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
      0 0 15px rgba(83,169,255,0.8),
      0 0 40px rgba(83,169,255,0.3);
  animation: pulse-center 2s ease-in-out infinite;
}

@keyframes radar-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse-center {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.6; }
}



.cta-final {
    background: linear-gradient(to bottom, rgba(83,169,255,0.05), transparent);
    padding-bottom: 6rem;
    animation: pulsating-halo 5s infinite; 
}
.cta-final h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}


footer {
    font-size: 0.9rem;
    opacity: 0.6;
    padding: 2rem 0;
}
footer a {
    color: var(--accent);
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
  .hero .content {
    margin-left: 2rem;
  }
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 12, 16, 0.7);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    animation: pulsating-halo 5s infinite; 
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}


.logo img {
    height: 80px;
    filter: drop-shadow(0 0 6px rgba(83,169,255,0.4));
    animation: pulsating-halo 5s infinite; 
    border-radius: 12px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #d5d9e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    color: #d5d9e0;
    text-decoration: none;
}

.nav-btn {
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}


.usages {
    background-image: url('{% static "illu_cyberradar.png" %}');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 8rem 2rem;
    color: var(--text-light);
    position: relative; 
    z-index: 1;
    box-shadow: 0 0 30px rgba(83,169,255,0.6);  
    animation: pulsating-halo 5s infinite; 
}


.usages::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); 
    z-index: -1; 
}

.usages h3 {
    font-size: 2rem;
}

.nav-btn:hover {
    background: #2f89e1;
}


body {
    padding-top: 80px;
}

.fonctionnement .steps .step {
    background: var(--accent-soft);
    padding: 2rem;
    border-radius: 12px;
    width: 280px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 0 30px rgba(83,169,255,0.4);  
    animation: pulsating-halo 5s infinite; 
}

.fonctionnement .steps .step:hover {
    transform: translateY(-5px);
    background: rgba(83,169,255,0.25);  
    box-shadow: 0 0 40px rgba(83,169,255,0.6);  
}


.mentions-legales {
    padding: 2rem;
    text-align: left; 
    max-width: 900px; 
    margin: 0 auto; 
}

.mentions-legales h1, .mentions-legales h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--accent);
}

.mentions-legales p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-policy {
    padding: 2rem 2rem 2rem 0; 
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
}

.privacy-policy h1 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    text-align: left; 
}

.privacy-policy h2 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
    text-align: left; 
}

.privacy-policy p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left; 
}

.logo-section {
    height: 40%; 
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.logo-section .vision-logo {
    max-width: 25%; 
    height: auto;   
    filter: drop-shadow(0 0 6px rgba(83,169,255,0.4));
    animation: pulsating-halo 5s infinite;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .logo-section {
        height: 40%; 
        margin-top: 1rem;
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
    }

    .logo-section .vision-logo {
        max-width: 75%; 
        height: auto;   
        filter: drop-shadow(0 0 6px rgba(83,169,255,0.4));
        animation: pulsating-halo 5s infinite;
        border-radius: 12px;
    }
    
    .nav-actions {
    	display: none;
    }

    .nav-container nav {
        display: none;
    }

    .hamburger {
        display: block;
        font-size: 56px;
        cursor: pointer;
    }

    
    .hamburger-menu {
        display: block;
        cursor: pointer;
        z-index: 1100;
    }

    .hamburger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 5px 0;
    }

    
    .nav-container.active nav {
        display: block;
        position: absolute;
        top: 60px;  
        left: 0;
        right: 0;
        background: #0d1117;
        padding: 20px;
        text-align: center;
    }

    .nav-container.active nav a {
        display: block;
        margin: 10px 0;
        color: var(--text-light);
        text-decoration: none;
        font-size: 1.2rem;
    }

    .nav-container.active nav a:hover {
        color: var(--accent);
    }
}


.nav-container.active .hamburger-menu {
    display: none;  
}

.hamburger {
    display: none;
}


.navbar-mobile {
  display: none;
}

.navbar-mobile.active {
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  background-color: rgba(10, 12, 16, 0.95);
  width: 250px;
  height: 100%;
  z-index: 1000;
  padding-top: 60px;
  transition: all 0.3s ease;
}

.navbar-mobile a {
  display: block;
  color: #fff;
  padding: 15px 20px;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s;
}

.navbar-mobile a:hover {
  background-color: #53a9ff;
}

.navbar-mobile .close-menu {
  position: absolute;
  top: 20px;
  left: 10px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
  }

  .navbar-mobile {
    display: none; 
  }

  .hamburger {
    display: block;
  }

  .nav-container nav ul {
    display: none; 
  }
}

.vision-page {
    padding: 4rem 8%;
    background: radial-gradient(ellipse at top, rgba(0, 10, 30, 0.8), #05070c);
    color: #ddd;
    line-height: 1.8;
}

.vision-page h1 {
    color: #6ba7ff;
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

.vision-page h2 {
    color: #76a8ff;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.vision-page p {
    margin-bottom: 1rem;
    max-width: 800px;
}

.price-callout {
    background: rgba(60, 100, 255, 0.1);
    border-left: 3px solid #6ba7ff;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    border-radius: 8px;
    color: #9ec7ff;
    font-style: italic;
}


.logo {
    width: 300px;
    height: auto;
}


.center-section {
    padding: 2rem;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
}


h1, h2 {
    font-size: 2.5rem;
    color: var(--accent);  
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
    opacity: 0.85;
}


.final-text h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--accent);
}

.carousel-section {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #111;
}

.carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 400px;
    position: relative;
}

.carousel-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: none;
    border-radius: 12px;
}

.carousel-image.visible {
    display: block;
    transition: opacity 1s ease-in-out;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(83, 169, 255, 0.8);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.carousel-button:first-child {
    left: 10px;
}

.carousel-button:last-child {
    right: 10px;
}


.pricing-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(83,169,255,0.1), rgba(10,12,16,1));
    animation: pulsating-halo 5s infinite;
}

.pricing-hero h1 {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-size: 1.3rem;
    color: #cfd8e6;
    opacity: 0.9;
}

.pricing-card-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
}

.pricing-card {
    background: var(--accent-soft);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 0 40px rgba(83,169,255,0.5);
    backdrop-filter: blur(10px);
    animation: pulsating-halo 5s infinite;
    transition: transform 0.3s ease, background 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    background: rgba(83,169,255,0.25);
}

.pricing-card h2 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.pricing-card .price {
    font-size: 3rem;
    color: #fff;
    margin: 1rem 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: #9ab7da;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    color: #cfd8e6;
    text-align: left;
    line-height: 1.8;
}

.pricing-card li {
    margin-bottom: 0.8rem;
}

.pricing-card .cta {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.pricing-message {
    text-align: center;
    padding: 6rem 2rem;
    background: radial-gradient(ellipse at top, rgba(83,169,255,0.05), rgba(10,12,16,1));
}

.pricing-message h2 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.pricing-message p {
    max-width: 700px;
    margin: 0.8rem auto;
    font-size: 1.2rem;
    opacity: 0.85;
}

.pricing-message .highlight {
    color: #fff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(83,169,255,0.4);
}

/* --- PRODUIT PAGE --- */

.produit-hero {
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: radial-gradient(ellipse at center, rgba(83,169,255,0.1), rgba(10,12,16,1));
  animation: pulsating-halo 5s infinite;
}

.produit-hero h1 {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.produit-hero p {
  font-size: 1.2rem;
  color: #cfd8e6;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

.produit-context {
  padding: 5rem 2rem;
  text-align: center;
  color: var(--text-light);
  background: radial-gradient(ellipse at top, rgba(83,169,255,0.05), #0b0e13);
  line-height: 1.8;
}

.produit-context p {
  max-width: 800px;
  margin: 1rem auto;
  font-size: 1.15rem;
  opacity: 0.85;
}

.produit-vision,
.produit-rapport {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 6rem 2rem;
}

.produit-vision .vision-text,
.produit-rapport .rapport-text {
  max-width: 500px;
}

.produit-vision h2,
.produit-rapport h2 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.produit-vision p,
.produit-rapport p {
  font-size: 1.1rem;
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.rapport-image {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.rapport-image img {
  width: min(100%, 600px);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(83, 169, 255, 0.2);
}

.rapport-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.rapport-item {
  flex: 1 1 200px;
  max-width: 260px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  transition: all 0.2s ease;
}

.rapport-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(83, 169, 255, 0.25);
  transform: translateY(-2px);
}

.rapport-item h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.rapport-item p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.produit-closing {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, rgba(83,169,255,0.1), transparent);
  animation: pulsating-halo 5s infinite;
}

.produit-closing h2 {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.produit-closing p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .produit-vision,
  .produit-rapport {
    flex-direction: column;
  }
  .vision-image img,
  .rapport-image img {
    width: 90%;
  }
}

.vision-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vision-figure {
  display: flex;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.vision-figure img {
  width: min(90%, 780px);
  border-radius: 12px;
  filter: drop-shadow(0 0 18px rgba(83,169,255,0.35));
  box-shadow: 0 0 40px rgba(83,169,255,0.18) inset;
  animation: pulsating-halo 5s infinite;
}

.rapport-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: space-between;
}

.feature-item {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 300px;
  padding: 1rem;
  background-color: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  transition: all 0.2s ease-in-out;
}

.feature-item:hover {
  background-color: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.feature-item p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

.rapport-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.vision-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.vision-item {
  flex: 1 1 220px;
  background-color: rgba(255,255,255,0.02);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 0 20px rgba(83,169,255,0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.vision-item:hover {
  box-shadow: 0 0 30px rgba(83, 169, 255, 0.15);
  border-color: rgba(83, 169, 255, 0.25);
  transform: translateY(-2px);
}

.vision-item h3 {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.vision-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

.vision-cta {
  text-align: center;
  margin-top: 2rem;
}

.form-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}

.form-contact input,
.form-contact textarea {
  padding: 12px 14px;
  background-color: #0e1117;
  border: 1px solid #2a2d32;
  color: #e6edf3;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.form-contact input::placeholder,
.form-contact textarea::placeholder {
  color: #999;
}

.form-contact textarea {
  min-height: 120px;
  resize: vertical;
}

.form-contact button {
  background-color: #3583ff;
  color: #fff;
  border: none;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.form-contact button:hover {
  background-color: #1e66e3;
}

li .check {
    color: #00e676; /* vert check */
    font-weight: bold;
    margin-right: 0.5rem;
}

.register-section {
  padding: 3em 0;
  background-color: #f9f9f9;
}

.register-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.register-form input,
.register-form button {
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.register-form input::placeholder {
  color: #999;
}

.register-form button {
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

.register-form button:hover {
  background-color: #0056b3;
}

.success-message {
  color: green;
  text-align: center;
}

.error-message {
  color: red;
  text-align: center;
}

/* --- LOGIN PAGE --- */

.login-hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at center, rgba(83,169,255,0.1), #0a0c10 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  animation: pulsating-halo 5s infinite;
}

.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
}

.login-box {
  background: rgba(15, 20, 30, 0.8);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(83,169,255,0.4);
  backdrop-filter: blur(10px);
  width: 380px;
  animation: pulsating-halo 5s infinite;
}

.login-box h1 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.login-box h1 span {
  color: #fff;
}

.login-subtitle {
  text-align: center;
  color: #b7c4d6;
  margin-bottom: 2rem;
  font-size: 1rem;
  opacity: 0.8;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-form input {
  background-color: #0e1117;
  border: 1px solid #2a2d32;
  color: #e6edf3;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-family: var(--font);
  transition: border 0.3s;
}

.login-form input:focus {
  outline: none;
  border: 1px solid var(--accent);
  box-shadow: 0 0 10px rgba(83,169,255,0.4);
}

.login-form button {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.login-form button:hover {
  background: #2f89e1;
}

.login-links {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

.login-links a {
  color: var(--accent);
  text-decoration: none;
}

.login-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    gap: 3rem;
  }

  .login-box {
    width: 100%;
    max-width: 360px;
  }

  .login-illu {
    width: 280px;
    height: 280px;
  }
}

/* --- RESET PASSWORD PAGE --- */

.reset-hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at center, rgba(83,169,255,0.08), #0a0c10 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  animation: pulsating-halo 5s infinite;
}

.reset-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
}

.reset-box {
  background: rgba(15, 20, 30, 0.8);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(83,169,255,0.4);
  backdrop-filter: blur(10px);
  width: 420px;
  animation: pulsating-halo 5s infinite;
}

.reset-box h1 {
  color: var(--accent);
  font-size: 1.9rem;
  text-align: center;
  margin-bottom: 1rem;
}

.reset-subtitle {
  text-align: center;
  color: #b7c4d6;
  margin-bottom: 2rem;
  font-size: 1rem;
  opacity: 0.8;
}

.reset-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reset-form input {
  background-color: #0e1117;
  border: 1px solid #2a2d32;
  color: #e6edf3;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-family: var(--font);
  transition: border 0.3s;
}

.reset-form input:focus {
  outline: none;
  border: 1px solid var(--accent);
  box-shadow: 0 0 10px rgba(83,169,255,0.4);
}

.reset-form button {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.reset-form button:hover {
  background: #2f89e1;
}

.reset-links {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

.reset-links a {
  color: var(--accent);
  text-decoration: none;
}

.reset-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .reset-container {
    flex-direction: column;
    gap: 3rem;
  }

  .reset-box {
    width: 100%;
    max-width: 360px;
  }

  .reset-illu {
    width: 260px;
    height: 260px;
  }
}

/* --- RESET PASSWORD DONE PAGE --- */

.reset-done-hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at center, rgba(83,169,255,0.08), #0a0c10 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  animation: pulsating-halo 5s infinite;
}

.reset-done-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
}

.reset-done-box {
  background: rgba(15, 20, 30, 0.8);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(83,169,255,0.4);
  backdrop-filter: blur(10px);
  width: 420px;
  text-align: center;
  animation: pulsating-halo 5s infinite;
}

.reset-done-box h1 {
  color: var(--accent);
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.reset-done-box p {
  color: #b7c4d6;
  margin-bottom: 2rem;
  font-size: 1rem;
  opacity: 0.8;
}

.reset-icon img {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(83,169,255,0.6));
  animation: pulse-center 2s ease-in-out infinite;
}

.reset-done-illu {
  position: relative;
  width: 380px;
  height: 380px;
}

@media (max-width: 768px) {
  .reset-done-container {
    flex-direction: column;
    gap: 3rem;
  }

  .reset-done-box {
    width: 100%;
    max-width: 360px;
  }
}

/* --- RESET PASSWORD COMPLETE PAGE --- */

.reset-complete-hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at center, rgba(83,169,255,0.08), #0a0c10 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  animation: pulsating-halo 5s infinite;
}

.reset-complete-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
}

.reset-complete-box {
  background: rgba(15, 20, 30, 0.8);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(83,169,255,0.4);
  backdrop-filter: blur(10px);
  width: 420px;
  text-align: center;
  animation: pulsating-halo 5s infinite;
}

.reset-complete-box h1 {
  color: var(--accent);
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.reset-complete-box p {
  color: #b7c4d6;
  margin-bottom: 2rem;
  font-size: 1rem;
  opacity: 0.8;
}

.reset-complete-icon img {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(83,169,255,0.6));
  animation: pulse-center 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .reset-complete-container {
    flex-direction: column;
    gap: 3rem;
  }

  .reset-complete-box {
    width: 100%;
    max-width: 360px;
  }

}

/* --- PASSWORD RESET CONFIRM PAGE --- */

.reset-confirm-hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at center, rgba(83,169,255,0.08), #0a0c10 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  animation: pulsating-halo 5s infinite;
}

.reset-confirm-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
}

.reset-confirm-box {
  background: rgba(15, 20, 30, 0.8);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(83,169,255,0.4);
  backdrop-filter: blur(10px);
  width: 420px;
  text-align: center;
  animation: pulsating-halo 5s infinite;
}

.reset-confirm-box h1 {
  color: var(--accent);
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.reset-confirm-subtitle {
  color: #b7c4d6;
  margin-bottom: 2rem;
  font-size: 1rem;
  opacity: 0.8;
}

.reset-confirm-icon img {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(83,169,255,0.6));
  animation: pulse-center 2s ease-in-out infinite;
}

.reset-confirm-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.reset-confirm-form p {
  margin-bottom: 0.5rem;
}

.reset-confirm-form input {
  width: 100%;
  background-color: #0e1117;
  border: 1px solid #2a2d32;
  color: #e6edf3;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-family: var(--font);
  transition: border 0.3s;
}

.reset-confirm-form input:focus {
  outline: none;
  border: 1px solid var(--accent);
  box-shadow: 0 0 10px rgba(83,169,255,0.4);
}

.reset-confirm-form button {
  margin-top: 1rem;
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.reset-confirm-form button:hover {
  background: #2f89e1;
}

.reset-confirm-illu {
  position: relative;
  width: 380px;
  height: 380px;
}

.reset-confirm-radar {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(83,169,255,0.25), rgba(10,12,16,0.1) 70%, transparent 100%);
  box-shadow: 0 0 40px rgba(83,169,255,0.3), inset 0 0 80px rgba(83,169,255,0.1);
  overflow: hidden;
  animation: pulsating-halo 5s infinite;
}

.reset-confirm-radar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(83,169,255,0.5) 0deg,
    rgba(83,169,255,0.1) 60deg,
    rgba(83,169,255,0) 120deg,
    rgba(83,169,255,0.4) 360deg
  );
  animation: radar-spin 6s linear infinite;
  mix-blend-mode: screen;
}

.reset-confirm-radar .blip {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(83,169,255,0.5);
  border-radius: 50%;
  opacity: 0;
  animation: blip-glow 4s ease-in-out infinite;
}

.reset-confirm-radar .blip:nth-of-type(1) { top: 25%; left: 40%; animation-delay: 1s; }
.reset-confirm-radar .blip:nth-of-type(2) { top: 60%; left: 55%; animation-delay: 2s; }
.reset-confirm-radar .blip:nth-of-type(3) { top: 45%; left: 75%; animation-delay: 3s; }
.reset-confirm-radar .blip:nth-of-type(4) { top: 70%; left: 30%; animation-delay: 4s; }

@media (max-width: 768px) {
  .reset-confirm-container {
    flex-direction: column;
    gap: 3rem;
  }

  .reset-confirm-box {
    width: 100%;
    max-width: 360px;
  }

  .reset-confirm-illu {
    width: 260px;
    height: 260px;
  }
}


