    @import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,500;600;700&display=swap');

    :root {
      --ifg-dark: #050A14;
      --ifg-deep: #02060D;
      --ifg-gold: #C5A572;
      --ifg-gold-bright: #E5C58E;
      --ifg-text: #FFFFFF;
      --ifg-text-dim: #94A3B8;
      --font-sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
      --font-serif: "Source Serif 4", Georgia, serif;
      --font-data: "IBM Plex Mono", "JetBrains Mono", monospace;
      --font-main: var(--font-sans);
      --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);
      font-size: 15px;
      line-height: 1.58;
      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);
      background: transparent;
    }

    header::after {
      content: none;
    }

    header.scrolled {
      padding: 20px 0;
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-bottom: none;
    }

    .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:
        radial-gradient(circle at 80% -10%, rgba(197, 165, 114, 0.14), transparent 38%),
        linear-gradient(180deg, #06122A 0%, #050A14 64%, #040910 100%);
      z-index: 2000;
      transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 30px 24px 24px;
      display: flex;
      flex-direction: column;
      border-left: 1px solid rgba(255, 255, 255, 0.06);
    }

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

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

    .close-menu {
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--ifg-text-dim);
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 12px;
      background: rgba(5, 12, 25, 0.45);
      transition: all 0.25s ease;
    }

    .close-menu:hover {
      color: var(--ifg-text);
      border-color: rgba(197, 165, 114, 0.45);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 24px;
      flex-grow: 0;
      padding: 18px 0 0;
    }

    .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: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 330px;
      position: relative;
      padding: 18px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 16px;
    }

    .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-lang-label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: rgba(255,255,255,0.62);
      font-weight: 700;
    }

    .mobile-lang-select {
      width: 100%;
      height: 48px;
      background: rgba(7, 18, 35, 0.96);
      color: var(--ifg-text);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 12px;
      padding: 0 42px 0 14px;
      font-size: 1rem;
      font-weight: 600;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
      background-image:
        linear-gradient(45deg, transparent 50%, rgba(197,165,114,0.95) 50%),
        linear-gradient(135deg, rgba(197,165,114,0.95) 50%, transparent 50%);
      background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px);
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
    }

    .mobile-lang-select:focus {
      border-color: rgba(197,165,114,0.72);
      box-shadow: 0 0 0 3px rgba(197,165,114,0.16);
    }

    .mobile-nav-footer {
      margin-top: 34px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: grid;
      gap: 12px;
    }

    .mobile-nav-footer .btn-login,
    .mobile-nav-footer .btn-primary {
      width: 100%;
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      margin: 0;
      border-radius: 12px;
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.01em;
    }

    .mobile-nav-footer .btn-login {
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #E5EAF5;
      background: rgba(8, 18, 34, 0.55);
    }

    .mobile-nav-footer .btn-primary {
      color: #091321;
    }

    .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: 8px;
      border-radius: 12px;
      display: none;
      min-width: 250px;
      max-height: min(56vh, 320px);
      overflow-y: auto;
      margin-top: 5px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(20px);
    }

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

    .lang-menu a {
      display: block;
      padding: 10px 12px;
      color: var(--ifg-text-dim);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
      text-align: left;
      border-radius: 8px;
      line-height: 1.3;
    }

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

    .lang-menu::-webkit-scrollbar {
      width: 8px;
    }

    .lang-menu::-webkit-scrollbar-track {
      background: transparent;
    }

    .lang-menu::-webkit-scrollbar-thumb {
      background: rgba(197, 165, 114, 0.35);
      border-radius: 999px;
    }

    .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: 8px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: var(--transition);
      text-transform: none;
      letter-spacing: 0.01em;
    }

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

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

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

    .hero h1 {
      font-family: var(--font-serif);
      font-size: clamp(3.1rem, 6.9vw, 6.2rem);
      line-height: 0.98;
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 48px;
      max-width: 1300px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero p {
      font-size: clamp(1.15rem, 2.3vw, 1.95rem);
      color: var(--ifg-text-dim);
      max-width: 920px;
      margin: 0 auto 72px;
      line-height: 1.45;
      font-weight: 400;
    }

    .hero-actions {
      display: flex;
      gap: 24px;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }


    .hero-cta-main {
      padding: 18px 36px;
      font-size: 1rem;
      min-height: 58px;
      justify-content: center;
      text-align: center;
    }

    .hero-cta-secondary {
      border: 1px solid rgba(197, 165, 114, 0.36);
      background: rgba(255, 255, 255, 0.035);
      padding: 18px 36px;
      border-radius: 8px;
      min-height: 58px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      font-weight: 700;
      color: #EAF0FA;
      transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
    }

    .hero-cta-secondary:hover {
      border-color: rgba(197, 165, 114, 0.62);
      background: rgba(197, 165, 114, 0.12);
      color: #fff;
    }

    body.landing-mobile .lang-dropdown {
      display: block !important;
    }

    body.landing-mobile .nav-actions {
      display: flex !important;
    }

    body.landing-mobile .menu-toggle {
      display: none !important;
    }

    body.landing-mobile .hero-actions {
      flex-direction: row;
      gap: 24px;
      width: auto;
      margin: 0;
    }

    body.landing-mobile .hero-actions .hero-cta-main,
    body.landing-mobile .hero-actions .hero-cta-secondary {
      width: auto;
      max-width: none;
      min-height: 58px;
      padding: 18px 36px;
      font-size: 1rem;
      line-height: 1.24;
    }

    body.landing-mobile .hero-cta-secondary {
      border-radius: 8px;
    }

    @media (min-width: 1001px) {
      body.landing-mobile .lang-dropdown {
        display: block !important;
      }

      body.landing-mobile .nav-actions {
        display: flex !important;
      }

      body.landing-mobile .menu-toggle {
        display: none !important;
      }

      body.landing-mobile .hero-actions {
        flex-direction: row;
        gap: 24px;
        width: auto;
        margin: 0;
      }
    }

    @media (max-width: 1000px) {
      .lang-dropdown {
        display: none;
      }

      .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: min(560px, 100%);
        margin: 0 auto;
      }


      .hero-actions .hero-cta-main,
      .hero-actions .hero-cta-secondary {
        width: 100%;
        max-width: 100%;
      }

      body.landing-mobile .lang-dropdown {
        display: none !important;
      }

      body.landing-mobile .nav-actions {
        display: none !important;
      }

      body.landing-mobile .menu-toggle {
        display: block !important;
      }

      body.landing-mobile .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: min(560px, 100%);
        margin: 0 auto;
      }

      body.landing-mobile .hero-actions .hero-cta-main,
      body.landing-mobile .hero-actions .hero-cta-secondary {
        width: 100%;
        max-width: 100%;
        min-height: 54px;
        padding: 14px 18px;
      }

      body.landing-mobile .hero-cta-secondary {
        border-radius: 12px;
      }
    }

    /* Legal-tech typography pass */
    h1, h2, h3, h4 {
      font-family: var(--font-serif);
      font-weight: 600;
      letter-spacing: -0.015em;
    }

    .map-header h2,
    .depth-content h2,
    .workflow h2,
    .benefits-header h2,
    .target-audience h2,
    .honesty-content h2,
    .cta-section h2 {
      font-family: var(--font-serif) !important;
      font-weight: 600 !important;
      letter-spacing: -0.02em !important;
      line-height: 1.08 !important;
    }

    .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;
    }

    .radar-explainer {
      padding: 120px 0 90px;
      position: relative;
    }

    .radar-explainer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: 44px;
      align-items: start;
      text-align: left;
    }

    .radar-explainer-content h2 {
      font-size: clamp(2rem, 4.3vw, 3.2rem);
      margin-bottom: 20px;
      line-height: 1.1;
      max-width: 760px;
    }

    .radar-explainer-content p {
      color: var(--ifg-text-dim);
      font-size: 1.08rem;
      line-height: 1.68;
      max-width: 740px;
      margin: 0 0 26px;
    }

    .radar-explainer-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .radar-secondary-cta {
      border: 1px solid rgba(197, 165, 114, 0.28);
      background: rgba(255, 255, 255, 0.03);
      border-radius: 8px;
      padding: 14px 24px;
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      font-weight: 700;
      color: #EAF0FA;
    }

    .radar-secondary-cta:hover {
      color: #fff;
      border-color: rgba(197, 165, 114, 0.54);
      background: rgba(197, 165, 114, 0.12);
    }

    .radar-explainer-panel {
      background: linear-gradient(180deg, rgba(14, 26, 47, 0.7), rgba(8, 16, 30, 0.45));
      border: 1px solid rgba(197, 165, 114, 0.22);
      border-radius: 14px;
      padding: 26px;
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    }

    .radar-kpis {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .radar-kpi {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(197, 165, 114, 0.32);
      background: rgba(197, 165, 114, 0.1);
      color: #E8D2AB;
      font-size: 0.8rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .radar-feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 14px;
    }

    .radar-feature-item {
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .radar-feature-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .radar-feature-item h4 {
      font-family: var(--font-serif);
      font-size: 1.08rem;
      margin-bottom: 6px;
      color: #fff;
    }

    .radar-feature-item p {
      margin: 0;
      color: var(--ifg-text-dim);
      font-size: 0.94rem;
      line-height: 1.6;
    }

    .marquee-container {
      --audience-gap: 30px;
      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: var(--audience-gap);
      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(calc(-50% - (var(--audience-gap) / 2)));
      }
    }

    .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;
    }

    /* Benefits Section - Metric Blocks */
    .benefits {
      padding: 48px 0;
    }

    .benefits-header {
      display: none;
    }

    .benefits-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      max-width: 800px;
      margin: 0 auto;
    }

    .benefit-block {
      display: flex;
      align-items: baseline;
      gap: 10px;
      text-align: left;
    }

    .benefit-icon {
      display: none;
    }

    .benefit-metric {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 1;
      color: var(--ifg-gold);
      letter-spacing: -0.02em;
      white-space: nowrap;
    }

    .benefit-label {
      font-size: 0.82rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0;
      text-transform: none;
    }

    .benefit-block p {
      display: none;
    }

    .benefit-divider {
      width: 1px;
      height: 24px;
      background: rgba(197, 165, 114, 0.18);
      flex-shrink: 0;
      min-height: 0;
    }

    .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-family: var(--font-serif);
      font-size: 1.4rem;
      margin-bottom: 20px;
      font-weight: 600;
      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: 200px 0 170px;
      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-title {
      font-size: clamp(2.1rem, 4.2vw, 3.6rem);
      line-height: 1.08;
      margin-bottom: 28px;
      max-width: 680px;
    }

    .depth-intro {
      font-size: 1.16rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.86);
      margin-bottom: 18px;
      max-width: 640px;
    }

    .depth-proof {
      font-size: 1.02rem;
      line-height: 1.6;
      color: var(--ifg-text-dim);
      max-width: 640px;
      margin-bottom: 40px;
    }

    .depth-cta {
      margin-top: 18px;
    }

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

    /* Sources Dashboard - Live Monitor Style */
    .sources-dashboard {
      background: linear-gradient(180deg, rgba(8, 16, 32, 0.72), rgba(8, 16, 32, 0.48));
      border: 1px solid rgba(197, 165, 114, 0.14);
      border-radius: 14px;
      padding: 24px 28px 20px;
      width: 100%;
      max-width: 620px;
      position: relative;
      backdrop-filter: blur(24px);
      box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
      text-align: left;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .sources-dashboard:hover {
      border-color: rgba(197, 165, 114, 0.28);
      box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.48),
        inset 0 0 40px rgba(197, 165, 114, 0.04);
    }

    .dashboard-header {
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .dashboard-title-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 6px;
    }

    .dashboard-title {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--ifg-gold);
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .dashboard-live {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(197, 165, 114, 0.9);
      background: rgba(197, 165, 114, 0.08);
      border: 1px solid rgba(197, 165, 114, 0.2);
      border-radius: 999px;
      padding: 3px 10px 3px 8px;
    }

    .live-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #c5a572;
      animation: livePulse 2s ease-in-out infinite;
    }

    @keyframes livePulse {
      0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(197, 165, 114, 0.5); }
      50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(197, 165, 114, 0); }
    }

    .dashboard-subtitle {
      font-size: 0.68rem;
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 0.02em;
    }

    .source-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .source-item {
      display: flex;
      align-items: stretch;
      gap: 14px;
      padding: 12px 14px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid transparent;
      transition: background 0.2s, border-color 0.2s;
      cursor: default;
    }

    .source-item:hover {
      background: rgba(197, 165, 114, 0.06);
      border-color: rgba(197, 165, 114, 0.12);
    }

    .source-accent {
      width: 3px;
      min-height: 100%;
      border-radius: 2px;
      background: linear-gradient(180deg, rgba(197, 165, 114, 0.6), rgba(197, 165, 114, 0.15));
      flex-shrink: 0;
    }

    .source-body {
      flex: 1;
      min-width: 0;
    }

    .source-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 4px;
    }

    .source-doc {
      color: rgba(255, 255, 255, 0.92);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.82rem;
      transition: color 0.2s ease;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .source-item:hover .source-doc {
      color: #fff;
    }

    .source-item .status-vigueur {
      display: inline-flex;
      align-items: center;
      font-weight: 700;
      font-size: 0.58rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #c5a572;
      background: rgba(197, 165, 114, 0.1);
      border: 1px solid rgba(197, 165, 114, 0.22);
      border-radius: 4px;
      padding: 2px 7px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .source-meta {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .source-origin {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.68rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-weight: 500;
    }

    .source-sep {
      color: rgba(255, 255, 255, 0.2);
      font-size: 0.62rem;
      line-height: 1;
    }

    .source-item .verified-date {
      color: rgba(255, 255, 255, 0.38);
      font-size: 0.68rem;
      font-family: var(--font-data);
    }

    .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 {
      --sources-ticker-gap: 40px;
      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: var(--sources-ticker-gap);
      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(calc(-50% - (var(--sources-ticker-gap) / 2)));
      }
    }

    .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;
    }

    @media (max-width: 768px) {
      .sources-dashboard {
        max-width: 100%;
        padding: 18px 16px 14px;
        border-radius: 10px;
      }

      .dashboard-title-row {
        flex-direction: row;
        align-items: center;
      }

      .dashboard-subtitle {
        font-size: 0.6rem;
      }

      .source-item {
        padding: 10px 10px;
        gap: 10px;
      }

      .source-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
      }

      .source-doc {
        font-size: 0.76rem;
      }

      .source-meta {
        gap: 5px;
      }

      .source-origin,
      .source-sep {
        font-size: 0.6rem;
      }

      .source-item .verified-date {
        font-size: 0.6rem;
      }

      .source-item .status-vigueur {
        font-size: 0.52rem;
      }
    }

    .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.03);
      stroke: rgba(255, 255, 255, 0.06);
      stroke-width: 0.3;
      transition: all 0.3s ease;
      cursor: pointer;
      outline: none;
    }

    .country-covered {
      fill: rgba(197, 165, 114, 0.13);
      stroke: rgba(197, 165, 114, 0.2);
    }

    .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;
      }

      .benefits-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .benefit-divider {
        width: 40px;
        min-height: 0;
        height: 1px;
        background: rgba(197, 165, 114, 0.18);
      }

      .benefit-block {
        justify-content: center;
      }

      .workflow-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
      }

      .footer-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
        padding: 0 32px;
      }

      .footer-brand {
        max-width: 100% !important;
        margin-right: 0 !important;
      }

      .footer-links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
      }

      .depth-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
        gap: 52px;
        text-align: left;
        align-items: start;
      }

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

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

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

      .nav-actions {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .lang-dropdown {
        display: none;
      }

      .mobile-nav {
        padding: 24px 20px 20px;
      }

      .mobile-lang-selector {
        max-width: 100%;
      }

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

      .marquee-container {
        --audience-gap: 60px;
      }

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

      .hero {
        padding-top: 240px;
      }

      .radar-explainer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center;
      }

      .radar-explainer-content h2,
      .radar-explainer-content p {
        max-width: none;
      }

      .radar-explainer-actions {
        justify-content: center;
      }

      .map-container {
        padding: 20px;
      }

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

      h1 {
        font-size: 2.55rem !important;
        line-height: 1.02 !important;
      }

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

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

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

    @media (max-width: 1200px) and (min-width: 821px) {
      .depth-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 44px;
        text-align: left;
        align-items: start;
      }

      .depth-content {
        padding: 14px 0;
      }

      .depth-title {
        font-size: clamp(1.95rem, 3.9vw, 2.75rem);
        line-height: 1.14;
      }

      .depth-intro,
      .depth-proof {
        max-width: none;
      }

      .depth-visual {
        align-items: flex-start;
      }
    }

    @media (max-width: 820px) {
      .depth-grid {
        grid-template-columns: 1fr;
        gap: 44px;
        text-align: center;
      }

      .depth-content {
        padding: 30px 14px;
      }
    }

    .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);
    }

    /* ── Mobile language bottom sheet ── */
    .lang-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 9998;
    }
    .lang-overlay.open { display: block; }

    .lang-bottom-sheet {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #0a1628;
      border-top: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px 16px 0 0;
      padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
      z-index: 9999;
      transform: translateY(100%);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .lang-bottom-sheet.open {
      display: block;
      transform: translateY(0);
    }
    .lang-bottom-sheet-title {
      text-align: center;
      font-size: 0.85rem;
      font-weight: 700;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }
    .lang-bottom-sheet-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .lang-bottom-sheet-grid a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 16px;
      border-radius: 10px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.2s;
    }
    .lang-bottom-sheet-grid a:active,
    .lang-bottom-sheet-grid a.active-lang {
      background: rgba(197,165,114,0.15);
      border-color: rgba(197,165,114,0.3);
      color: var(--ifg-gold);
    }

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

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

      .footer-inner {
        padding: 0 20px;
        gap: 28px;
      }

      .footer-links {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .footer-col h5 {
        margin-bottom: 14px;
      }

      .footer-col a {
        margin-bottom: 10px;
      }

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

      header {
        padding: 20px 0;
      }

      .menu-toggle {
        display: block;
      }

      .nav-actions {
        display: none;
      }

      /* Mobile: language switch lives in sidebar only */
      .lang-dropdown {
        display: none;
      }

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

      .hero {
        padding: 158px 0 120px;
      }

      .hero h1 {
        font-size: clamp(2.05rem, 10vw, 2.5rem) !important;
        letter-spacing: -0.02em !important;
        margin-bottom: 28px !important;
      }

      .hero p {
        font-size: 1.05rem !important;
        line-height: 1.45 !important;
        margin: 0 auto 36px !important;
        max-width: 94% !important;
      }

      .hero-actions {
        flex-direction: column;
        gap: 12px;
      }


      .hero-actions .hero-cta-main,
      .hero-actions .hero-cta-secondary {
        width: 100%;
        max-width: 100%;
        min-height: 52px;
        padding: 14px 16px;
        font-size: 0.95rem;
        line-height: 1.25;
      }

      .hero-actions .hero-cta-secondary {
        border-radius: 12px;
      }

      .radar-explainer {
        padding: 90px 0 70px;
      }

      .radar-explainer-content h2 {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
      }

      .radar-explainer-content p {
        font-size: 1rem;
        line-height: 1.62;
      }

      .radar-explainer-actions {
        flex-direction: column;
      }

      .radar-explainer-actions .btn-primary,
      .radar-explainer-actions .radar-secondary-cta {
        width: min(360px, 100%);
      }

      .radar-explainer-panel {
        padding: 20px;
      }

      .depth {
        padding: 140px 0 110px;
      }

      .depth-content {
        padding: 28px 8px;
      }

      .depth-title {
        font-size: clamp(2rem, 8.8vw, 2.55rem) !important;
        line-height: 1.16 !important;
        letter-spacing: -0.01em !important;
        margin-bottom: 20px !important;
      }

      .depth-intro {
        font-size: 1.02rem;
        line-height: 1.72;
        margin-bottom: 16px;
      }

      .depth-proof {
        font-size: 0.99rem;
        line-height: 1.72;
        margin-bottom: 28px;
      }

      .depth-cta {
        width: min(360px, 100%);
        margin: 10px auto 0;
        min-height: 52px;
      }

      /* 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;
      }
    }
