    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* ========== CUSTOM SCROLLBAR ========== */
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg-secondary);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--lime-strong);
      border-radius: 100px;
      transition: background 0.3s ease;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--lime-medium);
    }

    ::-webkit-scrollbar-thumb:active {
      background: var(--accent-lime);
    }

    * {
      scrollbar-width: thin;
      scrollbar-color: var(--lime-strong) var(--bg-secondary);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg-primary);
      color: var(--text-primary);
      font-family: 'Segoe UI', -apple-system, sans-serif;
      overflow-x: hidden;
    }

    /* ========== HERO SECTION ========== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 150px;
      background: linear-gradient(to bottom, transparent, rgba(245, 245, 247, 0.4));
      z-index: 1;
      pointer-events: none;
    }

    .hero-container {
      position: relative;
      z-index: 1;
      max-width: 1400px;
      margin: 0 auto;
      padding: 75px 40px 75px;
      display: flex;
      align-items: center;
      gap: 60px;
      width: 100%;
    }

    .hero-content {
      flex: 1;
      min-width: 0;
    }


    .hero-title {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 900;
      letter-spacing: -0.02em;
      overflow: hidden;
      text-align: left;
      color: #ffffff;
      line-height: 1.1;
      margin-bottom: 5px;
    }

    .hero-title .highlight {
      color: var(--accent-lime);
    }

    .hero-title .line {
      display: block;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      transform: translateY(100%);
      animation: revealLine var(--duration) var(--cubic-default) forwards;
    }

    @keyframes revealLine {
      to { transform: translateY(0); }
    }

    .hero-tagline {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--accent-lime);
      margin-bottom: 1.2rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.6s var(--cubic-default) 0.1s forwards;
    }

    .hero-subtitle {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 1.5rem;
      margin-bottom: 2rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.6s var(--cubic-default) 0.3s forwards;
      max-width: 550px;
      text-align: left;
      line-height: 1.7;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.6s var(--cubic-default) 0.45s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      background: var(--accent-lime);
      color: #ffffff;
      text-decoration: none;
      font-weight: 700;
      font-size: 1rem;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(91, 138, 0, 0.3);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      padding: 16px 32px;
      background: transparent;
      color: #ffffff;
      text-decoration: none;
      font-weight: 700;
      font-size: 1rem;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-secondary:hover {
      border-color: var(--accent-lime);
      color: var(--accent-lime);
      transform: translateY(-3px);
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ========== PROCESS ========== */
    .process-section {
      padding: 75px 40px;
      text-align: center;
      position: relative;
    }

    .process-header {
      margin-bottom: 60px;
    }

    .process-subtitle {
      font-size: 1.05rem;
      color: var(--text-secondary);
    }

    .process-timeline {
      display: flex;
      justify-content: center;
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
    }

    /* Ligne horizontale de la timeline */
    .process-timeline::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: var(--border-color);
    }

    .process-step {
      flex: 1;
      text-align: center;
      padding: 0 20px;
      position: relative;
    }

    .process-step-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 24px;
    }

    .process-dot {
      width: 18px;
      height: 18px;
      background: var(--accent-lime);
      border-radius: 50%;
      border: 3px solid var(--bg-primary);
      box-shadow: 0 0 0 2px var(--accent-lime);
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
    }

    .process-step:hover .process-dot {
      transform: scale(1.3);
      box-shadow: 0 0 0 3px var(--accent-lime), 0 0 15px var(--lime-medium);
    }

    .process-step-number {
      font-size: 0.8rem;
      font-weight: 800;
      color: var(--accent-lime);
      letter-spacing: 0.1em;
      margin-top: 12px;
    }

    .process-step-icon {
      font-size: 1.8rem;
      color: var(--accent-lime);
      margin-bottom: 14px;
    }

    .process-step h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 8px;
      transition: color 0.3s ease;
    }

    .process-step:hover h3 {
      color: var(--accent-lime);
    }

    .process-step p {
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .process-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-left: 30px;
      }

      .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 8px;
        right: auto;
        width: 2px;
        height: auto;
      }

      .process-step {
        text-align: left;
        padding: 0 0 0 30px;
      }

      .process-step-top {
        flex-direction: row;
        gap: 12px;
        position: absolute;
        left: -30px;
        top: 0;
      }

      .process-dot {
        position: relative;
      }

      .process-step-number {
        margin-top: 0;
      }
    }

    /* ========== ABOUT SECTION ========== */
    .about-section {
      padding: 75px 40px;
      background: var(--bg-secondary);
      border-bottom: 1px solid var(--border-color);
      position: relative;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about-image {
      border-radius: 16px;
      overflow: hidden;
    }

    .about-image img {
      width: 100%;
      max-width: 450px;
      height: auto;
      display: block;
      border-radius: 16px;
      margin: 0 auto;
    }

    .about-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.2;
    }

    .about-title span {
      color: var(--accent-lime);
    }
    .about-logo {
      height: 90px;
      width: auto;
      display: inline-block;
      vertical-align: baseline;
      margin-top: 6px;
    }

    .accent-line {
      width: 60px;
      height: 3px;
      background: var(--accent-lime);
      border-radius: 2px;
      margin: 16px 0 24px;
    }
    .accent-line-center {
      margin: 16px auto 12px;
    }

    .about-text > p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--text-secondary);
      margin-bottom: 30px;
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .about-feature {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .about-feature-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      background: var(--lime-soft);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-lime);
    }

    .about-feature h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .about-feature p {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* ========== SECTION COMMON ========== */
    .section-overtitle {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--accent-lime);
      text-align: center;
      margin-bottom: 15px;
    }

    .section-title {
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 800;
      text-align: center;
    }

    .section-title span {
      color: var(--accent-lime);
    }

    /* ========== TECH ========== */
    .tech-section {
      padding: 60px 40px;
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }
    .tech-section-white {
      background: var(--bg-primary);
      border-top: none;
      border-bottom: none;
    }
    .tech-content {
      max-width: 1200px;
      margin: 0 auto;
    }
    .tech-content p {
      color: var(--text-secondary);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 800px;
    }
    /* Alternance gauche/droite */
    .align-left .tech-content { text-align: left; }
    .align-left .section-title { text-align: left; }
    .align-left .tech-content p { margin-left: 0; margin-right: auto; }
    .align-right .tech-content { text-align: right; }
    .align-right .section-title { text-align: right; }
    .align-right .tech-content p { margin-left: auto; margin-right: 0; }
    @media (max-width: 768px) {
      .tech-section { padding: 30px 20px 40px; }
      .tech-content p { font-size: 0.92rem; }
      .align-left .tech-content,
      .align-right .tech-content,
      .align-left .section-title,
      .align-right .section-title { text-align: left; }
      .align-right .tech-content p { margin-left: 0; }
    }

    /* ========== SERVICES ========== */
    .services-section {
      padding: 75px 40px;
      background: var(--bg-primary);
      position: relative;
    }

    .services-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .services-subtitle {
      font-size: 1.05rem;
      color: var(--text-secondary);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-item {
      text-align: left;
    }

    .service-icon {
      width: 60px;
      height: 60px;
      background: var(--lime-soft);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--accent-lime);
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }

    .service-item:hover .service-icon {
      background: var(--accent-lime);
      color: #ffffff;
    }

    .service-item h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .service-item p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent-lime);
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      transition: gap 0.3s ease;
    }

    .service-link:hover {
      gap: 14px;
    }

    /* ========== PORTFOLIO ========== */
    .portfolio-section {
      padding: 75px 40px;
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
      position: relative;
    }

    .portfolio-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .portfolio-subtitle {
      font-size: 1.05rem;
      color: var(--text-secondary);
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .portfolio-item {
      display: block;
      background: var(--bg-primary);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      overflow: hidden;
      text-decoration: none;
      color: var(--text-primary);
      transition: all 0.4s var(--cubic-default);
    }

    .portfolio-item:hover {
      border-color: var(--accent-lime);
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .portfolio-preview {
      aspect-ratio: 16 / 10;
      background: var(--bg-tertiary);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .carousel-slide {
      aspect-ratio: auto;
    }

    .carousel-slide .portfolio-preview {
      aspect-ratio: 16 / 10;
      overflow: hidden;
    }

    .portfolio-preview-url {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--accent-lime);
      letter-spacing: -0.02em;
      transition: transform 0.4s var(--cubic-default);
    }

    .portfolio-item:hover .portfolio-preview-url {
      transform: scale(1.05);
    }

    .portfolio-preview {
      position: relative;
    }

    .portfolio-preview img {
      transition: transform 0.4s var(--cubic-default);
      filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.7)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
      will-change: transform;
    }

    .portfolio-item:hover .portfolio-preview img {
      transform: scale(1.1);
    }

    .portfolio-preview::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.3) 45%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.3) 55%, transparent 60%);
      transform: translateX(-150%);
      transition: none;
      pointer-events: none;
    }

    .portfolio-item:hover .portfolio-preview::after {
      transform: translateX(150%);
      transition: transform 0.7s ease;
    }

    .portfolio-info {
      padding: 25px 30px;
    }

    .portfolio-info h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .portfolio-info p {
      color: var(--text-secondary);
      font-size: 0.92rem;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .portfolio-tag {
      display: inline-block;
      padding: 5px 14px;
      background: var(--lime-soft);
      border: 1px solid var(--lime-strong);
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--accent-lime);
    }


    /* ========== PORTFOLIO CAROUSEL ========== */
    .carousel-wrapper {
      position: relative;
      max-width: 700px;
      margin: 0 auto;
      padding: 0 50px;
    }
    .carousel-overflow {
      overflow: hidden;
    }
    .carousel-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.65, 0.05, 0, 1);
    }
    .carousel-slide {
      min-width: 100%;
      padding: 0 10px;
      box-sizing: border-box;
    }
    .carousel-slide .portfolio-item {
      margin: 0 auto;
      max-width: 100%;
    }
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--border-color);
      background: var(--bg-primary);
      color: var(--text-primary);
      font-size: 1.4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .carousel-btn:hover {
      background: var(--accent-lime);
      color: #fff;
      border-color: var(--accent-lime);
    }
    .carousel-prev { left: 0; }
    .carousel-next { right: 0; }
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 24px;
    }
    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background: var(--border-color);
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
    }
    .carousel-dot.active {
      background: var(--accent-lime);
      transform: scale(1.3);
    }
    .portfolio-see-all {
      text-align: center;
      margin-top: 24px;
    }
    @media (max-width: 768px) {
      .carousel-wrapper {
        max-width: 100%;
        padding: 0 30px;
      }
      .carousel-prev { left: -4px; }
      .carousel-next { right: -4px; }
      .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
      }
    }

    /* ========== CTA SECTION ========== */
    .cta-section {
      padding: 75px 40px;
      text-align: center;
      position: relative;
      background: var(--accent-lime);
      overflow: hidden;
    }

    .cta-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .cta-overtitle {
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .cta-title {
      font-size: clamp(2.5rem, 8vw, 6rem);
      font-weight: 900;
      line-height: 1;
      margin-bottom: 25px;
      position: relative;
      z-index: 1;
      color: #ffffff;
    }

    .cta-subtitle {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      padding: 20px 50px;
      background: #ffffff;
      color: var(--accent-lime);
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      border-radius: 100px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s var(--cubic-default), box-shadow 0.3s ease;
      cursor: pointer;
      z-index: 1;
    }

    .cta-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .cta-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
      transform: translateX(-100%);
      transition: transform 0.6s ease;
    }

    .cta-btn:hover::before {
      transform: translateX(100%);
    }

    .cta-btn span {
      position: relative;
      z-index: 1;
    }

    .cta-btn-arrow {
      transition: transform 0.3s var(--cubic-default);
    }

    .cta-btn:hover .cta-btn-arrow {
      transform: translateX(5px);
    }

    /* ========== DECORATIVE FLOATING ICONS ========== */
    .deco-icons {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }
    .deco-icons i {
      position: absolute;
      color: var(--accent-lime);
      opacity: 0.07;
      animation: decoFloat var(--float-duration, 7s) ease-in-out infinite;
    }
    @keyframes decoFloat {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(8deg); }
    }

    /* ========== SCROLL ANIMATIONS ========== */
    .reveal {
      opacity: 0;
      transform: translateY(60px);
      transition: all 0.8s var(--cubic-default);
    }

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

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .hero {
        min-height: auto;
      }
      .hero-container {
        flex-direction: column;
        padding: 100px 20px 60px;
        gap: 40px;
      }
      .hero-content {
        text-align: center;
      }
      .hero-title {
        text-align: center;
        font-size: clamp(2rem, 8vw, 3rem);
      }
      .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        text-align: center;
      }
      .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
      }
      .hero-buttons {
        justify-content: center;
      }

      .process-section {
        padding: 60px 20px;
      }

      .about-section {
        padding: 60px 20px;
      }
      .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .services-section {
        padding: 60px 20px;
      }

      .portfolio-section {
        padding: 60px 20px;
      }
      .portfolio-grid {
        grid-template-columns: 1fr;
      }
      .portfolio-preview {
        aspect-ratio: 16 / 10;
      }

      .cta-section {
        padding: 80px 20px;
      }
      .cta-overtitle {
        font-size: 0.85rem;
      }
      .cta-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
      }
      .cta-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
      }
      .cta-btn {
        padding: 16px 30px;
        font-size: 0.85rem;
        gap: 10px;
        letter-spacing: 0.05em;
        max-width: 90vw;
      }
      .cta-glow {
        width: 300px;
        height: 300px;
      }

      .section-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 40px;
      }
      .section-overtitle {
        font-size: 0.75rem;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 1.8rem;
      }
      .hero-buttons {
        flex-direction: column;
        width: 100%;
      }
      .btn-primary, .btn-secondary {
        justify-content: center;
        width: 100%;
      }
      .cta-btn {
        padding: 14px 24px;
        font-size: 0.8rem;
        gap: 8px;
        letter-spacing: 0.03em;
      }
      .cta-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
      }
      .cta-subtitle {
        font-size: 0.85rem;
      }
    }

    .portfolio-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--accent-lime);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      margin-top: 12px;
      transition: gap 0.3s ease;
    }
    .portfolio-link:hover {
      gap: 10px;
    }

    /* WHY SECTION */
    .why-section {
      padding: 80px 40px;
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
      position: relative;
    }
    .why-header {
      max-width: 1400px;
      margin: 0 auto 50px;
    }
    .why-header {
      text-align: center;
      margin-bottom: 50px;
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1400px;
      margin: 0 auto;
    }
    .why-item {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 30px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .why-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    }
    .why-item i {
      font-size: 2rem;
      color: var(--accent-lime);
      margin-bottom: 16px;
      display: block;
    }
    .why-item h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 12px;
    }
    .why-item p {
      color: var(--text-secondary);
      line-height: 1.6;
      font-size: 0.95rem;
    }
    @media (max-width: 768px) {
      .why-section {
        padding: 50px 20px;
      }
    }

    /* SHARE BAR */
    .share-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 30px 40px;
    }
    .share-label {
      color: var(--text-muted);
      font-size: 0.9rem;
      font-weight: 600;
    }
    .share-bar a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 8px;
      background: var(--lime-soft);
      color: var(--accent-lime);
      font-size: 1.2rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .share-bar a:hover {
      background: var(--accent-lime);
      color: var(--bg-primary);
      transform: translateY(-2px);
    }
    @media (max-width: 768px) {
      .share-bar {
        padding: 20px;
        gap: 12px;
      }
      .share-label {
        font-size: 0.8rem;
      }
    }
