/* CSS spécifique pour /gestion-de-projet-evenementiel - extrait depuis la version live */

/* Bloc #1 */
/* Base Variables */
    :root {
      --primary-dark: #131521;
      --primary-light: #FAF2E5;
      --accent-green: #76E49B;
      --accent-purple: #423ABB;
      --text-light: #FAF2E5;
      --text-secondary: rgba(250, 242, 229, 0.7);
      --spacing-xs: 0.5rem;
      --spacing-sm: 1rem;
      --spacing-md: 2rem;
      --spacing-lg: 4rem;
      --spacing-xl: 8rem;
      --border-radius: 4px;
      --transition-normal: 0.3s ease;
    }
    
    body {
      margin: 0;
      padding: 0;
      font-family: 'Schibsted Grotesk', sans-serif;
      color: var(--text-light);
      background-color: var(--primary-dark);
      overflow-x: hidden;
    }
    
    /* Hero Section Styles */
    .hero-section {
      position: relative;
      min-height: 100vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      background-color: var(--primary-dark);
      padding: 0 var(--spacing-md);
      z-index: 1;
    }
    
    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("/images/noise-pattern.png");
      background-size: 200px;
      background-repeat: repeat;
      opacity: 0.05;
      z-index: -1;
    }
    
    .hero-diagonal {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 15vw;
      background-color: var(--primary-dark);
      transform: skewY(-3deg);
      transform-origin: bottom left;
      z-index: -1;
      border-top: 1px solid rgba(118, 228, 155, 0.1);
    }
    
    .hero-content {
      max-width: 1200px;
      width: 100%;
      z-index: 2;
      padding: var(--spacing-lg) 0;
      position: relative;
    }
    
    .hero-subtitle {
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1.1rem;
      color: var(--accent-green);
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: var(--spacing-sm);
      font-weight: 400;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s ease forwards 0.2s;
    }
    
    .hero-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 4.5rem;
      line-height: 1.1;
      margin-bottom: var(--spacing-md);
      font-weight: 700;
      max-width: 800px;
      text-transform: uppercase;
      color: var(--text-light);
      position: relative;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.4s;
    }
    
    .hero-title span {
      color: var(--accent-green);
    }
    
    .hero-description {
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1.2rem;
      line-height: 1.8;
      margin-bottom: var(--spacing-lg);
      color: var(--text-secondary);
      max-width: 650px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.6s;
    }
    
    .hero-location {
      color: var(--accent-green);
      font-weight: 600;
      transition: all var(--transition-normal);
    }
    
    .hero-location:hover {
      color: var(--accent-purple);
    }
    
    .hero-cta-container {
      display: flex;
      gap: var(--spacing-md);
      margin-top: var(--spacing-md);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.8s;
    }
    
    .hero-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 15px 35px;
      background: var(--accent-green);
      color: var(--primary-dark);
      border: none;
      border-radius: var(--border-radius);
      font-family: 'Broad Sans', sans-serif;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 1rem;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all var(--transition-normal);
      text-decoration: none;
    }
    
    .hero-cta:hover {
      background: var(--accent-purple);
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    
    .hero-cta.secondary {
      background: transparent;
      border: 2px solid var(--accent-green);
      color: var(--text-light);
    }
    
    .hero-cta.secondary:hover {
      background: rgba(118, 228, 155, 0.1);
      border-color: var(--accent-purple);
      color: var(--text-light);
    }
    
    /* Event type pills */
    .event-types {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: var(--spacing-lg);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.7s;
    }
    
    .event-type-pill {
      padding: 10px 18px;
      background: rgba(118, 228, 155, 0.1);
      border: 1px solid rgba(118, 228, 155, 0.3);
      border-radius: 30px;
      font-size: 14px;
      font-weight: 500;
      color: var(--accent-green);
      transition: all var(--transition-normal);
    }
    
    .event-type-pill:hover {
      background: rgba(118, 228, 155, 0.2);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .hero-image-container {
      position: absolute;
      right: -80px;
      top: 50%;
      transform: translateY(-50%);
      width: 550px;
      height: 550px;
      z-index: -1;
      opacity: 0;
      animation: fadeIn 1s ease forwards 1s;
    }
    
    .hero-image {
      width: 100%;
      height: 100%;
      position: relative;
    }
    
    .hero-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(118, 228, 155, 0.15) 0%, rgba(19, 21, 33, 0) 70%);
      z-index: -1;
    }
    
    .hero-dots {
      position: absolute;
      width: 300px;
      height: 300px;
      background-image: radial-gradient(var(--accent-green) 2px, transparent 2px);
      background-size: 20px 20px;
      opacity: 0.1;
    }
    
    .hero-dots-1 {
      top: 20%;
      right: 10%;
      animation: float 20s infinite linear;
    }
    
    .hero-dots-2 {
      bottom: 15%;
      left: 5%;
      animation: float 25s infinite linear reverse;
    }
    
    .scroll-indicator {
      position: absolute;
      bottom: 60px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      opacity: 0;
      animation: fadeIn 0.8s ease forwards 1.5s;
      z-index: 10;
    }
    
    .scroll-text {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: var(--spacing-xs);
      color: var(--text-secondary);
      font-family: 'Schibsted Grotesk', sans-serif;
    }
    
    .scroll-icon {
      width: 30px;
      height: 50px;
      border: 2px solid var(--accent-green);
      border-radius: 15px;
      position: relative;
      overflow: hidden;
    }
    
    .scroll-icon::before {
      content: '';
      position: absolute;
      top: 5px;
      left: 50%;
      width: 6px;
      height: 6px;
      background: var(--accent-green);
      border-radius: 50%;
      transform: translateX(-50%);
      animation: scrollDown 2s infinite;
    }
    
    /* Animations */
    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }
    
    @keyframes scrollDown {
      0% {
        top: 5px;
        opacity: 1;
      }
      50% {
        top: 25px;
        opacity: 0.5;
      }
      100% {
        top: 5px;
        opacity: 1;
      }
    }
    
    @keyframes float {
      0% {
        transform: translate(0, 0) rotate(0deg);
      }
      50% {
        transform: translate(30px, 20px) rotate(180deg);
      }
      100% {
        transform: translate(0, 0) rotate(360deg);
      }
    }
    
    /* Abstract shapes */
    .shape {
      position: absolute;
      z-index: -1;
    }
    
    .shape-circle {
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(118, 228, 155, 0.1), rgba(66, 58, 187, 0.1));
      top: 20%;
      right: 10%;
      animation: float 20s infinite ease-in-out alternate;
    }
    
    .shape-square {
      width: 200px;
      height: 200px;
      background: rgba(118, 228, 155, 0.05);
      transform: rotate(45deg);
      bottom: 10%;
      left: 5%;
      animation: float 25s infinite ease-in-out alternate-reverse;
    }
    
    /* Media Queries */
    @media (max-width: 1280px) {
      .hero-image-container {
        width: 450px;
        height: 450px;
        right: -60px;
      }
      
      .hero-title {
        font-size: 4rem;
      }
    }
    
    @media (max-width: 992px) {
      .hero-content {
        text-align: center;
      }
      
      .hero-title, .hero-description {
        max-width: 100%;
      }
      
      .hero-image-container {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto var(--spacing-lg);
        order: -1;
      }
      
      .hero-section {
        padding-top: var(--spacing-xl);
        justify-content: flex-start;
      }
      
      .hero-cta-container {
        justify-content: center;
      }
      
      .event-types {
        justify-content: center;
      }
    }
    
    @media (max-width: 768px) {
      .hero-title {
        font-size: 3rem;
      }
      
      .hero-cta-container {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
      }
      
      .hero-cta {
        width: 100%;
      }
    }
    
    @media (max-width: 576px) {
      .hero-title {
        font-size: 2.5rem;
      }
      
      .hero-subtitle {
        font-size: 1rem;
      }
      
      .hero-description {
        font-size: 1rem;
      }
    }

/* Bloc #2 */
/* Process Timeline Section Styles */
    .process-timeline-section {
      position: relative;
      padding: var(--spacing-xl) var(--spacing-md);
      background-color: var(--primary-dark);
      overflow: hidden;
    }
    
    .process-timeline-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("/images/noise-pattern.png");
      background-size: 200px;
      background-repeat: repeat;
      opacity: 0.05;
      z-index: 0;
    }
    
    .process-heading-container {
      text-align: center;
      margin-bottom: var(--spacing-xl);
      position: relative;
      z-index: 1;
    }
    
    .process-heading {
      font-family: 'Broad Sans', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: var(--spacing-sm);
      text-transform: uppercase;
      position: relative;
      display: inline-block;
    }
    
    .process-heading span {
      color: var(--accent-green);
    }
    
    .process-heading::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--accent-green);
    }
    
    .process-subtitle {
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1.2rem;
      color: var(--text-secondary);
      max-width: 700px;
      margin: var(--spacing-md) auto 0;
      line-height: 1.7;
    }
    
    .timeline-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    
    .timeline-track {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background: linear-gradient(to bottom, var(--accent-green), var(--accent-purple));
      transform: translateX(-50%);
    }
    
    .timeline-items {
      position: relative;
    }
    
    .timeline-item {
      display: flex;
      margin-bottom: var(--spacing-xl);
      position: relative;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .timeline-item.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .timeline-item:nth-child(odd) {
      justify-content: flex-end;
    }
    
    .timeline-item:last-child {
      margin-bottom: 0;
    }
    
    .timeline-content {
      width: 45%;
      padding: var(--spacing-md);
      background: rgba(19, 21, 33, 0.5);
      border: 1px solid rgba(118, 228, 155, 0.1);
      border-radius: var(--border-radius);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      position: relative;
      backdrop-filter: blur(10px);
      transition: all var(--transition-normal);
    }
    
    .timeline-content:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      border-color: rgba(118, 228, 155, 0.3);
    }
    
    .timeline-marker {
      position: absolute;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 40px;
      background: var(--primary-dark);
      border: 4px solid var(--accent-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      font-family: 'Broad Sans', sans-serif;
      font-weight: 700;
      color: var(--accent-green);
      font-size: 18px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before {
      content: '';
      position: absolute;
      top: 30px;
      right: -15px;
      width: 0;
      height: 0;
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
      border-left: 15px solid rgba(19, 21, 33, 0.5);
    }
    
    .timeline-item:nth-child(even) .timeline-content::before {
      content: '';
      position: absolute;
      top: 30px;
      left: -15px;
      width: 0;
      height: 0;
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
      border-right: 15px solid rgba(19, 21, 33, 0.5);
    }
    
    .timeline-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--accent-green);
      margin-bottom: var(--spacing-sm);
      text-transform: uppercase;
    }
    
    .timeline-description {
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: var(--spacing-sm);
    }
    
    .timeline-bullets {
      list-style: none;
      margin-top: var(--spacing-sm);
    }
    
    .timeline-bullets li {
      position: relative;
      padding-left: 24px;
      margin-bottom: 12px;
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }
    
    .timeline-bullets li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 10px;
      height: 10px;
      background: var(--accent-green);
      border-radius: 50%;
    }
    
    .timeline-info {
      display: inline-block;
      margin-top: var(--spacing-sm);
      padding: 8px 16px;
      background: rgba(118, 228, 155, 0.1);
      border-radius: 20px;
      font-size: 0.9rem;
      color: var(--accent-green);
    }
    
    .timeline-info-icon {
      display: inline-block;
      margin-right: 8px;
      vertical-align: middle;
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
      .process-heading {
        font-size: 2.5rem;
      }
      
      .timeline-track {
        left: 30px;
      }
      
      .timeline-item {
        justify-content: flex-start !important;
        padding-left: 80px;
      }
      
      .timeline-marker {
        left: 30px;
      }
      
      .timeline-content {
        width: 100%;
      }
      
      .timeline-item:nth-child(odd) .timeline-content::before {
        display: none;
      }
      
      .timeline-item:nth-child(even) .timeline-content::before {
        display: none;
      }
    }
    
    @media (max-width: 768px) {
      .process-heading {
        font-size: 2.2rem;
      }
      
      .process-subtitle {
        font-size: 1.1rem;
      }
    }
    
    @media (max-width: 576px) {
      .process-heading {
        font-size: 2rem;
      }
      
      .timeline-content {
        padding: var(--spacing-sm);
      }
      
      .timeline-title {
        font-size: 1.5rem;
      }
      
      .timeline-item {
        padding-left: 60px;
      }
      
      .timeline-track {
        left: 20px;
      }
      
      .timeline-marker {
        left: 20px;
        width: 30px;
        height: 30px;
        font-size: 14px;
      }
    }
    
    /* Timeline animation triggers */
    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    .timeline-item:nth-child(odd).visible .timeline-content {
      animation: fadeInRight 0.6s ease forwards;
    }
    
    .timeline-item:nth-child(even).visible .timeline-content {
      animation: fadeInLeft 0.6s ease forwards;
    }

/* Bloc #3 */
/* Advantages Section Styles */
    .advantages-section {
      position: relative;
      padding: var(--spacing-xl) 0;
      background-color: var(--primary-dark);
      overflow: hidden;
      z-index: 1;
    }
    
    .advantages-diagonal-top {
      position: absolute;
      top: -15vw;
      left: 0;
      width: 100%;
      height: 15vw;
      background-color: var(--primary-dark);
      transform: skewY(3deg);
      transform-origin: top right;
      z-index: -1;
      border-bottom: 1px solid rgba(118, 228, 155, 0.1);
    }
    
    .advantages-diagonal-bottom {
      position: absolute;
      bottom: -15vw;
      left: 0;
      width: 100%;
      height: 15vw;
      background-color: var(--primary-dark);
      transform: skewY(-3deg);
      transform-origin: bottom left;
      z-index: 0;
      border-top: 1px solid rgba(118, 228, 155, 0.1);
    }
    
    .advantages-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-md);
      position: relative;
      z-index: 2;
    }
    
    .advantages-title-wrap {
      text-align: center;
      margin-bottom: var(--spacing-lg);
    }
    
    .advantages-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: var(--spacing-sm);
      text-transform: uppercase;
      color: var(--text-light);
      position: relative;
      display: inline-block;
    }
    
    .advantages-title span {
      color: var(--accent-green);
    }
    
    .advantages-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--accent-green);
    }
    
    .advantages-subtitle {
      color: var(--text-secondary);
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1.1rem;
      max-width: 800px;
      margin: var(--spacing-md) auto 0;
      line-height: 1.7;
    }
    
    .advantages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-lg);
      margin-top: var(--spacing-lg);
    }
    
    .advantage-item {
      display: flex;
      flex-direction: column;
      position: relative;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .advantage-item.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .advantage-item:nth-child(2) {
      transition-delay: 0.2s;
    }
    
    .advantage-item:nth-child(3) {
      transition-delay: 0.4s;
    }
    
    .advantage-item:nth-child(4) {
      transition-delay: 0.1s;
    }
    
    .advantage-item:nth-child(5) {
      transition-delay: 0.3s;
    }
    
    .advantage-icon {
      width: 70px;
      height: 70px;
      background: rgba(118, 228, 155, 0.1);
      border: 1px solid rgba(118, 228, 155, 0.2);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--spacing-sm);
      position: relative;
      transition: all var(--transition-normal);
    }
    
    .advantage-item:hover .advantage-icon {
      transform: translateY(-5px);
      background: rgba(118, 228, 155, 0.15);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .advantage-icon::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--accent-green);
      opacity: 0.05;
      border-radius: 15px;
      z-index: -1;
      transition: all var(--transition-normal);
    }
    
    .advantage-item:hover .advantage-icon::before {
      transform: scale(1.1) rotate(-5deg);
    }
    
    .advantage-icon svg {
      width: 32px;
      height: 32px;
      fill: var(--accent-green);
    }
    
    .advantage-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: var(--spacing-xs);
      color: var(--text-light);
      position: relative;
    }
    
    .advantage-description {
      color: var(--text-secondary);
      line-height: 1.6;
      font-family: 'Schibsted Grotesk', sans-serif;
    }
    
    .advantage-item::after {
      content: '';
      position: absolute;
      bottom: -20px;
      left: 0;
      width: 40px;
      height: 3px;
      background: var(--accent-green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition-normal);
    }
    
    .advantage-item:hover::after {
      transform: scaleX(1);
    }
    
    /* Featured advantage styles */
    .advantage-featured {
      grid-column: span 3;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-lg);
      background: rgba(19, 21, 33, 0.6);
      border: 1px solid rgba(118, 228, 155, 0.1);
      border-radius: var(--border-radius);
      padding: var(--spacing-lg);
      position: relative;
      overflow: hidden;
      margin-top: var(--spacing-lg);
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .advantage-featured.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .advantage-featured:hover {
      border-color: var(--accent-green);
    }
    
    .advantage-featured-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.05;
      z-index: -1;
      background-size: cover;
      background-position: center;
      background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H100V100H0V0Z' fill='%2376E49B' fill-opacity='0.1'/%3E%3Cpath d='M100 0H0V100' stroke='%2376E49B' stroke-opacity='0.2' stroke-width='0.5'/%3E%3C/svg%3E");
      background-size: 20px;
      transition: all var(--transition-normal);
    }
    
    .advantage-featured:hover .advantage-featured-bg {
      opacity: 0.08;
      transform: scale(1.05);
    }
    
    .advantage-featured-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .advantage-featured-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: var(--spacing-sm);
      color: var(--text-light);
      position: relative;
      display: inline-block;
    }
    
    .advantage-featured-title::before {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 40px;
      height: 3px;
      background: var(--accent-green);
    }
    
    .advantage-featured-description {
      color: var(--text-secondary);
      line-height: 1.6;
      font-family: 'Schibsted Grotesk', sans-serif;
      margin-bottom: var(--spacing-md);
    }
    
    .advantage-featured-image {
      background: linear-gradient(135deg, rgba(118, 228, 155, 0.1), rgba(66, 58, 187, 0.1));
      border-radius: var(--border-radius);
      position: relative;
      overflow: hidden;
      height: 100%;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .advantage-featured-image svg {
      width: 70%;
      height: auto;
      fill: var(--accent-green);
      opacity: 0.2;
    }
    
    /* Background elements */
    .advantages-bg-element {
      position: absolute;
      z-index: -1;
    }
    
    .advantages-circle {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(118, 228, 155, 0.1) 0%, rgba(19, 21, 33, 0) 70%);
      border-radius: 50%;
      top: 10%;
      right: -200px;
    }
    
    .advantages-dots {
      width: 250px;
      height: 250px;
      background-image: radial-gradient(var(--accent-green) 1px, transparent 1px);
      background-size: 20px 20px;
      opacity: 0.05;
      bottom: 10%;
      left: 5%;
    }
    
    /* Responsive Styles */
    @media (max-width: 1200px) {
      .advantages-grid {
        gap: var(--spacing-md);
      }
    }
    
    @media (max-width: 992px) {
      .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .advantages-title {
        font-size: 2.5rem;
      }
      
      .advantage-featured {
        grid-column: span 2;
        grid-template-columns: 1fr;
      }
      
      .advantage-featured-image {
        min-height: 250px;
        order: -1;
      }
      
      .advantage-featured-content {
        padding: 0;
      }
    }
    
    @media (max-width: 768px) {
      .advantages-grid {
        grid-template-columns: 1fr;
      }
      
      .advantage-featured {
        grid-column: span 1;
      }
      
      .advantages-title {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 576px) {
      .advantage-icon {
        width: 60px;
        height: 60px;
      }
      
      .advantage-icon svg {
        width: 24px;
        height: 24px;
      }
      
      .advantage-title {
        font-size: 1.3rem;
      }
    }

/* Bloc #4 */
/* Approach Section Styles */
    .approach-section {
      position: relative;
      padding: var(--spacing-xl) 0;
      background-color: var(--primary-dark);
      overflow: hidden;
      z-index: 1;
    }
    
    .approach-diagonal-top {
      position: absolute;
      top: -15vw;
      left: 0;
      width: 100%;
      height: 15vw;
      background-color: var(--primary-dark);
      transform: skewY(-3deg);
      transform-origin: top left;
      z-index: -1;
      border-bottom: 1px solid rgba(118, 228, 155, 0.1);
    }
    
    .approach-diagonal-bottom {
      position: absolute;
      bottom: -15vw;
      left: 0;
      width: 100%;
      height: 15vw;
      background-color: var(--primary-dark);
      transform: skewY(3deg);
      transform-origin: bottom right;
      z-index: 0;
      border-top: 1px solid rgba(118, 228, 155, 0.1);
    }
    
    .approach-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-md);
      position: relative;
      z-index: 2;
    }
    
    .approach-title-wrap {
      text-align: center;
      margin-bottom: var(--spacing-lg);
    }
    
    .approach-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: var(--spacing-md);
      text-transform: uppercase;
      color: var(--text-light);
      position: relative;
      display: inline-block;
    }
    
    .approach-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(to right, var(--accent-green), var(--accent-purple));
      border-radius: 2px;
    }
    
    .approach-subtitle {
      color: var(--text-secondary);
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
    }
    
    .approach-tabs {
      display: flex;
      justify-content: center;
      gap: var(--spacing-sm);
      margin-top: var(--spacing-lg);
      margin-bottom: var(--spacing-lg);
      position: relative;
      z-index: 2;
    }
    
    .approach-tab {
      padding: 15px 25px;
      background: transparent;
      border: 2px solid rgba(118, 228, 155, 0.2);
      border-radius: var(--border-radius);
      color: var(--text-light);
      font-family: 'Broad Sans', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      cursor: pointer;
      transition: all var(--transition-normal);
      min-width: 200px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .approach-tab::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--accent-green);
      opacity: 0;
      transition: opacity var(--transition-normal);
      z-index: -1;
    }
    
    .approach-tab:hover {
      border-color: var(--accent-green);
      color: var(--text-light);
      transform: translateY(-3px);
    }
    
    .approach-tab:hover::before {
      opacity: 0.1;
    }
    
    .approach-tab.active {
      background: var(--accent-green);
      border-color: var(--accent-green);
      color: var(--primary-dark);
    }
    
    .approach-tab.active::before {
      opacity: 1;
    }
    
    .approach-content-wrap {
      position: relative;
    }
    
    .approach-content {
      opacity: 0;
      visibility: hidden;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    
    .approach-content.active {
      opacity: 1;
      visibility: visible;
      position: relative;
    }
    
    .approach-step-header {
      background: rgba(19, 21, 33, 0.6);
      border: 1px solid rgba(118, 228, 155, 0.1);
      border-radius: var(--border-radius);
      padding: var(--spacing-md) var(--spacing-lg);
      margin-bottom: var(--spacing-lg);
      transition: all var(--transition-normal);
    }
    
    .approach-step-header:hover {
      border-color: var(--accent-green);
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .approach-step-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: var(--spacing-sm);
      color: var(--text-light);
      position: relative;
      display: inline-block;
    }
    
    .approach-step-title::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 40px;
      height: 3px;
      background: var(--accent-green);
    }
    
    .approach-step-desc {
      color: var(--text-secondary);
      line-height: 1.6;
      font-family: 'Schibsted Grotesk', sans-serif;
      margin-bottom: 0;
    }
    
    /* Step content styling */
    .approach-step-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-lg);
      margin-bottom: var(--spacing-lg);
    }
    
    .approach-step-content-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .approach-step-content-text p {
      color: var(--text-secondary);
      line-height: 1.6;
      font-family: 'Schibsted Grotesk', sans-serif;
      margin-bottom: var(--spacing-md);
    }
    
    .approach-step-items {
      max-width: 600px;
    }
    
    .approach-step-item {
      margin-bottom: var(--spacing-md);
      padding-left: var(--spacing-md);
      position: relative;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .approach-step-item.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .approach-step-item:last-child {
      margin-bottom: 0;
    }
    
    .approach-step-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 8px;
      height: 8px;
      background: var(--accent-green);
      border-radius: 50%;
    }
    
    .approach-step-item-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 5px;
      color: var(--text-light);
    }
    
    .approach-step-item-desc {
      color: var(--text-secondary);
      line-height: 1.6;
      font-family: 'Schibsted Grotesk', sans-serif;
    }
    
    .approach-step-visualization {
      background: rgba(19, 21, 33, 0.4);
      border: 1px solid rgba(118, 228, 155, 0.1);
      border-radius: var(--border-radius);
      overflow: hidden;
      position: relative;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      transition: all var(--transition-normal);
    }
    
    .approach-step-visualization:hover {
      border-color: var(--accent-green);
    }
    
    .approach-process {
      max-width: 100%;
      padding: var(--spacing-md);
    }
    
    .process-steps {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      position: relative;
      margin: var(--spacing-lg) 0;
    }
    
    .process-line {
      position: absolute;
      top: 25px;
      left: 40px;
      right: 40px;
      height: 2px;
      background: var(--accent-green);
      opacity: 0.3;
      z-index: 1;
    }
    
    .process-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 2;
      width: 80px;
    }
    
    .process-step-number {
      width: 50px;
      height: 50px;
      background: var(--primary-dark);
      border: 2px solid var(--accent-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Broad Sans', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--accent-green);
      margin-bottom: 10px;
      transition: all var(--transition-normal);
    }
    
    .process-step:hover .process-step-number {
      background: var(--accent-green);
      color: var(--primary-dark);
      transform: scale(1.1);
    }
    
    .process-step-text {
      text-align: center;
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 0.9rem;
      color: var(--text-light);
    }
    
    /* Background elements */
    .approach-bg-element {
      position: absolute;
      z-index: -1;
    }
    
    .approach-wave {
      width: 400px;
      height: 400px;
      background-color: var(--accent-green);
      border-radius: 65% 35% 65% 35% / 35% 65% 35% 65%;
      opacity: 0.03;
      top: 20%;
      right: -200px;
      animation: morphWave 15s infinite alternate ease-in-out;
    }
    
    @keyframes morphWave {
      0% {
        border-radius: 65% 35% 65% 35% / 35% 65% 35% 65%;
      }
      50% {
        border-radius: 35% 65% 35% 65% / 65% 35% 65% 35%;
      }
      100% {
        border-radius: 65% 35% 65% 35% / 35% 65% 35% 65%;
      }
    }
    
    .approach-dots {
      width: 300px;
      height: 300px;
      background-image: radial-gradient(var(--accent-green) 1px, transparent 1px);
      background-size: 20px 20px;
      opacity: 0.05;
      bottom: 15%;
      left: 5%;
    }
    
    /* Responsive Styles */
    @media (max-width: 1200px) {
      .process-line {
        left: 30px;
        right: 30px;
      }
    }
    
    @media (max-width: 992px) {
      .approach-tabs {
        flex-wrap: wrap;
      }
      
      .approach-tab {
        min-width: 150px;
      }
      
      .approach-step-content {
        grid-template-columns: 1fr;
      }
      
      .approach-step-visualization {
        order: -1;
      }
      
      .approach-title {
        font-size: 2.5rem;
      }
      
      .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md);
      }
      
      .process-line {
        display: none;
      }
    }
    
    @media (max-width: 768px) {
      .approach-tab {
        min-width: 120px;
        padding: 12px 15px;
        font-size: 0.9rem;
      }
      
      .approach-title {
        font-size: 2rem;
      }
      
      .approach-step-title {
        font-size: 1.8rem;
      }
    }
    
    @media (max-width: 576px) {
      .approach-tabs {
        flex-direction: column;
        gap: 10px;
      }
      
      .approach-tab {
        width: 100%;
      }
      
      .approach-step-header {
        padding: var(--spacing-md);
      }
      
      .approach-step-title {
        font-size: 1.5rem;
      }
    }

/* Bloc #5 */
/* Testimonials Section Styles - Based on Existing Design */
    .testimonials-section {
      position: relative;
      padding: var(--spacing-xxl) 0 var(--spacing-lg);
      background-color: var(--primary-dark);
      overflow: hidden;
      z-index: 1;
    }
    
    .testimonials-diagonal-top {
      position: absolute;
      top: -15vw;
      left: 0;
      width: 100%;
      height: 15vw;
      background-color: var(--primary-dark);
      transform: skewY(3deg);
      transform-origin: top right;
      z-index: 0;
      border-bottom: 1px solid rgba(118, 228, 155, 0.1);
    }
    
    .testimonials-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("/images/noise-pattern.png");
      background-size: 200px;
      background-repeat: repeat;
      opacity: 0.05;
      z-index: 0;
    }
    
    .testimonials-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-md);
      position: relative;
      z-index: 2;
    }
    
    .testimonials-title-wrap {
      text-align: center;
      margin-bottom: var(--spacing-xl);
    }
    
    .testimonials-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: var(--spacing-sm);
      text-transform: uppercase;
      color: var(--text-light);
      position: relative;
      display: inline-block;
    }
    
    .testimonials-title span {
      color: var(--accent-green);
    }
    
    .testimonials-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--accent-green);
    }
    
    .testimonials-subtitle {
      color: var(--text-secondary);
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1.1rem;
      max-width: 800px;
      margin: var(--spacing-md) auto 0;
      line-height: 1.6;
    }
    
    /* Match the actual site testimonial styles */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-lg);
      padding-bottom: var(--spacing-xxl);
    }
    
    .testimonial-card {
      background: rgba(19, 21, 33, 0.3);
      border: 1px solid rgba(118, 228, 155, 0.1);
      border-radius: var(--border-radius);
      padding: var(--spacing-xl) var(--spacing-lg);
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }
    
    .testimonial-card:hover {
      border-color: rgba(118, 228, 155, 0.3);
      transform: translateY(-10px);
    }
    
    .testimonial-quote {
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--text-light);
      margin-bottom: var(--spacing-lg);
      flex-grow: 1;
    }
    
    .testimonial-author {
      margin-top: auto;
      border-top: 1px solid rgba(118, 228, 155, 0.1);
      padding-top: var(--spacing-md);
    }
    
    .testimonial-name {
      font-family: 'Broad Sans', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--text-light);
      margin-bottom: 5px;
    }
    
    .testimonial-position {
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 0.9rem;
      color: var(--accent-green);
      margin-bottom: 2px;
    }
    
    .testimonial-company {
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 0.85rem;
      color: var(--text-secondary);
    }
    
    .testimonial-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: var(--spacing-sm);
      background: linear-gradient(135deg, rgba(118, 228, 155, 0.6), rgba(66, 58, 187, 0.6));
      font-family: 'Broad Sans', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--primary-dark);
      margin-bottom: var(--spacing-sm);
    }
    
    .testimonial-rating {
      display: flex;
      margin-bottom: var(--spacing-sm);
    }
    
    .testimonial-rating svg {
      width: 18px;
      height: 18px;
      fill: var(--accent-green);
      margin-right: 2px;
    }
    
    /* CTA Section spacer */
    .cta-spacer {
      background-color: var(--primary-dark);
      height: var(--spacing-xl);
      position: relative;
      z-index: 1;
    }
    
    /* Responsive Styles */
    @media (max-width: 1200px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
      
      .testimonials-title {
        font-size: 2.2rem;
      }
    }

/* Bloc #6 */
/* CTA Section Styles */
    .cta-section {
      position: relative;
      padding: var(--spacing-xxxl) 0 calc(var(--spacing-xxl) * 2); /* Increased bottom padding */
      background-color: var(--primary-dark);
      overflow: hidden;
      z-index: 1;
      margin-bottom: var(--spacing-xxl); /* Additional margin at bottom */
    }
    
    .cta-diagonal-top {
      position: absolute;
      top: -15vw;
      left: 0;
      width: 100%;
      height: 15vw;
      background-color: var(--primary-dark);
      transform: skewY(-3deg);
      transform-origin: top left;
      z-index: 0;
      border-bottom: 1px solid rgba(118, 228, 155, 0.1);
    }
    
    .cta-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("/images/noise-pattern.png");
      background-size: 200px;
      background-repeat: repeat;
      opacity: 0.05;
      z-index: 0;
    }
    
    .cta-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-md);
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .cta-pre-title {
      font-family: 'Schibsted Grotesk', sans-serif;
      text-transform: uppercase;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 3px;
      color: var(--accent-green);
      margin-bottom: var(--spacing-md);
      position: relative;
      display: inline-block;
    }
    
    .cta-pre-title::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 2px;
      background: var(--accent-green);
    }
    
    .cta-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 4rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: var(--spacing-md);
      color: var(--text-light);
      max-width: 900px;
      letter-spacing: -0.5px;
      text-transform: uppercase;
    }
    
    .cta-title span {
      background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-purple) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
    }
    
    .cta-description {
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1.3rem;
      line-height: 1.7;
      color: var(--text-secondary);
      max-width: 800px;
      margin: 0 auto var(--spacing-lg);
    }
    
    .cta-buttons {
      display: flex;
      gap: var(--spacing-md);
      margin-top: var(--spacing-md);
      margin-bottom: var(--spacing-xl); /* Added bottom margin to buttons */
    }
    
    .cta-button-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 40px;
      background: var(--accent-green);
      color: var(--primary-dark);
      border: none;
      border-radius: var(--border-radius);
      font-family: 'Broad Sans', sans-serif;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 1.1rem;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all var(--transition-normal);
      text-decoration: none;
      box-shadow: 0 8px 30px rgba(118, 228, 155, 0.3);
    }
    
    .cta-button-primary:hover {
      background: var(--accent-purple);
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(66, 58, 187, 0.3);
    }
    
    .cta-button-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 40px;
      background: transparent;
      color: var(--text-light);
      border: 2px solid rgba(118, 228, 155, 0.3);
      border-radius: var(--border-radius);
      font-family: 'Broad Sans', sans-serif;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 1.1rem;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all var(--transition-normal);
      text-decoration: none;
    }
    
    .cta-button-secondary:hover {
      border-color: var(--accent-green);
      background: rgba(118, 228, 155, 0.1);
      transform: translateY(-5px);
    }
    
    .cta-button-secondary svg {
      margin-left: 10px;
      width: 20px;
      height: 20px;
      transition: transform var(--transition-normal);
    }
    
    .cta-button-secondary:hover svg {
      transform: translateX(5px);
    }
    
    .cta-background-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
    }
    
    .cta-circle {
      position: absolute;
      border-radius: 50%;
    }
    
    .cta-circle-1 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(118, 228, 155, 0.05) 0%, rgba(19, 21, 33, 0) 70%);
      top: -10%;
      left: -10%;
    }
    
    .cta-circle-2 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(66, 58, 187, 0.05) 0%, rgba(19, 21, 33, 0) 70%);
      bottom: -5%;
      right: -5%;
    }
    
    .cta-dots {
      position: absolute;
      width: 200px;
      height: 200px;
      background-image: radial-gradient(var(--accent-green) 1px, transparent 1px);
      background-size: 20px 20px;
      opacity: 0.05;
      top: 20%;
      right: 10%;
    }
    
    .cta-lines {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0.05;
      top: 0;
      left: 0;
      z-index: -1;
    }
    
    .cta-line {
      position: absolute;
      background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
      height: 1px;
      width: 100%;
    }
    
    .cta-line:nth-child(1) {
      top: 15%;
    }
    
    .cta-line:nth-child(2) {
      top: 35%;
    }
    
    .cta-line:nth-child(3) {
      top: 55%;
    }
    
    .cta-line:nth-child(4) {
      top: 75%;
    }
    
    /* Footer spacer to prevent content from being too close to FAQs */
    .footer-spacer {
      height: var(--spacing-xxl);
      background-color: var(--primary-dark);
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
      .cta-title {
        font-size: 3rem;
      }
      
      .cta-description {
        font-size: 1.2rem;
      }
      
      .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
      }
      
      .cta-button-primary,
      .cta-button-secondary {
        width: 100%;
      }
    }
    
    @media (max-width: 768px) {
      .cta-section {
        padding-bottom: calc(var(--spacing-xl) * 2); /* Adjusted for mobile */
      }
      
      .cta-title {
        font-size: 2.5rem;
      }
      
      .cta-description {
        font-size: 1.1rem;
      }
      
      .cta-pre-title {
        font-size: 0.9rem;
      }
    }
    
    @media (max-width: 576px) {
      .cta-title {
        font-size: 2rem;
      }
      
      .cta-button-primary,
      .cta-button-secondary {
        padding: 15px 25px;
        font-size: 1rem;
      }
    }

/* Bloc #7 */
/* FAQ Section Styles */
    .faq-section {
      position: relative;
      padding: var(--spacing-xxl) 0;
      background-color: var(--primary-dark);
      overflow: hidden;
      z-index: 1;
    }
    
    .faq-diagonal-top {
      position: absolute;
      top: -15vw;
      left: 0;
      width: 100%;
      height: 15vw;
      background-color: var(--primary-dark);
      transform: skewY(3deg);
      transform-origin: top right;
      z-index: 0;
      border-bottom: 1px solid rgba(118, 228, 155, 0.1);
    }
    
    .faq-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("/images/noise-pattern.png");
      background-size: 200px;
      background-repeat: repeat;
      opacity: 0.05;
      z-index: 0;
    }
    
    .faq-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 var(--spacing-md);
      position: relative;
      z-index: 2;
    }
    
    .faq-title-wrap {
      text-align: center;
      margin-bottom: var(--spacing-xl);
    }
    
    .faq-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: var(--spacing-sm);
      text-transform: uppercase;
      color: var(--text-light);
      position: relative;
      display: inline-block;
    }
    
    .faq-title span {
      color: var(--accent-green);
    }
    
    .faq-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--accent-green);
    }
    
    .faq-subtitle {
      color: var(--text-secondary);
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1.1rem;
      max-width: 800px;
      margin: var(--spacing-md) auto 0;
      line-height: 1.6;
    }
    
    .faq-items {
      display: flex;
      flex-direction: column;
      gap: var(--spacing-md);
    }
    
    .faq-item {
      background: rgba(19, 21, 33, 0.4);
      border: 1px solid rgba(118, 228, 155, 0.1);
      border-radius: var(--border-radius);
      overflow: hidden;
      transition: all var(--transition-normal);
      opacity: 0;
      transform: translateY(20px);
    }
    
    .faq-item.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .faq-item:hover {
      border-color: rgba(118, 228, 155, 0.3);
    }
    
    .faq-question {
      padding: var(--spacing-md);
      cursor: pointer;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      user-select: none;
    }
    
    .faq-question-text {
      font-family: 'Broad Sans', sans-serif;
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--text-light);
      padding-right: var(--spacing-md);
    }
    
    .faq-icon {
      position: relative;
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }
    
    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      background-color: var(--accent-green);
      transition: all var(--transition-normal);
    }
    
    .faq-icon::before {
      top: 11px;
      left: 0;
      width: 24px;
      height: 2px;
    }
    
    .faq-icon::after {
      top: 0;
      left: 11px;
      width: 2px;
      height: 24px;
    }
    
    .faq-item.active .faq-icon::after {
      transform: rotate(90deg);
      opacity: 0;
    }
    
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
      max-height: 500px;
    }
    
    .faq-answer-content {
      padding: 0 var(--spacing-md) var(--spacing-md);
      color: var(--text-secondary);
      line-height: 1.6;
      font-family: 'Schibsted Grotesk', sans-serif;
    }
    
    .faq-categories {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: var(--spacing-sm);
      margin-bottom: var(--spacing-lg);
    }
    
    .faq-category {
      background: transparent;
      border: 1px solid rgba(118, 228, 155, 0.2);
      padding: 10px 20px;
      border-radius: 30px;
      font-family: 'Broad Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-light);
      cursor: pointer;
      transition: all var(--transition-normal);
    }
    
    .faq-category:hover {
      border-color: var(--accent-green);
      background: rgba(118, 228, 155, 0.05);
      transform: translateY(-3px);
    }
    
    .faq-category.active {
      background: var(--accent-green);
      border-color: var(--accent-green);
      color: var(--primary-dark);
    }
    
    /* Background elements */
    .faq-bg-element {
      position: absolute;
      z-index: 0;
    }
    
    .faq-hexagon {
      width: 400px;
      height: 400px;
      background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L93.3 25V75L50 100L6.7 75V25L50 0Z' fill='%2376E49B' fill-opacity='0.05'/%3E%3C/svg%3E");
      background-size: 100px;
      background-repeat: repeat;
      opacity: 0.5;
      top: 10%;
      right: -200px;
    }
    
    .faq-dots {
      width: 250px;
      height: 250px;
      background-image: radial-gradient(var(--accent-green) 1px, transparent 1px);
      background-size: 20px 20px;
      opacity: 0.05;
      bottom: 10%;
      left: 5%;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
      .faq-title {
        font-size: 2.5rem;
      }
    }
    
    @media (max-width: 768px) {
      .faq-title {
        font-size: 2.2rem;
      }
      
      .faq-question-text {
        font-size: 1.1rem;
      }
    }
    
    @media (max-width: 576px) {
      .faq-title {
        font-size: 2rem;
      }
      
      .faq-question {
        padding: var(--spacing-sm);
      }
      
      .faq-question-text {
        font-size: 1rem;
      }
      
      .faq-answer-content {
        padding: 0 var(--spacing-sm) var(--spacing-sm);
      }
    }
