/*
 * ------------------------------------------------------------------------------
 *  ##     ## ##    ## ########  ########     ###    ########  ######## ##     ## 
 *  ##     ##  ##  ##  ##     ## ##     ##   ## ##   ##     ## ##       ##     ## 
 *  ##     ##   ####   ##     ## ##     ##  ##   ##  ##     ## ##       ##     ## 
 *  #########    ##    ##     ## ########  ##     ## ##     ## ######   ##     ## 
 *  ##     ##    ##    ##     ## ##   ##   ######### ##     ## ##        ##   ##  
 *  ##     ##    ##    ##     ## ##    ##  ##     ## ##     ## ##         ## ##   
 *  ##     ##    ##    ########  ##     ## ##     ## ########  ########    ###   
 * ------------------------------------------------------------------------------
 * --This file is part of fz3temp-2 project.
 * --Created Date: Wednesday, 21st May 2025 7:58:19
 * --Author: HydraDev
 * --Made with ❤
 * --Last Modified: Wednesday, 21st May 2025 7:58:21
 * ------------------------------------------------------------------------------
 * --Copyright (c) 2025 HydraDev, All Rights Reserved.
 * --This file is part of HydraDev project.
 * --Unauthorized using, copying, modifying and/or distributing of this file
 * --via any medium is strictly prohibited. This code is confidential.
 * ------------------------------------------------------------------------------
 */

:root {
  /* Palette modernisée 2025 */
  --bg-primary: #070a17;
  --bg-secondary: #0d1022;
  --bg-elevated: #131833;
  --bg-glass: rgba(13, 16, 34, 0.85);
  --accent-primary: #5046e5;
  --accent-secondary: #00d4ff;
  --accent-gradient: linear-gradient(135deg, #5046e5, #00d4ff);
  --accent-glow: 0 0 25px rgba(80, 70, 229, 0.4);
  --alert-red: #ff3b58;
  --success-green: #00cf91;
  --warning-yellow: #ffcc00;
  --text-primary: #f5f5ff;
  --text-secondary: rgba(245, 245, 255, 0.8);
  --border-color: rgba(80, 70, 229, 0.25);
  --neumorph-shadow: 10px 10px 20px rgba(5, 6, 12, 0.7),
    -10px -10px 20px rgba(21, 25, 50, 0.2);
  --card-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);

  --nav-height: 80px;
  --border-radius-sm: 0.625rem;
  --border-radius: 1rem;
  --border-radius-lg: 1.5rem;

  --font-main: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1400px;
  --section-spacing: 8rem;
  --content-spacing: 2rem;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/fonts/plusjakartasans/400.woff2)
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/fonts/plusjakartasans/500.woff2)
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/fonts/plusjakartasans/600.woff2)
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/fonts/plusjakartasans/700.woff2)
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 800;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/fonts/plusjakartasans/800.woff2)
    format("woff2");
  font-display: swap;
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

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

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

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

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(80, 70, 229, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(80, 70, 229, 0.8);
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(80, 70, 229, 0.4);
  }
  100% {
    box-shadow: 0 0 0 25px rgba(80, 70, 229, 0);
  }
}

@keyframes blob {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  50% {
    border-radius: 50% 60% 30% 40% / 40% 60% 70% 30%;
  }
  75% {
    border-radius: 60% 40% 50% 30% / 30% 60% 70% 40%;
  }
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-primary) var(--bg-secondary);
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  background: linear-gradient(
    to bottom,
    var(--bg-primary),
    var(--bg-secondary),
    var(--bg-primary)
  );
  background-size: 100% 200%;
  background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

a {
  color: var(--accent-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--text-primary);
}

button,
.btn {
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  white-space: nowrap;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.75rem;
}

section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

section:not(:first-child) {
  margin-top: var(--section-spacing);
}

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.blur-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-primary);
  filter: blur(100px);
  opacity: 0.2;
  z-index: -1;
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(15px);
  background: var(--bg-glass);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  width: 200px;
  height: 50px;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  gap: 1.2rem;
}

.btn {
  padding: 0.85rem 1.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gradient);
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
  color: var(--text-primary);
  box-shadow: var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(80, 70, 229, 0.3);
}

.btn-primary:active {
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(80, 70, 229, 0.12);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(80, 70, 229, 0.2);
  transform: translateY(-4px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 23px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: var(--nav-height);
  text-align: center;
}

.hero .container {
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
}

.hero-blur-1 {
  top: 15%;
  left: 15%;
  width: 350px;
  height: 350px;
}

.hero-blur-2 {
  bottom: 15%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: var(--accent-secondary);
}

.hero-content {
  max-width: 850px;
  animation: appear var(--transition-slow) both;
  animation-delay: 0.5s;
}

.hero-content h1 {
  margin-bottom: 1.75rem;
}

.hero-subtitle {
  font-size: 1.35rem;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.hero-btn {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: var(--border-radius);
}

.btn-with-icon {
  padding-right: 2.75rem;
}

.btn-with-icon i {
  position: absolute;
  right: 1.2rem;
  font-size: 0.9rem;
  transition: transform var(--transition);
}

.btn-with-icon:hover i {
  transform: translateX(4px);
}

.hero-metrics {
  display: flex;
  gap: 4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-value {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.metric-label {
  font-size: 1.05rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-animation {
  position: relative;
  width: 450px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(80, 70, 229, 0.25);
  animation: spin 12s linear infinite;
}

.orbit:nth-child(1) {
  transform: rotate(0deg);
}

.orbit:nth-child(2) {
  width: 70%;
  height: 70%;
  animation-direction: reverse;
  animation-duration: 8s;
}

.orbit:nth-child(3) {
  width: 45%;
  height: 45%;
  animation-duration: 5s;
}

.orbit-node {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: var(--accent-glow);
  transition: all var(--transition);
}

.orbit:nth-child(1) .orbit-node {
  left: 5%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit:nth-child(2) .orbit-node {
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

.orbit:nth-child(3) .orbit-node {
  left: 85%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.core {
  width: 110px;
  height: 110px;
  background: var(--accent-gradient);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--accent-glow);
  animation: pulse 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.core img {
  width: 80%;
  height: auto;
}

.shield-pulse {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 35px;
  background: transparent;
  border: 2px solid var(--accent-primary);
  opacity: 0.7;
  animation: ripple 2s infinite;
}

/* Features Section */
.features {
  position: relative;
  overflow: visible;
}

.features-blur-1 {
  top: -10%;
  left: -5%;
  width: 450px;
  height: 450px;
}

.section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 5rem;
}

.section-title-wrapper {
  display: inline-block;
  position: relative;
  margin-bottom: 1.2rem;
}

.section-subtitle {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: rgba(80, 70, 229, 0.12);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-secondary);
  margin-bottom: 1.2rem;
}

.section-title {
  margin-bottom: 1.75rem;
}

.section-description {
  font-size: 1.2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.75rem;
  margin-top: 2.5rem;
}

/* Styles pour les cartes de fonctionnalités */
.feature-card {
  background: rgba(13, 16, 34, 0.65);
  border-radius: var(--border-radius);
  padding: 2.25rem;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: all var(--transition);
  box-shadow: var(--card-shadow);
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent-primary);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover:before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--accent-gradient);
  margin: 0 auto 1.2rem;
  box-shadow: var(--accent-glow);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--text-primary);
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.feature-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.feature-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

/* How it Works Section */
.how-it-works {
  position: relative;
}

.how-it-works-blur {
  top: 50%;
  right: -10%;
  width: 550px;
  height: 550px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 4.5rem;
  position: relative;
}

.step-connector {
  position: absolute;
  top: 110px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(80, 70, 229, 0.25),
    rgba(0, 212, 255, 0.25)
  );
  z-index: -1;
}

.step-item {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  box-shadow: var(--accent-glow);
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}

.step-description {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Pricing Section */
.pricing {
  position: relative;
  padding: 6rem 0;
}

.pricing-blur-1 {
  top: 20%;
  left: -10%;
  width: 450px;
  height: 450px;
}

.pricing-blur-2 {
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: var(--accent-secondary);
}

.pricing-container {
  max-width: 950px;
  margin: 3.5rem auto 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.pricing-card-pro {
  background: rgba(13, 16, 34, 0.75);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card-pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
}

.card-header {
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  background: rgba(13, 16, 34, 0.6);
}

.header-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.plan-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0;
}

.plan-badge {
  display: inline-block;
  background: rgba(80, 70, 229, 0.12);
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.price-prefix {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.price-main {
  display: flex;
  align-items: baseline;
}

.price-currency {
  font-size: 2rem;
  font-weight: 700;
  margin-right: 0.3rem;
}

#price-value {
  font-size: 3.75rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all var(--transition-fast);
}

.price-period {
  font-size: 1.35rem;
  color: var(--text-secondary);
  margin-left: 0.3rem;
}

.slot-configurator {
  padding: 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.slot-display {
  margin-bottom: 2.5rem;
}

.main-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
}

#slot-count {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all var(--transition-fast);
}

.slot-label {
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.9rem;
  font-weight: 600;
}

.slot-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.slider-control {
  position: relative;
  padding: 1.75rem 0;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.slot-slider {
  appearance: none;
  width: 100%;
  height: 40px;
  background: transparent;
  outline: none;
  position: relative;
  z-index: 5;
  cursor: pointer;
  margin: 0;
}

.slot-slider::-webkit-slider-thumb {
  appearance: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: var(--accent-glow);
  cursor: pointer;
  position: relative;
  z-index: 5;
  transition: all var(--transition-fast);
}

.slot-slider::-moz-range-thumb {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: var(--accent-glow);
  cursor: pointer;
  position: relative;
  z-index: 5;
  border: none;
  transition: all var(--transition-fast);
}

.slot-slider::-webkit-slider-thumb:hover,
.slot-slider:active::-webkit-slider-thumb {
  transform: scale(1.18);
}

.slot-slider::-moz-range-thumb:hover,
.slot-slider:active::-moz-range-thumb {
  transform: scale(1.18);
}

.slider-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(21, 25, 50, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transform: translateY(-50%);
  z-index: 1;
}

.slider-track-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--accent-gradient);
  background-size: 200% 100%;
  animation: gradient-shift 4s infinite;
  width: 0%; /* Sera défini par JavaScript */
  border-radius: 4px;
  transition: width var(--transition-fast);
}

.slot-markers {
  display: flex;
  justify-content: space-between;
  margin-top: 1.2rem;
  position: relative;
}

.marker-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 0;
}

.marker-line {
  height: 10px;
  width: 1px;
  background-color: var(--border-color);
  margin-bottom: 0.6rem;
}

.marker-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transform: translateX(-50%);
}

.plan-statistics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border-color);
}

.stat-item {
  padding: 2.25rem 1.2rem;
  text-align: center;
  border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--accent-secondary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-specs {
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid var(--border-color);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.6rem 0;
}

.feature-check {
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 207, 145, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-check i {
  font-size: 0.85rem;
  color: var(--success-green);
}

.feature-name {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.support-level {
  color: var(--accent-secondary);
  font-weight: 600;
  transition: all var(--transition-fast);
  padding: 0.25rem 0.6rem;
  background: rgba(80, 70, 229, 0.12);
  border-radius: 4px;
  margin-left: 0.6rem;
  font-size: 0.9rem;
}

.enterprise-section {
  border-radius: var(--border-radius-sm);
  background: rgba(21, 25, 50, 0.35);
  border: 1px solid var(--border-color);
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.enterprise-content {
  flex: 1;
}

.enterprise-content h4 {
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.enterprise-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.enterprise-contact {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  background: rgba(13, 16, 34, 0.55);
  padding: 1.2rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(80, 70, 229, 0.15);
}

.enterprise-contact i {
  color: var(--accent-primary);
}

.enterprise-contact a {
  color: var(--accent-secondary);
  transition: all var(--transition-fast);
}

.enterprise-contact a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.plan-actions {
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.guarantee-badge {
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 50%;
  background: rgba(0, 207, 145, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-badge i {
  font-size: 1.1rem;
  color: var(--success-green);
}

.plan-cta {
  padding: 1.15rem 2.75rem;
  border-radius: var(--border-radius);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--accent-gradient);
  background-size: 200% 100%;
  animation: gradient-shift 4s infinite;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--accent-glow);
}

.plan-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(80, 70, 229, 0.35);
}

/* Testimonials Section */
.testimonials {
  position: relative;
}

.testimonials-blur {
  bottom: 10%;
  left: 25%;
  width: 350px;
  height: 350px;
}

.testimonials-container {
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 2.75rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: rgba(21, 25, 50, 0.55);
  border-radius: var(--border-radius);
  padding: 2.75rem;
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
  border-color: var(--accent-primary);
}

.testimonial-content {
  position: relative;
  margin-bottom: 2.25rem;
  flex-grow: 1;
}

.testimonial-content:before {
  content: "\201C";
  position: absolute;
  top: -1.75rem;
  left: -0.6rem;
  font-size: 5.5rem;
  font-family: Georgia, serif;
  color: var(--accent-primary);
  opacity: 0.25;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-top: 1.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-primary);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.author-role {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  position: relative;
}

.faq-blur {
  top: 30%;
  right: -10%;
  width: 450px;
  height: 450px;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.75rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem;
  background: rgba(21, 25, 50, 0.55);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid var(--border-color);
}

.faq-question:hover {
  background: rgba(21, 25, 50, 0.75);
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0;
}

.faq-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(80, 70, 229, 0.12);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.faq-icon i {
  font-size: 0.8rem;
  color: var(--accent-primary);
  transition: all var(--transition-fast);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-answer-content {
  padding: 1.75rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  border: 1px solid var(--border-color);
  border-top: 0;
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
}

.faq-item.active .faq-question {
  border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
  border-color: var(--accent-primary);
  background: rgba(80, 70, 229, 0.12);
}

.faq-item.active .faq-icon {
  background: var(--accent-primary);
  transform: rotate(180deg);
}

.faq-item.active .faq-icon i {
  color: var(--text-primary);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

/* CTA Section */
.cta {
  text-align: center;
  position: relative;
}

.cta-blur {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  opacity: 0.15;
}

.cta-card {
  background: rgba(21, 25, 50, 0.65);
  border-radius: var(--border-radius-lg);
  padding: 4.5rem 2.25rem;
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.cta-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--accent-gradient);
}

.cta-content {
  max-width: 750px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.75rem;
  margin-bottom: 1.75rem;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 2.75rem;
  color: var(--text-secondary);
}

.cta-actions {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: var(--border-radius);
}

/* Footer */
.footer {
  margin-top: 8rem;
  padding: 5.5rem 0 2.25rem;
  position: relative;
  overflow: hidden;
}

.footer-blur {
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 650px;
  opacity: 0.1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  width: 200px;
  height: 50px;
}

.footer-logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-description {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(80, 70, 229, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-link i {
  color: var(--accent-primary);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-primary);
  transform: translateY(-4px);
}

.social-link:hover i {
  color: var(--text-primary);
}

.footer-nav h4 {
  font-size: 1.2rem;
  margin-bottom: 1.75rem;
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-secondary);
  transform: translateX(6px);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--border-color);
  margin: 3.5rem 0 2.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2.25rem;
}

.footer-legal a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Login Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 12, 24, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 1001;
  padding: 1.2rem;
}

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

.modal {
  width: 100%;
  max-width: 420px;
  background: rgba(13, 16, 34, 0.85);
  backdrop-filter: blur(15px);
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  transform: translateY(35px);
  transition: all var(--transition);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(80, 70, 229, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 1;
}

.modal-close i {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: rgba(80, 70, 229, 0.25);
  transform: rotate(90deg);
}

.modal-close:hover i {
  color: var(--text-primary);
}

.modal-header {
  padding: 2.75rem 2.25rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-logo {
  margin-bottom: 1.75rem;
  display: flex;
  justify-content: center;
}

.modal-logo .logo-icon {
  width: 200px;
  height: auto;
  display: flex;
  margin-right: 1.5rem;
}

.modal-title {
  font-size: 1.9rem;
  margin-bottom: 0.85rem;
}

.modal-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 300px;
  margin: 0 auto;
}

.modal-body {
  padding: 0 2.25rem 2.75rem;
}

.discord-login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.15rem;
  background: #5865f2;
  color: white;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 1.05rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.discord-login-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 18px rgba(88, 101, 242, 0.4);
}

.discord-login-btn:active {
  transform: translateY(-2px);
}

.discord-login-btn i {
  font-size: 1.35rem;
}

.modal-footer {
  margin-top: 2.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.modal-footer a {
  color: var(--accent-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.modal-footer a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* Protection Widget */
.protection-widget {
  position: fixed;
  bottom: 2.25rem;
  right: 2.25rem;
  background: rgba(21, 25, 50, 0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--border-radius);
  width: 340px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(25px);
  visibility: hidden;
  z-index: 100;
  overflow: hidden;
}

.protection-widget.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem;
  border-bottom: 1px solid var(--border-color);
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.widget-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success-green);
  position: relative;
}

.status-indicator:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: var(--success-green);
  animation: ripple 1.5s infinite;
  opacity: 0.5;
}

.widget-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(80, 70, 229, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.widget-close i {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.widget-close:hover {
  background: rgba(80, 70, 229, 0.25);
}

.widget-close:hover i {
  color: var(--text-primary);
}

.widget-body {
  padding: 1.4rem;
}

.widget-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.stat-card {
  background: rgba(21, 25, 50, 0.55);
  padding: 1.2rem;
  border-radius: var(--border-radius-sm);
  text-align: center;
}

.stat-value {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.attacks-blocked .stat-value {
  color: var(--success-green);
}

.current-latency .stat-value {
  color: var(--accent-secondary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.widget-info {
  background: rgba(0, 207, 145, 0.12);
  border-radius: var(--border-radius-sm);
  padding: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.widget-info i {
  color: var(--success-green);
  font-size: 1.2rem;
}

.widget-info-text {
  font-size: 0.9rem;
  color: var(--success-green);
  font-weight: 500;
}

.widget-action {
  width: 100%;
  padding: 0.95rem;
  border-radius: var(--border-radius-sm);
  background: rgba(80, 70, 229, 0.12);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  transition: all var(--transition);
  border: 1px solid var(--border-color);
}

.widget-action:hover {
  background: rgba(80, 70, 229, 0.25);
  transform: translateY(-4px);
}

/* Media Queries */
@media (max-width: 1200px) {
  :root {
    --section-spacing: 6.5rem;
  }

  h1 {
    font-size: clamp(2.6rem, 4vw, 3.75rem);
  }

  h2 {
    font-size: clamp(2.1rem, 3vw, 2.75rem);
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 992px) {
  :root {
    --section-spacing: 5.5rem;
    --content-spacing: 1.6rem;
    --nav-height: 75px;
  }

  .hero-metrics {
    gap: 2.25rem;
  }

  .hero-animation {
    width: 330px;
    height: 330px;
  }

  .core {
    width: 90px;
    height: 90px;
  }

  .shield-pulse {
    width: 115px;
    height: 115px;
  }

  .core i {
    font-size: 2.25rem;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-item {
    max-width: 100%;
  }

  .step-connector {
    display: none;
  }

  .plan-specs {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 4.5rem;
    --content-spacing: 1.35rem;
  }

  h1 {
    font-size: clamp(2.1rem, 4vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
  }

  .nav-items {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    padding: 1.75rem;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    clip-path: inset(0 0 100% 0);
    transition: all var(--transition);
    height: auto;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }

  .nav-items.active {
    clip-path: inset(0 0 0 0);
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-links a {
    padding: 0.9rem 0;
    width: 100%;
    display: block;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-buttons {
    width: 100%;
    flex-direction: column;
    margin-top: 1.2rem;
  }

  .nav-buttons .btn {
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: calc(100vh - var(--nav-height));
  }

  .hero-animation {
    display: none;
  }

  .hero-btns {
    width: 100%;
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stat-group {
    flex-direction: column;
  }

  .plan-actions {
    flex-direction: column;
  }

  .guarantee {
    width: 100%;
    justify-content: center;
  }

  .plan-cta {
    width: 100%;
    order: -1;
    margin-bottom: 1.75rem;
  }

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

  .footer-legal {
    flex-direction: column;
    gap: 1.2rem;
  }

  .protection-widget {
    bottom: 1.2rem;
    right: 1.2rem;
    left: 1.2rem;
    width: auto;
  }
}

@media (max-width: 576px) {
  :root {
    --section-spacing: 3.5rem;
    --content-spacing: 1.1rem;
  }

  .container {
    padding: 0 1.1rem;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 1.75rem;
  }

  .metric-item {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding: 1.2rem;
    background: rgba(21, 25, 50, 0.55);
    border-radius: var(--border-radius-sm);
  }

  .metric-value {
    font-size: 2.25rem;
    margin-bottom: 0;
  }

  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
  }

  .header-price {
    align-items: flex-start;
  }

  .slot-markers .marker-value:nth-child(even) {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Styles spécifiques à la section de tarification */
.pricing {
  padding: 7rem 0;
  position: relative;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    rgba(10, 13, 28, 0.9) 100%
  );
  overflow: hidden;
}

.pricing-blur-1 {
  top: 15%;
  left: -10%;
  width: 500px;
  height: 500px;
  opacity: 0.25;
}

.pricing-blur-2 {
  bottom: 10%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: var(--accent-secondary);
  opacity: 0.2;
}

.pricing-card {
  margin-top: 5rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: rgba(15, 18, 36, 0.75);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(80, 70, 229, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  position: relative;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--accent-gradient);
  z-index: 1;
}

.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  border-bottom: 1px solid rgba(80, 70, 229, 0.15);
  background: rgba(13, 16, 34, 0.6);
}

.pricing-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(80, 70, 229, 0.4);
}

.pricing-badge span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.pricing-tabs {
  display: flex;
  background: rgba(21, 25, 50, 0.4);
  border-radius: 50px;
  padding: 0.25rem;
  border: 1px solid rgba(80, 70, 229, 0.15);
}

.pricing-tab {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.pricing-tab.active {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 5px 15px rgba(80, 70, 229, 0.3);
}

.save-tag {
  font-size: 0.75rem;
  background: rgba(0, 207, 145, 0.2);
  color: var(--success-green);
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
  margin-left: 0.5rem;
  font-weight: 700;
}

.pricing-content {
  padding: 3rem;
}

.pricing-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.pricing-slots {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.slots-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(21, 25, 50, 0.4);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid rgba(80, 70, 229, 0.15);
}

.slots-counter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#slot-count {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
}

.slots-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  letter-spacing: 2px;
}

.slots-controls {
  display: flex;
  gap: 1rem;
}

.slot-control-btn {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  border: 1px solid rgba(80, 70, 229, 0.2);
  background: rgba(21, 25, 50, 0.4);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-control-btn:hover {
  background: rgba(80, 70, 229, 0.2);
  transform: translateY(-3px);
}

.slots-slider-container {
  position: relative;
  padding: 2rem 0;
}

.slots-slider {
  appearance: none;
  width: 100%;
  height: 50px;
  background: transparent;
  outline: none;
  position: relative;
  z-index: 5;
  cursor: pointer;
  margin: 0;
}

.slots-slider::-webkit-slider-thumb {
  appearance: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 0 20px rgba(80, 70, 229, 0.4);
  cursor: pointer;
  position: relative;
  z-index: 5;
  transition: all 0.3s ease;
}

.slots-slider::-moz-range-thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 0 20px rgba(80, 70, 229, 0.4);
  cursor: pointer;
  position: relative;
  z-index: 5;
  border: none;
  transition: all 0.3s ease;
}

.slots-slider::-webkit-slider-thumb:hover,
.slots-slider:active::-webkit-slider-thumb {
  transform: scale(1.2);
}

.slots-slider::-moz-range-thumb:hover,
.slots-slider:active::-moz-range-thumb {
  transform: scale(1.2);
}

.slider-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 10px;
  background: rgba(21, 25, 50, 0.6);
  border: 1px solid rgba(80, 70, 229, 0.15);
  border-radius: 5px;
  transform: translateY(-50%);
  z-index: 1;
}

.slider-track-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--accent-gradient);
  background-size: 200% 100%;
  animation: gradient-shift 4s infinite;
  width: 0%;
  border-radius: 5px;
  transition: width 0.3s ease;
}

.slider-values {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
}

.pricing-info {
  margin-top: 1rem;
}

.pricing-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(21, 25, 50, 0.4);
  border-radius: var(--border-radius-sm);
  padding: 1.25rem;
  border: 1px solid rgba(80, 70, 229, 0.1);
}

.pricing-info-item i {
  color: var(--accent-secondary);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-label {
  font-weight: 600;
  color: var(--text-primary);
}

.info-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.price-display {
  display: flex;
  flex-direction: column;
}

.price-box {
  background: rgba(21, 25, 50, 0.5);
  border-radius: var(--border-radius);
  border: 1px solid rgba(80, 70, 229, 0.15);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(80, 70, 229, 0.15);
  background: rgba(80, 70, 229, 0.1);
}

.price-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price-currency {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-right: 0.2rem;
}

.price-value {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.price-period {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-left: 0.2rem;
}

.price-features {
  padding: 2rem;
  flex-grow: 1;
}

.price-features ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price-features i {
  color: var(--accent-secondary);
  font-size: 1.1rem;
  min-width: 1.2rem;
  text-align: center;
}

.price-features span {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.support-badge {
  background: rgba(80, 70, 229, 0.15);
  color: var(--accent-secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.price-action {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 1px solid rgba(80, 70, 229, 0.15);
}

.price-button {
  padding: 1.25rem;
  border-radius: var(--border-radius);
  border: none;
  background: var(--accent-gradient);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 8px 20px rgba(80, 70, 229, 0.3);
}

.price-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(80, 70, 229, 0.4);
}

.price-guarantee {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.price-guarantee i {
  color: var(--success-green);
}

.price-guarantee span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: rgba(21, 25, 50, 0.4);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(80, 70, 229, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(80, 70, 229, 0.3);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(80, 70, 229, 0.2);
}

.stat-icon i {
  font-size: 1.5rem;
  color: white;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--accent-secondary);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-enterprise {
  background: rgba(21, 25, 50, 0.4);
  border-radius: var(--border-radius);
  border: 1px solid rgba(80, 70, 229, 0.15);
}

.enterprise-content {
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.enterprise-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, #5046e5, #8874ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(80, 70, 229, 0.2);
}

.enterprise-icon i {
  font-size: 1.75rem;
  color: white;
}

.enterprise-text {
  flex-grow: 1;
}

.enterprise-text h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.enterprise-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.enterprise-button {
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(80, 70, 229, 0.3);
  background: rgba(80, 70, 229, 0.1);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.enterprise-button:hover {
  background: rgba(80, 70, 229, 0.2);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .pricing-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .enterprise-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .enterprise-text {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .pricing-header {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }

  .pricing-content {
    padding: 2rem;
  }

  .slots-display {
    flex-direction: column;
    gap: 1.5rem;
  }

  .slots-counter {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .pricing-stats {
    grid-template-columns: 1fr;
  }

  .enterprise-button {
    width: 100%;
    justify-content: center;
  }
}
