/* ============================================
   WEBDEM ONE-PAGE — CSS UNIFIÉ
   Thème cyberpunk : violet #6b46c1 + cyan #00f5ff
   ============================================ */

/* === Variables === */
:root {
  --primary: #6b46c1;
  --primary-dark: #4c1d95;
  --primary-light: #8b5cf6;
  --accent: #00f5ff;
  --accent-dark: #00c4cc;
  --bg: #0a0a0f;
  --bg-card: #111118;
  --bg-alt: #0e0e16;
  --bg-nav: rgba(10, 10, 15, 0.92);
  --text: #e5e5e5;
  --text-muted: #999;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family:
    "Rajdhani",
    -apple-system,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* === Utilitaires === */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sr-focus:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  clip: auto;
  z-index: 9999;
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 1rem;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* === Navigation === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 245, 255, 0.15);
  transition: background var(--transition);
}

nav.scrolled {
  background: rgba(10, 10, 15, 0.98);
  border-bottom-color: var(--accent);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-family: "Orbitron", monospace;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
  transition: text-shadow var(--transition);
}
.logo span {
  color: var(--primary-light);
}
.logo:hover {
  text-shadow: 0 0 30px rgba(0, 245, 255, 0.7);
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.nav-links a {
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: all var(--transition);
  transform: translateX(-50%);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-cta {
  background: var(--gradient) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(107, 70, 193, 0.5);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  transition: all var(--transition);
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: "Orbitron", monospace;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* === Hero === */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse at 25% 25%,
      rgba(107, 70, 193, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 75% 75%,
      rgba(0, 245, 255, 0.08) 0%,
      transparent 60%
    ),
    var(--bg);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-family: "Orbitron", monospace;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 2rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}
.stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(107, 70, 193, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.stat:hover {
  border-color: var(--accent);
  background: rgba(0, 245, 255, 0.05);
}
.stat svg {
  color: var(--accent);
  flex-shrink: 0;
}
.stat strong {
  color: var(--text);
}

/* === Sections === */
.section {
  padding: 5rem 0;
  position: relative;
}
.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-family: "Orbitron", monospace;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  text-align: center;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 1rem;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}
.section-sub {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* === Plan Cards === */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid rgba(107, 70, 193, 0.25);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
}
.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 245, 255, 0.3);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 245, 255, 0.08);
}
.plan-card:hover::before {
  opacity: 1;
}

.plan-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(0, 245, 255, 0.04), var(--bg-card));
  transform: scale(1.03);
}
.plan-card.featured::before {
  opacity: 1;
}
.plan-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.plan-badge {
  position: absolute;
  top: 14px;
  right: -30px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 36px;
  transform: rotate(45deg);
}

.plan-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 70, 193, 0.1);
  border: 1px solid rgba(107, 70, 193, 0.3);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  color: var(--accent);
  transition: all var(--transition);
}
.plan-card:hover .plan-icon {
  background: rgba(0, 245, 255, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.plan-card h3 {
  font-family: "Orbitron", monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.plan-price {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan-price span {
  font-size: 1rem;
  font-weight: 700;
}
.plan-monthly {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.plan-type {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(107, 70, 193, 0.15);
}

.plan-features {
  margin-bottom: 1.5rem;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: var(--text);
}
.plan-features svg {
  flex-shrink: 0;
}

/* === Process Steps === */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
/* Connecting line */
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gradient);
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", monospace;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
  transition: all var(--transition);
  position: relative;
}
.step:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 245, 255, 0.5);
}

.step-icon {
  color: var(--accent);
  margin-bottom: 0.75rem;
  opacity: 0.8;
}
.step:hover .step-icon {
  opacity: 1;
}

.step h3 {
  font-family: "Orbitron", monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* === Team === */
.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid rgba(107, 70, 193, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 245, 255, 0.3);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(0, 245, 255, 0.06);
}
.team-card:hover::before {
  opacity: 1;
}

.team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.team-card:hover .team-photo {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.25);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-family: "Orbitron", monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.team-role {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.team-role svg {
  flex-shrink: 0;
}

.team-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}
.team-skills span {
  padding: 0.25rem 0.75rem;
  background: rgba(107, 70, 193, 0.12);
  border: 1px solid rgba(107, 70, 193, 0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-light);
  transition: all var(--transition);
}
.team-skills span:hover {
  background: rgba(0, 245, 255, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(107, 70, 193, 0.15);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.contact-item:hover {
  border-color: rgba(0, 245, 255, 0.3);
  background: rgba(0, 245, 255, 0.03);
}
.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.contact-item span,
.contact-item a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.contact-item a:hover {
  color: var(--accent);
}

/* CF7 Form Styling */
.contact-form {
  background: var(--bg-card);
  border: 1px solid rgba(107, 70, 193, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
}

/* Wrapper grille : nom + email côte à côte, tel + projet côte à côte */
.contact-form .cf7-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}
.contact-form .cf7-form-wrapper > .form-row {
  grid-column: span 1;
}
/* Message + honeypot + RGPD + Submit = pleine largeur */
.contact-form .cf7-form-wrapper > .form-row:nth-child(n+5) {
  grid-column: 1 / -1;
}

/* Labels */
.contact-form .wpcf7-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.3rem;
  letter-spacing: 0.3px;
}

/* Reset paragraphes CF7 */
.contact-form .wpcf7-form p {
  margin: 0;
}
.contact-form .form-row {
  margin-bottom: 1rem;
}

/* Tous les champs input, tel, email, select, textarea */
.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form input[type="tel"],
.contact-form .wpcf7-form textarea,
.contact-form .wpcf7-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(107, 70, 193, 0.3);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  transition: all var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.contact-form .wpcf7-form input::placeholder,
.contact-form .wpcf7-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}
.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form textarea:focus,
.contact-form .wpcf7-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.1);
  background: rgba(10, 10, 15, 0.95);
}

/* Select custom arrow */
.contact-form .wpcf7-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300f5ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.contact-form .wpcf7-form select option {
  background: var(--bg);
  color: var(--text);
}

/* Textarea */
.contact-form .wpcf7-form textarea {
  min-height: 110px;
  resize: vertical;
}

/* Checkbox RGPD */
.contact-form .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.contact-form .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}
.contact-form .wpcf7-list-item-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.contact-form .wpcf7-list-item-label a {
  color: var(--accent);
  text-decoration: underline;
}

/* Submit */
.contact-form .wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 0.95rem 2rem;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: "Orbitron", monospace;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-form .wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 245, 255, 0.3),
              0 0 40px rgba(107, 70, 193, 0.15);
}
.contact-form .wpcf7-form input[type="submit"]:active {
  transform: translateY(0);
}

/* Messages de réponse */
.contact-form .wpcf7-response-output {
  border-radius: var(--radius-sm) !important;
  font-size: 0.88rem !important;
  padding: 0.75rem 1rem !important;
  margin: 1rem 0 0 !important;
  border-width: 1px !important;
}
.contact-form .wpcf7-mail-sent-ok {
  border-color: #34d399 !important;
  color: #34d399 !important;
  background: rgba(52, 211, 153, 0.08) !important;
}

/* Erreurs */
.contact-form .wpcf7-not-valid-tip {
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: block;
}
.contact-form .wpcf7-not-valid {
  border-color: rgba(248, 113, 113, 0.5) !important;
}

.contact-form .wpcf7-spinner {
  margin: 0.5rem auto 0;
  display: block;
}

/* === FAQ === */
.faq {
  max-width: 750px;

  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(107, 70, 193, 0.2);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover {
  border-color: rgba(107, 70, 193, 0.4);
}
.faq-item.active {
  border-color: var(--accent);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition);
  text-align: left;
}
.faq-q:hover {
  color: var(--accent);
}
.faq-item.active .faq-q {
  color: var(--accent);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--primary-light);
  transition:
    transform var(--transition),
    color var(--transition);
}
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}
.faq-item.active .faq-a {
  max-height: 300px;
}
.faq-a p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid rgba(107, 70, 193, 0.1);
  margin-top: 0;
  padding-top: 1rem;
}

/* === Footer === */
footer {
  background: rgba(8, 8, 12, 0.95);
  border-top: 1px solid rgba(0, 245, 255, 0.1);
  padding: 3rem 0 2rem;
  text-align: center;
}
.footer-brand {
  font-family: "Orbitron", monospace;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.footer-brand span {
  color: var(--primary-light);
}
.footer-copy {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-siret {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.5rem;
}
.footer-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 500px;
  margin: 0 auto;
}

/* === Back to Top === */
.btt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
}
.btt.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.btt:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 245, 255, 0.4);
}

/* === Fade-in Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive — Tablet === */
@media (max-width: 1024px) {
  .plans {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .plan-card.featured {
    transform: scale(1.01);
  }
  .plan-card.featured:hover {
    transform: scale(1.01) translateY(-6px);
  }
  .steps {
    gap: 1rem;
  }
}

/* === Responsive — Mobile === */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(0, 245, 255, 0.15);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-links a {
    padding: 0.75rem 1.5rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 90px;
    min-height: auto;
    padding-bottom: 3rem;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .plan-card.featured {
    transform: none;
  }
  .plan-card.featured:hover {
    transform: translateY(-6px);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps::before {
    display: none;
  }

  .team {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    order: -1;
  }
  .contact-form .cf7-form-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-form .cf7-form-wrapper > .form-row {
    grid-column: span 1;
  }

  .section {
    padding: 3.5rem 0;
  }
}

/* === Responsive — Small Mobile === */
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .stat {
    font-size: 0.78rem;
    padding: 0.6rem 0.3rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }

  .plan-card {
    padding: 1.5rem 1.25rem;
  }
  .section {
    padding: 2.5rem 0;
  }
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
