  :root {
      /* Backgrounds */
      --bg: #0b0b0d;
      --bg2: #070708;

      /* Text */
      --text: #f2f2f4;
      --muted: #c7c7cc;
      --muted2: #9a9aa1;

      /* Accents */
      --accent: #2f2f33;
      --accent2: #df437c;

      /* Cards & borders */
      --card: rgba(255,255,255,.05);
      --stroke: rgba(255,255,255,.10);

      /* Effects */
      --shadow: 0 20px 60px rgba(0,0,0,.55);
      --glow: 0 0 40px rgba(223, 67, 124, 0.15);

      /* Layout */
      --radius: 18px;
      --radius2: 22px;
      --container: 1120px;
    }


    h1, h2, h3, h4 {
      color: #ffffff;
      line-height: 1.2;
      margin-bottom: 1rem;
      font-weight: 700;
    }

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

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }

    section {
      padding: 6rem 0;
      position: relative;
    }

    /* Décoration d'arrière-plan (Glow) */
    .bg-ambient {
      position: absolute;
      top: 0;
      left: 50%;
      width: 100vw;
      height: 600px;
      background: radial-gradient(circle at top, var(--glow) 0%, transparent 60%);
      transform: translateX(-50%);
      z-index: -1;
      pointer-events: none;
    }

    /* --- BUTTONS --- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--accent2);
      color: #ffffff;
      padding: 0.8rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid transparent;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      cursor: pointer;
    }

    .btn:hover {
      background: transparent;
      border-color: var(--accent2);
      color: var(--accent2);
      box-shadow: 0 0 20px rgba(223, 67, 124, 0.2);
      transform: translateY(-2px);
    }

    /* --- HEADER (SIMPLE) --- */
    header {
      padding: 2rem 0;
      text-align: center;
      border-bottom: 1px solid var(--stroke);
      background: rgba(11, 11, 13, 0.8);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    /* --- HERO SECTION --- */
    .services__hero {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 4rem;
    }

    .services__hero h1 {
      font-size: 3.5rem;
      background: linear-gradient(135deg, #ffffff 0%, var(--muted2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -1px;
    }

    .services__hero p {
      font-size: 1.125rem;
      color: var(--muted);
    }

    /* --- GRIDS --- */
    .grid-layout {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      position: relative;
      z-index: 1;
    }

    /* --- CARDS (SERVICES & WHY) --- */
    .card {
      background: var(--card);
      border: 1px solid var(--stroke);
      border-radius: var(--radius);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .card:hover {
      transform: translateY(-10px);
      border-color: rgba(223, 67, 124, 0.4);
      box-shadow: var(--shadow);
      background: rgba(255, 255, 255, 0.08);
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: calc(var(--radius) - 8px);
      margin-bottom: 1.5rem;
      background: var(--accent);
      transition: transform 0.5s ease;
    }

    .card:hover img {
      transform: scale(1.03);
    }

    .card h3 {
      font-size: 1.5rem;
    }

    .card ul {
      list-style: none;
      margin-bottom: 2rem;
      flex-grow: 1;
    }

    .card ul li {
      position: relative;
      padding-left: 1.8rem;
      margin-bottom: 0.8rem;
      color: var(--muted);
      font-size: 1rem;
    }

    .card ul li::before {
      content: "✦";
      position: absolute;
      left: 0;
      color: var(--accent2);
      font-size: 1.2rem;
      top: -2px;
    }

    .card .btn {
      margin-top: auto;
    }

    /* --- WHY SECTION CUSTOM STYLES --- */
    .why {
      background-color: var(--bg2);
      border-top: 1px solid var(--stroke);
      border-bottom: 1px solid var(--stroke);
    }

    .why h2 {
      font-size: 2.5rem;
      text-align: center;
    }

    .why__intro {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 3rem;
      font-size: 1.125rem;
    }

    p.highlight {
      color: var(--text);
      font-weight: 600;
      border-left: 3px solid var(--accent2);
      padding-left: 1rem;
      margin-top: auto;
    }

    /* --- PRICING SECTION --- */
    .pricing__header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .pricing__header h2 {
      font-size: 3rem;
    }

    .plan {
      background: var(--card);
      border: 1px solid var(--stroke);
      border-radius: var(--radius2);
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .plan:hover {
      transform: translateY(-8px);
      border-color: rgba(223, 67, 124, 0.3);
      box-shadow: var(--shadow), 0 0 30px rgba(223, 67, 124, 0.05);
      background: rgba(255, 255, 255, 0.07);
    }

    .plan--featured {
      border-color: var(--accent2);
      background: linear-gradient(180deg, rgba(223,67,124,0.08) 0%, var(--card) 100%);
    }

    .plan--featured:hover {
      border-color: var(--accent2);
      box-shadow: var(--shadow), 0 0 40px rgba(223, 67, 124, 0.15);
    }

    .plan__tag {
      position: absolute;
      top: 0;
      right: 0;
      background: var(--accent2);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 0.5rem 1.2rem;
      border-bottom-left-radius: var(--radius);
      box-shadow: 0 5px 15px rgba(223, 67, 124, 0.3);
    }

    .plan__head {
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--stroke);
    }

    .plan__title {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #fff;
    }

    .plan__subtitle {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .plan__subtitle strong {
      color: var(--muted2);
      display: block;
      margin-top: 0.5rem;
      font-size: 0.85rem;
    }

    .plan__price {
      display: flex;
      align-items: flex-end;
      gap: 0.5rem;
      margin: 1.5rem 0 0.5rem 0;
    }

    .plan__amount {
      font-size: 2.25rem;
      font-weight: 800;
      line-height: 1;
      color: #fff;
    }

    .plan__tax {
      font-size: 0.9rem;
      color: var(--muted2);
      font-weight: 500;
      margin-bottom: 0.2rem;
    }

    .plan__meta {
      font-size: 0.85rem;
      color: var(--accent2);
      font-weight: 600;
    }

    .plan__list {
      list-style: none;
      margin-bottom: 2.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .plan__list p {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin: 0.5rem 0;
    }

    .plan__list li {
      font-size: 0.95rem;
      color: var(--text);
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      line-height: 1.5;
    }

    .check {
      color: var(--accent2);
      font-weight: 800;
      font-size: 1.1rem;
      line-height: 1.2;
      flex-shrink: 0;
    }

    /* Specifique au bouton dans la carte Prix */
    .plan .btn {
      width: 100%;
      border-radius: var(--radius);
      margin-top: auto;
      padding: 1rem 1.5rem;
    }

    /* --- CTA SECTION --- */
    .services-cta {
      text-align: center;
      padding: 8rem 0;
    }

    .services-cta h2 {
      font-size: 3rem;
    }

    .services-cta p {
      max-width: 600px;
      margin: 0 auto 2.5rem;
      font-size: 1.125rem;
    }

    .services-cta .btn {
      font-size: 1.1rem;
      padding: 1rem 2.5rem;
    }

    /* --- SCROLL ANIMATIONS --- */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .services__hero h1, .services-cta h2, .pricing__header h2 { font-size: 2.5rem; }
      .why h2 { font-size: 2rem; }
      section { padding: 4rem 0; }
      .grid-layout { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .plan { padding: 1.5rem; }
      .plan__amount { font-size: 1.8rem; }
      .plan__title { font-size: 1.5rem; }
    }
    
    @media (max-width: 350px) {
      .plan__tag { font-size: 0.7rem; padding: 0.4rem 0.8rem; }
      .plan__amount { font-size: 1.6rem; }
      .plan__list li { font-size: 0.9rem; }
    }