    :root {
      --ifg-dark: #050A14;
      --ifg-deep: #02060D;
      --ifg-gold: #C5A572;
      --ifg-gold-bright: #E5C58E;
      --ifg-text: #FFFFFF;
      --ifg-text-dim: #94A3B8;
      --font-main: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
      --transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--ifg-dark);
      color: var(--ifg-text);
      font-family: var(--font-main);
      line-height: 1.5;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .page-bg {
      position: fixed;
      inset: 0;
      z-index: -1;
      background: radial-gradient(circle at 50% -20%, #1A2942 0%, #050A14 70%, #050A14 100%);
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 80px;
      text-align: center;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 40px 0;
      transition: var(--transition);
    }

    header.scrolled {
      padding: 20px 0;
      background: rgba(2, 6, 13, 0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 80px;
      width: 100%;
    }

    .logo img {
      height: 26px;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      color: var(--ifg-text);
      cursor: pointer;
      z-index: 1001;
    }

    /* Mobile Nav Drawer */
    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: var(--ifg-dark);
      z-index: 2000;
      transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
    }

    .mobile-nav.active {
      right: 0;
    }

    .mobile-nav-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 60px;
    }

    .close-menu {
      font-size: 1.8rem;
      color: var(--ifg-text-dim);
      cursor: pointer;
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 32px;
      flex-grow: 1;
    }

    .mobile-nav-links a {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--ifg-text);
      text-decoration: none;
      letter-spacing: -0.02em;
    }

    .mobile-lang-selector {
      margin-top: 20px;
      display: flex;
      gap: 20px;
    }

    .mobile-lang-selector a {
      font-size: 1rem;
      color: var(--ifg-text-dim);
    }

    .mobile-lang-selector a.active {
      color: var(--ifg-gold);
      font-weight: 700;
    }

    .mobile-nav-footer {
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links {
      display: flex;
      gap: 32px;
    }

    .nav-links a {
      color: var(--ifg-text-dim);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--ifg-text);
    }

    .lang-dropdown {
      position: relative;
      cursor: pointer;
      padding: 10px 0;
    }

    .lang-current {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--ifg-text-dim);
      display: flex;
      align-items: center;
      gap: 8px;
      letter-spacing: 0.15em;
      transition: color 0.3s;
    }

    .lang-dropdown:hover .lang-current {
      color: var(--ifg-gold);
    }

    .lang-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background: var(--ifg-deep);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 12px 0;
      border-radius: 2px;
      display: none;
      min-width: 140px;
      margin-top: 5px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(20px);
    }

    .lang-dropdown:hover .lang-menu {
      display: block;
    }

    .lang-menu a {
      display: block;
      padding: 10px 24px;
      color: var(--ifg-text-dim);
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.2s;
      text-align: left;
    }

    .lang-menu a:hover {
      color: var(--ifg-gold);
      background: rgba(255, 255, 255, 0.02);
    }

    .btn-login {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--ifg-text);
      text-decoration: none;
      transition: color 0.3s;
    }

    .btn-login:hover {
      color: var(--ifg-gold);
    }

    .header-nav {
      display: flex;
      gap: 32px;
      margin-right: 48px;
    }

    .header-nav a {
      color: var(--ifg-text-dim);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 600;
      transition: var(--transition);
      letter-spacing: 0.05em;
    }

    .header-nav a:hover {
      color: var(--ifg-gold);
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      padding: 14px 28px;
      background: var(--ifg-gold);
      color: #000;
      text-decoration: none;
      border-radius: 2px;
      font-weight: 700;
      font-size: 0.9rem;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .btn-primary:hover {
      background: var(--ifg-gold-bright);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(197, 165, 114, 0.3);
    }

    .hero {
      padding: 280px 0 180px;
    }

    .hero-label {
      color: var(--ifg-gold);
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      margin-bottom: 32px;
      display: block;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 5rem);
      line-height: 0.9;
      font-weight: 800;
      letter-spacing: -0.05em;
      margin-bottom: 48px;
      max-width: 1300px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero p {
      font-size: clamp(1.3rem, 3vw, 2.2rem);
      color: var(--ifg-text-dim);
      max-width: 950px;
      margin: 0 auto 72px;
      line-height: 1.3;
      font-weight: 400;
    }

    .social-proof {
      padding: 80px 0;
    }

    .social-label {
      text-align: center;
      color: rgba(255, 255, 255, 0.3);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-bottom: 48px;
    }

    .logo-grid {
      display: flex;
      justify-content: space-around;
      align-items: center;
      opacity: 0.5;
      filter: grayscale(1);
      flex-wrap: wrap;
      gap: 40px;
    }

    .logo-grid span {
      font-size: 1.2rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      display: none;
    }

    /* Target Audience Section */
    .target-audience {
      padding: 100px 0;
      overflow: hidden;
      position: relative;
    }

    .marquee-container {
      width: 100%;
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }

    .audience-grid {
      display: flex;
      gap: 30px;
      width: max-content;
      animation: marquee 40s linear infinite;
      padding: 20px 0;
    }

    .audience-grid:hover {
      animation-play-state: paused;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .audience-card {
      width: 320px;
      flex-shrink: 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
      padding: 32px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .audience-card:hover {
      transform: translateY(-8px);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
      border-color: rgba(197, 165, 114, 0.3);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .audience-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--ifg-gold), transparent);
      opacity: 0.3;
      transition: opacity 0.3s;
    }

    .audience-card:hover::before {
      opacity: 1;
    }

    .audience-card h4 {
      font-size: 1.2rem;
      margin-bottom: 16px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
    }

    .audience-card p {
      color: var(--ifg-text-dim);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 0;
    }

    .pain-points {
      padding: 160px 0;
    }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 60px;
    }

    .pain-card {
      background: rgba(255, 255, 255, 0.015);
      padding: 60px 40px;
      border: 1px solid rgba(255, 255, 255, 0.03);
      border-radius: 2px;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      height: 100%;
    }

    .pain-card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.03);
      border-color: rgba(197, 165, 114, 0.2);
    }

    .pain-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--ifg-gold), transparent);
      opacity: 0.3;
      transition: opacity 0.3s;
    }

    .pain-card:hover::before {
      opacity: 1;
    }

    .pain-card h3 {
      font-size: 1.5rem;
      margin-bottom: 24px;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: #fff;
    }

    .pain-card p {
      color: var(--ifg-text-dim);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 0;
      opacity: 0.8;
    }

    .reviews {
      padding: 160px 0;
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      text-align: left;
    }

    .review-card {
      background: rgba(255, 255, 255, 0.02);
      padding: 40px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: var(--transition);
    }

    .review-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(197, 165, 114, 0.2);
    }

    .review-text {
      font-size: 1.1rem;
      line-height: 1.6;
      font-style: italic;
      color: var(--ifg-text);
      margin-bottom: 24px;
    }

    .review-info h4 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--ifg-gold);
      margin-bottom: 4px;
    }

    .review-info p {
      font-size: 0.85rem;
      color: var(--ifg-text-dim);
    }

    .workflow {
      padding: 160px 0;
      position: relative;
    }

    .workflow-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 60px;
    }

    .workflow-step {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      padding: 40px 32px;
      position: relative;
      transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .workflow-step:hover {
      transform: translateY(-8px);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
      border-color: rgba(197, 165, 114, 0.3);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .workflow-step::before {
      /* The decorative top line */
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--ifg-gold), transparent);
      opacity: 0.3;
      transition: opacity 0.3s;
    }

    .workflow-step:hover::before {
      opacity: 1;
    }

    .step-number {
      font-size: 4rem;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.03);
      position: absolute;
      top: 10px;
      right: 20px;
      line-height: 1;
      font-family: var(--font-main);
      pointer-events: none;
      transition: all 0.4s;
    }

    .workflow-step:hover .step-number {
      color: rgba(197, 165, 114, 0.1);
      transform: scale(1.1);
    }

    .workflow-step h4 {
      font-size: 1.4rem;
      margin-bottom: 20px;
      font-weight: 700;
      margin-top: 10px;
      color: #fff;
    }

    .workflow-step p {
      color: var(--ifg-text-dim);
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 0;
    }

    .depth {
      padding: 160px 0;
      position: relative;
      overflow: hidden;
    }

    /* Subtle background halo for the depth section */
    .depth::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -5%;
      width: 45%;
      height: 50%;
      background: radial-gradient(circle, rgba(197, 165, 114, 0.08) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .depth-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 80px;
      align-items: center;
      text-align: left;
      position: relative;
      z-index: 1;
    }

    .depth-visual {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      width: 100%;
    }

    /* Sources Dashboard - Compact & Elegant */
    .sources-dashboard {
      background: rgba(10, 20, 40, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 4px;
      padding: 24px 32px;
      width: 100%;
      max-width: 520px;
      position: relative;
      backdrop-filter: blur(20px);
      box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.4),
        inset 0 0 40px rgba(197, 165, 114, 0.02);
      text-align: left;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .sources-dashboard:hover {
      border-color: rgba(197, 165, 114, 0.2);
    }

    .dashboard-title {
      font-size: 0.65rem;
      font-weight: 700;
      color: var(--ifg-gold);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .dashboard-title::after {
      content: "";
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, rgba(197, 165, 114, 0.3), transparent);
    }

    .source-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .source-item {
      padding: 5px 0;
      font-size: 0.65rem;
      line-height: 1.4;
      color: rgba(255, 255, 255, 0.7);
      display: block;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      transition: all 0.2s ease;
    }

    .source-item:last-child {
      border-bottom: none;
    }

    .source-item:hover {
      color: #fff;
      padding-left: 5px;
    }

    .source-item a {
      color: var(--ifg-gold);
      text-decoration: none;
      font-weight: 600;
      border-bottom: 1px solid rgba(197, 165, 114, 0.2);
      transition: all 0.2s ease;
    }

    .source-item a:hover {
      border-bottom-color: var(--ifg-gold);
      color: #fff;
    }

    .source-item .status-vigueur {
      font-weight: 800;
      font-size: 0.55rem;
      letter-spacing: 0.05em;
      color: #fff;
      margin: 0 3px;
    }

    .source-item .verified-date {
      color: var(--ifg-text-dim);
      font-size: 0.58rem;
      opacity: 0.6;
    }

    .depth-visual {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      width: 100%;
    }

    /* Honesty Section */
    /* Honesty Section - Harvey Style */
    .honesty {
      padding: 120px 0;
      position: relative;
    }

    /* Sources Ticker - Horizontal */
    .sources-ticker-container {
      margin-top: 80px;
      width: 100%;
      overflow: hidden;
      position: relative;
      border-top: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      background: rgba(10, 20, 40, 0.3);
      backdrop-filter: blur(10px);
      padding: 15px 0;
    }

    .sources-ticker-track {
      display: flex;
      gap: 40px;
      width: max-content;
      animation: ticker-scroll 40s linear infinite;
    }

    .source-ticker-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
      font-family: 'JetBrains Mono', monospace;
      white-space: nowrap;
    }

    .source-ticker-item strong {
      color: var(--ifg-gold);
      font-weight: 600;
    }

    .source-ticker-item .status {
      font-size: 0.7rem;
      background: rgba(197, 165, 114, 0.1);
      color: var(--ifg-gold);
      padding: 2px 6px;
      border-radius: 2px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    @keyframes ticker-scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .honesty-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 80px;
      align-items: center;
    }

    .honesty-visual {
      background: #0F1115;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 6px;
      padding: 0;
      position: relative;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
      font-family: 'JetBrains Mono', 'Fira Code', monospace;
    }

    .terminal-header {
      background: rgba(255, 255, 255, 0.03);
      padding: 12px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .terminal-title {
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .terminal-dots {
      display: flex;
      gap: 6px;
    }

    .terminal-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
    }

    .terminal-content {
      padding: 25px;
      font-size: 0.85rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.6);
    }

    .log-line {
      display: flex;
      gap: 12px;
    }

    .log-time {
      color: rgba(255, 255, 255, 0.2);
      user-select: none;
    }

    .log-info {
      color: #5B95E8;
    }

    .log-success {
      color: #58D68D;
    }

    .log-warn {
      color: #F5B041;
    }

    .log-highlight {
      color: var(--ifg-gold);
      background: rgba(197, 165, 114, 0.1);
      padding: 2px 6px;
      border-radius: 2px;
    }

    .typing-cursor {
      display: inline-block;
      width: 8px;
      height: 15px;
      background: var(--ifg-gold);
      animation: blink 1s infinite;
      vertical-align: middle;
      margin-left: 5px;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0;
      }
    }

    .typing-cursor {
      display: inline-block;
      width: 8px;
      height: 15px;
      background: var(--ifg-gold);
      animation: blink 1s infinite;
      vertical-align: middle;
      margin-left: 5px;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0;
      }
    }

    .map-section {
      padding: 180px 0;
      position: relative;
    }

    .map-header {
      max-width: 800px;
      margin: 0 auto 100px;
    }

    .map-container {
      position: relative;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0;
    }

    #world-map {
      width: 100%;
      height: auto;
      display: block;
    }

    .country {
      fill: rgba(255, 255, 255, 0.05);
      stroke: rgba(255, 255, 255, 0.1);
      stroke-width: 0.3;
      transition: all 0.3s ease;
      cursor: pointer;
      outline: none;
    }

    .country:hover {
      fill: var(--ifg-gold);
      stroke: var(--ifg-gold-bright);
      filter: drop-shadow(0 0 15px var(--ifg-gold));
    }

    .source-tooltip {
      position: absolute;
      background: rgba(2, 6, 13, 0.98);
      border: 1px solid var(--ifg-gold);
      padding: 24px;
      border-radius: 2px;
      display: none;
      z-index: 1000;
      text-align: left;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
      pointer-events: none;
      width: 320px;
      backdrop-filter: blur(15px);
    }

    .source-tooltip h4 {
      color: var(--ifg-gold);
      font-size: 0.9rem;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 800;
      border-bottom: 1px solid rgba(197, 165, 114, 0.2);
      padding-bottom: 8px;
    }

    .source-tooltip p {
      font-size: 1rem;
      color: var(--ifg-text);
      margin: 0;
      line-height: 1.8;
      font-weight: 500;
    }

    .cta-section {
      padding: 220px 0;
      text-align: center;
    }

    .cta-section h2 {
      font-size: clamp(3.5rem, 8vw, 6rem);
      font-weight: 800;
      letter-spacing: -0.05em;
      margin-bottom: 56px;
      line-height: 1;
    }

    footer {
      padding: 120px 0 60px;
      color: var(--ifg-text-dim);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      text-align: left;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 80px;
      width: 100%;
    }

    .footer-brand h4 {
      color: var(--ifg-text);
      font-size: 1.4rem;
      margin-bottom: 24px;
      letter-spacing: 0.1em;
    }

    .footer-brand p {
      max-width: 360px;
      line-height: 1.7;
      font-size: 0.95rem;
    }

    .footer-links {
      display: flex;
      gap: 100px;
    }

    .footer-col h5 {
      color: var(--ifg-text);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 28px;
    }

    .footer-col a {
      display: block;
      color: inherit;
      text-decoration: none;
      margin-bottom: 18px;
      font-size: 0.95rem;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--ifg-gold);
    }

    @media (max-width: 1000px) {
      .container {
        padding: 0 32px;
      }

      .header-inner,
      .footer-inner {
        padding: 0 32px;
      }

      .pain-grid,
      .workflow-grid,
      .audience-grid,
      .depth-grid,
      .footer-inner {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
      }

      .depth-content {
        padding: 40px 20px;
      }

      .workflow-step {
        padding-left: 0;
      }

      .workflow-step::before {
        display: none;
      }

      .nav-actions {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .audience-card {
        width: 260px;
        padding: 24px;
      }

      .audience-card h4 {
        font-size: 1.1rem;
      }

      .hero {
        padding-top: 200px;
      }

      .map-container {
        padding: 20px;
      }

      .review-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      h1 {
        font-size: 3rem !important;
      }

      h2 {
        font-size: 2.5rem !important;
      }

      .depth-content h2 {
        font-size: 2.5rem !important;
      }

      .workflow-content h2 {
        font-size: 2.5rem !important;
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: var(--transition);
    }

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

    @keyframes scan {
      0% {
        transform: translateY(-100%);
      }

      100% {
        transform: translateY(100%);
      }
    }

    /* Pricing Section */
    .pricing-section {
      padding: 120px 0;
      position: relative;
      z-index: 2;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      max-width: 1000px;
      margin: 40px auto 0;
    }

    @media (max-width: 768px) {
      .pricing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 20px;
        margin: 0 -20px;
        -webkit-overflow-scrolling: touch;
      }

      .pricing-card {
        min-width: 280px;
        scroll-snap-align: center;
      }

      /* Scroll indicator for pricing */
      .pricing-section::after {
        content: '→';
        position: absolute;
        bottom: 80px;
        right: 40px;
        color: var(--ifg-gold);
        font-size: 1.2rem;
        animation: bounceX 2s infinite;
        opacity: 0.6;
      }
    }

    @keyframes bounceX {

      0%,
      100% {
        transform: translateX(0);
      }

      50% {
        transform: translateX(5px);
      }
    }

    .pricing-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 4px;
      padding: 32px 24px;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .pricing-card:hover {
      border-color: rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.05);
      transform: translateY(-8px);
    }

    .pricing-card.featured {
      border-color: var(--ifg-gold);
      background: linear-gradient(145deg, rgba(197, 165, 114, 0.08), rgba(0, 0, 0, 0));
    }

    .pricing-card .plan-name {
      font-size: 0.65rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--ifg-gold);
      margin-bottom: 16px;
      display: block;
    }

    .pricing-card .price {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }

    .pricing-card .price span {
      font-size: 1rem;
      color: var(--ifg-text-dim);
      font-weight: 400;
      letter-spacing: 0;
    }

    .pricing-card .plan-desc {
      font-size: 0.9rem;
      color: var(--ifg-text-dim);
      line-height: 1.6;
      margin-bottom: 24px;
      min-height: 2.5rem;
    }

    .pricing-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 32px 0;
      flex-grow: 1;
    }

    .pricing-card ul li {
      font-size: 0.85rem;
      color: var(--ifg-text-dim);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .pricing-card ul li i {
      color: var(--ifg-gold);
      font-size: 0.8rem;
      width: 16px;
    }

    .pricing-card .btn-pricing {
      width: 100%;
      padding: 18px;
      border-radius: 2px;
      font-weight: 800;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      text-align: center;
      transition: var(--transition);
      text-decoration: none;
      border: none;
      cursor: pointer;
    }

    .btn-pricing-secondary {
      background: rgba(255, 255, 255, 0.05);
      color: var(--ifg-text);
      border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .btn-pricing-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--ifg-gold) !important;
    }

    .btn-pricing-primary {
      background: var(--ifg-gold);
      color: #000;
    }

    .btn-pricing-primary:hover {
      background: var(--ifg-gold-bright);
      box-shadow: 0 10px 30px rgba(197, 165, 114, 0.3);
    }

    @media (max-width: 768px) {
      html, body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
      }

      .container {
        padding: 0 20px;
        max-width: 100%;
      }

      .header-inner {
        padding: 0 20px;
      }

      header {
        padding: 20px 0;
      }

      .menu-toggle {
        display: block;
      }

      .nav-actions {
        display: none;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
      }

      .hero {
        padding-top: 100px;
      }

      /* Map Section Mobile */
      .map-section {
        padding: 60px 0;
      }

      .map-header {
        margin-bottom: 40px;
      }

      .map-header h2 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
      }

      .map-header p {
        font-size: 1rem !important;
        margin-top: 16px !important;
      }

      .map-container {
        display: none !important;
      }

      .mobile-globe-container {
        display: block !important;
        text-align: center;
        margin-top: 40px;
      }

      #fiscal-globe-mobile {
        width: 100%;
        height: 400px;
        margin: 0 auto 40px;
      }

      #fiscal-globe-mobile canvas {
        display: block;
        margin: 0 auto;
        max-width: 100%;
      }

      .globe-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 40px;
      }

      .globe-stats .stat-item {
        text-align: center;
        /* Animation désactivée sur mobile pour éviter les mouvements */
      }

      @keyframes rotateStatItem {
        0%, 100% {
          transform: rotateY(0deg);
        }
        50% {
          transform: rotateY(360deg);
        }
      }

      .globe-stats .stat-number {
        display: block;
        font-size: 2rem;
        font-weight: 800;
        color: var(--ifg-gold);
        margin-bottom: 8px;
      }

      .globe-stats .stat-label {
        display: block;
        font-size: 0.75rem;
        color: var(--ifg-text-dim);
        text-transform: uppercase;
        letter-spacing: 0.1em;
      }
    }