:root {
    --dark1: #22002A;
    --dark2: #430053;
    --pastelpurple: #E8E0EC;
    --pastelorange : #FFE5D4;
    --red: #C61902;
    --orange: #F43429;
    --yellow: #FF9900;
    --white: #FFF6F0;
    --beige-light: #ECE3D5;
    --ffffff: #ffffff;
    --font-body: 'Montserrat';
    --font-heading: 'Righteous';
  }

  body {
    font-family: var(--font-body);
    background: var(--white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  

 /* === HEADER === */
 .blazed-header {
    background-color: var(--ffffff);
    padding: 1rem 1rem 1rem 1rem;
    max-width: 1400px;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);

    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
  }
  
  .logo {
    height: 40px;
    width: auto;
  }
  
  .btn-download {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(90deg, #22002A 0%, #430053 14.91%, #F43429 54.92%, #F90 89.93%); color: #fff;
    color: white;
    border-radius: 10px;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }

  .btn-download:hover {
    transform: scale(1.05);
  }
  

  
/* === HERO === */
  .hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('images/background-LP.png') center/cover no-repeat;
    display: flex;
    align-items: center;
  }
  
  .hero-inner {
  max-width: 1140px; 
  margin: 0 auto;
  padding: 9rem 2.5rem 5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem; 
  flex-wrap: wrap;
  }
  
  .hero-text {
    max-width: 600px;
    font-family: var(--font-heading);
    color: var(--dark1);
  }
  
  .hero-baseline {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    background: linear-gradient(90deg,#430053 10%, #F43429 45%, #FF9900 90%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
  
  .hero h1 {
    font-weight: 500;
    font-size: 2.5rem;
    color: var(--dark1);
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--dark1);
    margin-bottom: 2rem;
    line-height: 1.6;
  }  
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    padding: 1rem 3rem;
    text-align: center;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
  }  
  
  .btn-dark {
    background-color: var(--dark1);
    color: white;
  }
  
  .btn-dark:hover {
    background-color: var(--yellow);
    color: var(--ffffff);
  }
  
  .btn-light {
    background-color: var(--ffffff);
    color: var(--dark1);
  }
  
  .btn-light:hover {
    background-color: var(--yellow);
    color: var(--ffffff);
  }
  
  .hero-image img {
    max-width: 100%;
    width: 550px;
    height: auto;
  }
  
  
  /* Responsive */
  @media (max-width: 900px) {
    .entreprise-inner {
      flex-direction: column-reverse;
      text-align: center;
    }
  
    .entreprise-image img {
      margin-top: 2rem;
      width: 300px;
    }
  }


  /* === Section 1 === */
  .section-entreprise {
    padding: 2rem 2rem;
    max-width: 1400px;
    margin: auto;
  }
  
  .entreprise-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
  }
  
  .entreprise-text {
    max-width: 600px;
    font-family: var(--font-body);
    color: var(--dark1);
  }
  
  .entreprise-subtitle {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--red);
    margin-bottom: 1rem;
    font-family: var(--font-body);
  }
  
  .entreprise-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading)
  }
  
  .entreprise-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--dark1);
  }
  
  .entreprise-description strong {
    font-weight: bold;
  }
  
  .entreprise-cta {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .arrow {
    color: var(--dark1);
    font-size: 1.5rem;
  }
  
  .entreprise-cta {
    font-family: var(--font-body);
    background: linear-gradient(90deg,#430053 10%, #F43429 45%, #FF9900 90%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
  
  .entreprise-image img {
    max-width: 100%;
    width: 550px;
    height: auto;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .entreprise-inner {
      flex-direction: column-reverse;
      text-align: center;
    }
  
    .entreprise-image img {
      margin-top: 2rem;
      width: 300px;
    }
  }


   /* === Section 2 === */
   .section-entreprise {
    background-color: var(--white);
    padding: 2rem 2rem;
    max-width: 1400px;
    margin: 2rem auto;
  }
  
  .entreprise-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
  }
  
  .entreprise-text {
    max-width: 600px;
    font-family: var(--font-body);
    color: var(--dark1);
  }
  
  .entreprise-subtitle {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--red);
    margin-bottom: 1rem;
    font-family: var(--font-body);
  }
  
  .entreprise-text h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
  }
  
  .entreprise-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--dark1);
  }
  
  .entreprise-description strong {
    font-weight: bold;
  }
  
  .entreprise-cta {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .arrow {
    color: var(--dark1);
    font-size: 1.5rem;
  }
  
  .entreprise-cta {
    font-family: var(--font-body);
    background: linear-gradient(90deg,#430053 10%, #F43429 45%, #FF9900 90%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
  
  .entreprise-image img {
    max-width: 100%;
    width: 550px;
    height: auto;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .entreprise-inner {
      flex-direction: column-reverse;
      text-align: center;
    }
  
    .entreprise-image img {
      margin-top: 2rem;
      width: 300px;
    }
  }


  /* Section Nos Flammes */
  .section-offres {
    background-color: var(--dark1);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
  }
  
  .offres-subtitle {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--beige-light);
  }
  
  .section-offres h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .tab-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1em;
    font-weight: 500;
    font-family: var(--font-body);
    border: 2px solid var(--dark2);
    background-color: var(--ffffff);
    color: var(--dark1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .tab-btn.active {
    background: var(--yellow);
    color: var(--ffffff);
    border: none;
  }
  
  .tab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .freelance-cards, .entreprise-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hidden {
    display: none;
  }
  
  .card {
    background-color: white;
    color: var(--dark1);
    border-radius: 16px;
    padding: 2rem;
    width: 420px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: scale(1.05);
  }
  
  .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  
  .card h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    background: linear-gradient(90deg, #430053 10%, #F43429 45%, #FF9900 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
  }
  
  .price {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    background: var(--pastelpurple);
    color: var(--dark1);
    border-radius: 30px;
    border: 2px solid var(--dark1);
  }
  
  .card-description {
    font-size: 1rem;
    margin: 0 0 1rem 0;
  }
  
  .card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
  }
  
  .card-features li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
  }
  
  .card-btn {
    display: block;
    background-color: var(--dark2);
    color: white;
    font-weight: 700;
    padding: 0.8rem 5.5rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s ease;
  }
  
  .card-btn:hover {
    background-color: var(--orange);
  }


  /* === Section 4 (Newsletter) === */
  .newsletter {
    background-color: var(--white);
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 1rem auto;
  }
  
  .newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
  }
  
  .newsletter-left {
    flex: 1 1 50%;
  }
  
  .newsletter-right {
    flex: 1 1 40%;
    background-color: var(--beige-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }
  
  .newsletter-subtitle {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--red);
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .newsletter-title {
    font-family: var(--font-heading);
    color: var(--dark1);
    font-weight: 500;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
  }
  
  .newsletter-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--dark1);
  }
  
  .newsletter-cta {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
  }
  
  .arrow {
    color: var(--dark1);
    font-size: 1.5rem;
  }
  
  .cta-gradient {
    background: linear-gradient(90deg, #430053 10%, #F43429 45%, #FF9900 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: x-large;
  }
  
  .newsletter-form input {
    font-family: var(--font-body);
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--dark1);
    border-radius: 10px;
    outline: none;
  }
  
  .newsletter-form input::placeholder {
    color: var(--pastelpurple);
  }
  
  .btn-newsletter {
    font-family: var(--font-body);
    padding: 1rem;
    background-color: var(--dark1);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn-newsletter:hover {
    background-color: var(--orange);
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .newsletter-inner {
      flex-direction: column;
    }
  
    .newsletter-right {
      width: 100%;
    }
  }
  

 /* === Section 5 (FAQ) === */
  .faq {
    background-color: var(--white);
    padding: 2rem 3rem;
    max-width: 1400px;
    margin: 1rem auto;
    text-align: center;
  }
  
  .faq-subtitle {
    color: var(--red);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .faq-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 2.5rem;
    color: var(--dark1);
    margin-bottom: 3rem;
  }
  
  .faq-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .faq-column {
    flex: 1 1 400px;
    padding: 0em 2rem 1em;
    border-radius: 12px;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 100;
    font-size: x-large;
  }
  
  .faq-freelance {
    background-color: var(--pastelpurple);
    color:  var(--dark2);
    font-weight: 500;
  }
  
  .faq-entreprise {
    background-color: var(--pastelorange);
    color:  var(--dark2);
    font-weight: 500;
  }
  
  .faq-item {
    margin-bottom: 1rem;
  }
  
  .faq-question {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  
  .faq-question:hover {
    background-color: #f7f7f7;
  }
  
  .arrow {
    transition: transform 0.3s ease;
    font-weight: bold;
  }
  
  .faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark1);
    padding: 0 1rem;
  }
  
  /* Quand FAQ ouverte */
  .faq-item.active .arrow {
    transform: rotate(90deg); /* Fleche vers le bas */
  }
  
  .faq-item.active .faq-answer {
    padding: 1rem;
  }
  

  /* === Section 6 === */
  .mascot-section {
    text-align: center;
    padding: 2rem 2rem;
  }
  
  .mascot-image {
    max-width: 520px;
    width: 100%;
    height: auto;
  }
  
  .mascot-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    color: var(--dark1);
    line-height: 1.3;
  }



  /* === Footer === */
  .footer {
    background-color: var(--orange);
    color: var(--ffffff);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 4rem 8rem;
    gap: 2rem;
  }
  
  .footer-left {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-logo {
    width: 140px;
    margin-bottom: 2rem;
  }
  
  .footer-contact {
    background-color: var(--ffffff);
    padding: 0em 2rem 2em;
    border-radius: 12px;
    text-align: center;
  }
  
  .footer-contact p {
    font-family: var(--font-heading);
    font-size: x-large;
    color: var(--dark1);
    margin-bottom: 1rem;
  }
  
  .footer-button {
    display: inline-block;
    background: linear-gradient(90deg, #22002A 0%, #430053 14.91%, #F43429 54.92%, #F90 89.93%);
    color: var(--ffffff);
    text-decoration: none;
    padding: 0.75rem 5.5rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-family: var(--font-body);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }
  
  .footer-button:hover {
    background: linear-gradient(90deg, #22002A 0%, #430053 14.91%, #F43429 54.92%, #F90 89.93%); color: #fff;
    color: white;
    border-radius: 10px;
    transition: transform 0.2s ease;
    transform: scale(1.05);
  }
  
  .footer-links {
    display: flex;
    flex: 2 1 600px;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .footer-column {
    min-width: 120px;
  }
  
  .footer-column h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .footer-column ul {
    font-family: var(--font-body);
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
    font-weight: 400;
  }
  
  .footer-column a {
    color: white;
    text-decoration: none;
  }
  
  .footer-column a:hover {
    text-decoration: none;
    color: var(--dark1);
  }
  
  
  
  
  
  
  
  
  
  
  


  
  