:root {

  --bg: #050816;

  --surface: rgba(255,255,255,0.04);

  --border: rgba(255,255,255,0.08);

  --text: #ffffff;

  --muted: rgba(255,255,255,0.65);

  --gradient:
    linear-gradient(
      135deg,
      #00c6ff,
      #8b5cf6,
      #ff4fd8
    );

  --radius: 24px;

  --transition:
    0.45s cubic-bezier(.2,.8,.2,1);

}

/* =========================
   RESET
========================= */

* {

  margin: 0;
  padding: 0;

  box-sizing: border-box;

}

html {

  scroll-behavior: smooth;

}

body {

  font-family: "Inter", sans-serif;

  background:
    radial-gradient(circle at top left,
    rgba(0,198,255,0.10),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(139,92,246,0.12),
    transparent 35%),

    radial-gradient(circle at center,
    rgba(255,79,216,0.05),
    transparent 40%),

    #050816;

  color: var(--text);

  overflow-x: hidden;

  cursor: auto;



}

/* =========================
   NOISE
========================= */

.noise {

  position: fixed;

  inset: 0;

  opacity: 0.03;

  pointer-events: none;

  background-image:
    url("https://grainy-gradients.vercel.app/noise.svg");

}

/* =========================
   BACKGROUND GLOW
========================= */

body::before {

  content: "";

  position: fixed;

  inset: 0;

  z-index: -1;

  background:

    radial-gradient(circle at top left,
    rgba(0,194,255,0.2),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(139,92,246,0.18),
    transparent 35%),

    radial-gradient(circle at center,
    rgba(255,79,216,0.08),
    transparent 45%);

  filter: blur(80px);

}

/* =========================
   SECTION
========================= */

.section {

  padding: 140px 8%;

}

/* =========================
   HEADER
========================= */

.header {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 9999;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 24px 8%;

  background:
    rgba(5,8,22,0.55);

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);

  border-bottom:
    1px solid rgba(255,255,255,0.04);

  transition: var(--transition);

}

.header.scrolled {

  padding: 18px 8%;

  background:
    rgba(5,8,22,0.85);

  border-bottom:
    1px solid rgba(255,255,255,0.08);

}

/* =========================
   LOGO
========================= */

.logo,
.footer-logo {

  text-decoration: none;

  color: white;

  font-weight: 700;

  letter-spacing: 4px;

}

/* =========================
   NAVIGATION
========================= */

.nav {

  display: flex;

  align-items: center;

  gap: 34px;

}

.nav a,
.footer-links a {

  text-decoration: none;

  color: white;

  opacity: 0.7;

  transition: var(--transition);

}

.nav a:hover,
.footer-links a:hover {

  opacity: 1;

}

/* =========================
   HERO
========================= */

.hero {

  min-height: 100vh;

  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  align-items: center;

  gap: 60px;

}

.hero h1,
.section-top h2,
.cta h2 {

  font-size:
    clamp(42px,7vw,78px);

  line-height: 1;

  letter-spacing: -3px;

}

.hero-text,
.project-content p,
.service-card p,
.why-card p,
.process-card p,
.testimonial-card p {

  color: var(--muted);

  line-height: 1.8;

}

.hero-text {

  max-width: 650px;

  margin-top: 28px;

  font-size: 18px;

}

.eyebrow {

  margin-bottom: 24px;

  font-size: 12px;

  letter-spacing: 3px;

  opacity: 0.5;

}

/* =========================
   BUTTONS
========================= */

.hero-actions {

  margin-top: 40px;

  display: flex;

  gap: 18px;

  flex-wrap: wrap;

}

button,
.secondary-btn {

  border: none;

  border-radius: 16px;

  padding: 16px 28px;

  font-weight: 600;

  transition: var(--transition);

  cursor: pointer;

}

button {

  background: var(--gradient);

  color: white;

}

.secondary-btn {

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);

  text-decoration: none;

  color: white;

}

button:hover,
.secondary-btn:hover {

  transform: translateY(-4px);

}

/* =========================
   STATS
========================= */

.hero-stats {

  display: flex;

  gap: 36px;

  margin-top: 50px;

  flex-wrap: wrap;

}

.hero-stats strong {

  display: block;

  font-size: 26px;

}

.hero-stats span {

  opacity: 0.6;

  font-size: 14px;

}

/* =========================
   MOCKUP
========================= */

.mockup-card {

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 28px;

  padding: 20px;

  backdrop-filter: blur(12px);

}

.mockup-screen {

  height: 500px;

  border-radius: 20px;

  background-image:
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=1400&auto=format&fit=crop");

  background-size: cover;

  background-position: center;

}

/* =========================
   GRIDS
========================= */

.brands-grid,
.why-grid,
.services-grid,
.projects-grid,
.process-grid,
.testimonials-grid {

  display: grid;

  gap: 28px;

}

.brands-grid,
.why-grid,
.services-grid,
.process-grid {

  grid-template-columns:
    repeat(3,1fr);

}

.projects-grid {

  grid-template-columns:
    repeat(3,1fr);

}

/* =========================
   CARDS
========================= */

.brands-grid span,
.why-card,
.service-card,
.project-card,
.process-card,
.testimonial-card,
.popup-box {

  background: var(--surface);

  border:
    1px solid var(--border);

  backdrop-filter: blur(12px);

  border-radius: var(--radius);

}

.brands-grid span,
.why-card,
.service-card,
.process-card,
.testimonial-card {

  padding: 36px;

}

.project-card {

  overflow: hidden;

}

.project-content {

  padding: 32px;

}

.project-card,
.why-card,
.service-card,
.process-card,
.testimonial-card {

  transition: var(--transition);

}

.project-card:hover,
.why-card:hover,
.service-card:hover,
.process-card:hover,
.testimonial-card:hover {

  transform: translateY(-8px);

  border-color:
    rgba(255,255,255,0.16);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.35),
    0 0 40px rgba(139,92,246,0.08);

}

/* =========================
   PROJECT IMAGES
========================= */

.project-image {

  height: 300px;

  background-size: cover;

  background-position: center;

}

.image-1 {

  background-image:
    url("images/img7.png");

}

.image-2 {

  background-image:
    url("images/img8.png");

}

.image-3 {

  background-image:
    url("images/img9.png");

}

.project-card.large {

  grid-column: span 2;

}

/* =========================
   PROCESS
========================= */

.process-card span {

  display: inline-flex;

  width: 48px;
  height: 48px;

  border-radius: 50%;

  align-items: center;
  justify-content: center;

  background:
    rgba(255,255,255,0.06);

  margin-bottom: 24px;

}

/* =========================
   CTA
========================= */

.cta {

  text-align: center;

}

.cta h2 {

  max-width: 900px;

  margin: 0 auto 36px;

}

/* =========================
   FOOTER
========================= */

.footer {

  padding: 60px 8%;

  display: flex;

  justify-content: space-between;

  align-items: center;

  border-top:
    1px solid rgba(255,255,255,0.08);

}

.footer p {

  margin-top: 10px;

  opacity: 0.5;

}

.footer-links {

  display: flex;

  gap: 20px;

}

/* =========================
   POPUP
========================= */

.popup {

  position: fixed;

  inset: 0;

  background:
    rgba(0,0,0,0.78);

  display: flex;

  justify-content: center;
  align-items: center;

  opacity: 0;

  pointer-events: none;

  transition: 0.4s ease;

  z-index: 9999;

  backdrop-filter: blur(6px);

}

.popup.active {

  opacity: 1;

  pointer-events: all;

}

.popup-box {

  width: 90%;
  max-width: 520px;

  padding: 40px;

  position: relative;

  background:
    rgba(12,14,24,0.96);

  border:
    1px solid rgba(255,255,255,0.12);

  border-radius: 28px;

  backdrop-filter: blur(20px);

  box-shadow:
    0 25px 80px rgba(0,0,0,0.55),
    0 0 60px rgba(139,92,246,0.12);

}

.close-popup {

  position: absolute;

  top: 14px;
  right: 18px;

  background: transparent;

}

/* =========================
   FORM
========================= */

form {

  display: flex;

  flex-direction: column;

  gap: 16px;

  margin-top: 24px;

}

input,
textarea {

  width: 100%;

  padding: 16px;

  border-radius: 14px;

  border:
    1px solid rgba(255,255,255,0.08);

  background:
    rgba(255,255,255,0.03);

  color: white;

  outline: none;

  transition:
    border-color 0.3s ease,
    background 0.3s ease;

}

input:focus,
textarea:focus {

  border-color:
    rgba(139,92,246,0.5);

  background:
    rgba(255,255,255,0.05);

}

textarea {

  min-height: 130px;

  resize: none;

}

/* =========================
   REVEAL
========================= */

.reveal {

  opacity: 0;

  transform: translateY(40px);

  transition:
    1s cubic-bezier(.2,.8,.2,1);

}

.reveal.visible {

  opacity: 1;

  transform: translateY(0);

}

/* =========================
   CURSOR
========================= */

.cursor {

  width: 12px;
  height: 12px;

  border-radius: 50%;

  border:
    1px solid rgba(255,255,255,0.7);

  position: fixed;

  pointer-events: none;

  z-index: 100;

  transform: translate(-50%, -50%);

}
.header,
.nav,
button,
a {
  position: relative;
  z-index: 10;
}

/* =========================
   MOBILE CTA
========================= */

.mobile-cta {

  display: none;

}

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-btn {

  display: none;

}

/* =========================
   MOBILE
========================= */

@media (max-width: 980px) {

  body {

    cursor: auto;

  }

  .cursor {

    display: none;

  }

  .section {

    padding: 100px 24px;

  }

  .hero {

    grid-template-columns: 1fr;

  }

  .brands-grid,
  .why-grid,
  .services-grid,
  .projects-grid,
  .process-grid,
  .testimonials-grid {

    grid-template-columns: 1fr;

  }

  .project-card.large {

    grid-column: auto;

  }

  .hero h1,
  .section-top h2,
  .cta h2 {

    line-height: 1.1;

    letter-spacing: -2px;

  }

  .hero-text {

    font-size: 16px;

  }

  .hero-stats {

    gap: 24px;

  }

  .popup-box {

    padding: 28px;

  }

  /* MENU BUTTON */

  .menu-btn {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    width: 48px;
    height: 48px;

    border-radius: 14px;

    background:
      rgba(255,255,255,0.04);

    border:
      1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);

    z-index: 10001;

  }

  .menu-btn span {

    display: block;

    width: 24px;
    height: 2px;

    margin: 3px 0;

    border-radius: 10px;

    background: white;

  }

  /* MOBILE NAV */

  .nav {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background:
      linear-gradient(
        180deg,
        rgba(5,8,22,0.96),
        rgba(7,10,24,0.98)
      );

    backdrop-filter: blur(24px);

    -webkit-backdrop-filter: blur(24px);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 32px;

    transform: translateY(-100%);

    opacity: 0;

    visibility: hidden;

    transition:
      transform 0.45s cubic-bezier(.2,.8,.2,1),
      opacity 0.4s ease,
      visibility 0.4s ease;

    z-index: 9999;

  }

  .nav.active {

    transform: translateY(0);

    opacity: 1;

    visibility: visible;

  }

  .nav a {

    font-size: 28px;

    font-weight: 600;

    opacity: 1;

  }

  /* MOBILE CTA */

  .mobile-cta {

    display: block;

    position: fixed;

    left: 15px;
    right: 15px;
    bottom: 15px;

    z-index: 999;

  }

  .mobile-cta button {

    width: 100%;

  }

  /* FOOTER */

  .footer {

    flex-direction: column;

    align-items: flex-start;

    gap: 20px;

  }

}

/* =========================
   LOCK SCROLL
========================= */

body.menu-open {

  overflow: hidden;

}
.pricing-grid {

  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 28px;

  margin-top: 60px;

}

.pricing-card {

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 24px;

  padding: 38px;

  backdrop-filter: blur(12px);

  transition: 0.45s cubic-bezier(.2,.8,.2,1);

  position: relative;

  overflow: hidden;

}

.pricing-card h3 {

  font-size: 24px;

  margin-bottom: 18px;

}

.price {

  font-size: 22px;

  font-weight: 700;

  color: #ffffff;

  margin-bottom: 20px;

}

.desc {

  color: rgba(255,255,255,0.65);

  line-height: 1.7;

}

/* CASE DU MILIEU */

.featured {

  transform: scale(1.03);

  background:
    rgba(255,255,255,0.05);


}

/* HOVER VIOLET */

.pricing-card:hover {

  transform: translateY(-8px);

  border-color: rgba(139,92,246,0.55);

  box-shadow:
    0 0 40px rgba(139,92,246,0.18),
    0 10px 40px rgba(0,0,0,0.35);

}

/* GLOW SUBTIL */

.pricing-card::before {

  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(circle at top left,
    rgba(139,92,246,0.12),
    transparent 45%);

  opacity: 0;

  transition: 0.5s ease;

}

.pricing-card:hover::before {

  opacity: 1;

}

/* MOBILE */

@media (max-width:980px){

  .pricing-grid {

    grid-template-columns: 1fr;

  }

}
.badge {

  position: absolute;

  top: 10px;

  left: 37px;

  padding: 6px 12px;

  border-radius: 999px;

  background: rgba(139,92,246,0.14);

  color: #c4b5fd;

  font-size: 10px;

  letter-spacing: 1px;

  border: 1px solid rgba(139,92,246,0.25);

  backdrop-filter: blur(10px);

  z-index: 5;
  box-shadow:
  0 0 20px rgba(139,92,246,0.18);

}

