  /* Animations d'entrée au scroll */
  @keyframes fadeInUp {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-20px);
      }
  }

  /* REMOVED GLOW KEYFRAMES */

  @keyframes gradientShift {
      0% {
          background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }

      100% {
          background-position: 0% 50%;
      }
  }

  /* REMOVED PULSE RING */
  h1 {
      color: var(--text) !important;
      font-size: 2.4rem !important;
      /* -20% from 3rem */
      font-weight: 700 !important;
      letter-spacing: -0.02em !important;
  }

  /* Classes d'animation */
  .animate-on-scroll {
      opacity: 1;
      transition: none;
  }

  .animate-on-scroll.visible {
      opacity: 1;
  }

  .fade-up {
      opacity: 1;
      animation: none;
  }

  .fade-in {
      opacity: 1;
      animation: none;
  }

  /* Hero Section - Adaptive Background */
  .vt-hero {
      padding: 40px 0;
      position: relative;
      background: var(--bg);
      min-height: 40vh;
      display: flex;
      align-items: center;
      z-index: 1;
      transition: all 0.3s ease;
  }

  /* Light Theme Overrides for Hero */
  [data-theme="light"] .vt-hero {
      background: #f8fafc;
      /* Solid clean background */
      min-height: 40vh;
  }

  [data-theme="light"] .vt-hero::after {
      display: none;
      /* Remove bottom shadow/gradient */
  }

  [data-theme="light"] .floating-preview {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      /* Softer shadow */
      background: #ffffff !important;
      border: 1px solid rgba(0, 0, 0, 0.05) !important;
  }

  /* Hide decorative dots for a cleaner look */
  .vt-detection-point {
      display: none;
  }

  /* Headlines adaptive colors */
  .vt-hero .vt-title {
      color: var(--text) !important;
  }

  .vt-hero .vt-desc {
      color: var(--muted) !important;
  }

  .vt-hero .vt-title span[style*="color: var(--accent)"] {
      color: var(--accent) !important;
  }

  .hero-wrapper {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 10;
      padding: 20px;
  }

  .hero-text-side {
      position: relative;
      z-index: 2;
  }

  .hero-visual-side {
      position: relative;
      perspective: 1000px;
  }

  .floating-preview {
      position: relative;
      width: 100%;
      background: rgba(255, 255, 255, 0.03) !important;
      border: 1px solid rgba(255, 255, 255, 0.1) !important;
      border-radius: 24px;
      padding: 12px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
      animation: float 6s ease-in-out infinite;
      transform-style: preserve-3d;
  }

  .preview-img {
      width: 100%;
      border-radius: 16px;
      display: block;
      filter: saturate(1.1) brightness(1.1);
  }

  /* Floating UI Cards - Fixed Premium Dark Style */
  .ui-element {
      position: absolute;
      background: rgba(10, 14, 22, 0.92) !important;
      /* Slightly more opaque for better contrast on light Bg */
      backdrop-filter: blur(12px) !important;
      -webkit-backdrop-filter: blur(12px) !important;
      border: 1px solid rgba(255, 255, 255, 0.15) !important;
      border-radius: 16px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      z-index: 3;
      animation: float 5s ease-in-out infinite alternate;
      color: #ffffff !important;
      /* Forced white text */
  }

  /* Ensure all text inside cards stays white/correct color regardless of theme */
  .ui-element div,
  .ui-element span {
      color: #ffffff !important;
  }

  .ui-element .icon+div div:last-child {
      /* Keep the original green/blue for stats even inside cards */
      color: inherit !important;
  }

  .card-1 .ui-element-status,
  .card-1 div[style*="color: #10b981"] {
      color: #10b981 !important;
  }

  .card-2 .ui-element-status,
  .card-2 div[style*="opacity: 0.6"],
  .card-2 div[style*="color: var(--muted)"] {
      color: rgba(255, 255, 255, 0.6) !important;
  }

  .ui-element .icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .card-1 {
      top: -20px;
      right: 10px;
      animation-delay: 0.5s;
  }

  .card-2 {
      bottom: -30px;
      left: 10px;
      animation-delay: 1.2s;
  }

  .btn-large {
      padding: 18px 48px !important;
      font-size: 1.15rem !important;
      border-radius: 18px !important;
  }

  [data-theme="light"] .btn:not(.primary) {
      border: 2px solid #cbd5e1 !important;
      background: #ffffff !important;
      color: #0f172a !important;
  }

  [data-theme="light"] .btn:not(.primary):hover {
      background: #f1f5f9 !important;
      border-color: var(--accent) !important;
  }

  @media (max-width: 1523px) {
      .hero-wrapper {
          grid-template-columns: 1fr;
          text-align: center;
          gap: 80px;
      }

      .hero-text-side {
          display: flex;
          flex-direction: column;
          align-items: center;
      }

      .hero-text-side h1,
      .hero-text-side p {
          text-align: center !important;
      }

      .hero-actions {
          justify-content: center !important;
      }

      .hero-visual-side {
          display: none;
      }

      .vt-hero {
          padding: 40px 0;
          min-height: auto;
      }
  }

  @media (max-width: 480px) {

      .card-1,
      .card-2 {
          display: none;
      }
  }

  /* Particules flottantes REMOVED */
  .vt-hero::before {
      content: none;
  }

  /* Badge premium */
  .vt-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 24px;
      backdrop-filter: blur(10px);
  }

  /* Titre avec gradient animé - REMOVED */
  .vt-title {
      font-size: 3rem !important;
      font-weight: 700 !important;
      line-height: 1.1;
      letter-spacing: -0.04em;
      margin-bottom: 24px;
      background: none;
      -webkit-background-clip: border-box;
      background-clip: border-box;
      -webkit-text-fill-color: initial;
      color: var(--text);
  }

  /* Description */
  .vt-desc {
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.75);
      max-width: 700px;
      margin: 0 auto 40px;
      line-height: 1.7;
  }

  /* Stats cards avec effet hover */
  .vt-stats-grid {
      display: flex;
      gap: 24px;
      margin-top: 60px;
      justify-content: center;
      flex-wrap: wrap;
  }

  .vt-stat-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 24px 40px;
      border-radius: 24px;
      backdrop-filter: blur(20px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
  }

  .vt-stat-card:hover {
      transform: translateY(-8px) scale(1.05);
      border-color: rgba(59, 130, 246, 0.5);
      background: rgba(255, 255, 255, 0.08);
  }

  .vt-stat-value {
      font-size: 2.5rem;
      font-weight: 900;
      margin-bottom: 8px;
      display: block;
      background: none;
      -webkit-background-clip: border-box;
      background-clip: border-box;
      -webkit-text-fill-color: initial;
      color: #ffffff;
  }

  .vt-stat-label {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
  }

  /* Cards premium avec effets 3D */
  .vt-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 32px;
      padding: 32px;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(20px);
      transform-style: preserve-3d;
  }

  .vt-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.5s ease;
  }

  .vt-card:hover {
      transform: translateY(-15px) rotateX(2deg);
      border-color: rgba(59, 130, 246, 0.4);
      background: rgba(255, 255, 255, 0.06);
  }

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

  /* Icon box avec animation */
  .vt-icon-box {
      width: 70px;
      height: 70px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-bottom: 24px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.4s ease;
      color: #ffffff;
  }

  .vt-card:hover .vt-icon-box {
      transform: scale(1.1) rotate(5deg);
  }

  /* Removed specific colored glows */

  /* Industry grid */
  .vt-industry-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 50px;
  }

  .vt-industry-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 30px 20px;
      border-radius: 24px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
  }

  .vt-industry-card:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(59, 130, 246, 0.5);
      transform: translateY(-10px) scale(1.05);
  }

  .vt-industry-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 16px;
      color: #ffffff;
      transition: all 0.3s ease;
  }

  .vt-industry-card:hover .vt-industry-icon {
      transform: scale(1.2) rotate(10deg);
  }

  .vt-industry-name {
      display: block;
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      transition: color 0.3s ease;
  }

  .vt-industry-card:hover .vt-industry-name {
      color: #ffffff;
  }

  /* Grid responsive */
  .vt-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
  }

  /* Pricing section - wider cards with smaller gap */
  #pricing .container {
      max-width: 1400px;
      padding: 0 40px;
  }

  #pricing .vt-grid {
      gap: 16px;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      justify-content: center;
  }

  #pricing .vt-card {
      padding: 32px 24px;
      width: 100%;
      max-width: 100%;
  }

  /* Sections */
  .vt-section-dark {
      background: var(--bg);
      padding: 60px 0;
      border-top: 1px solid var(--border);
  }

  [data-theme="light"] .vt-section-dark {
      background: #ffffff;
  }

  .vt-section-alt {
      padding: 60px 0;
      position: relative;
  }

  /* Detection points animés - REMOVED PULSE */
  .vt-detection-point {
      position: absolute;
      width: 20px;
      height: 20px;
      background: #ffffff;
      border-radius: 50%;
      pointer-events: none;
  }


  /* Liste avec checkmarks */
  .vt-list-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
      color: rgba(255, 255, 255, 0.85);
      font-size: 1rem;
      transition: all 0.3s ease;
  }

  .vt-list-item:hover {
      transform: translateX(5px);
      color: #ffffff;
  }

  .vt-check {
      color: #ffffff;
      font-weight: bold;
      font-size: 1.2rem;
      line-height: 1;
      flex-shrink: 0;
  }

  /* Pricing toggle */
  .pricing-toggle {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 80px;
  }

  .toggle-container {
      display: flex;
      background: rgba(255, 255, 255, 0.03);
      padding: 4px;
      border-radius: 100px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      position: relative;
      width: fit-content;
  }

  .toggle-btn {
      padding: 10px 28px;
      border-radius: 100px;
      border: none;
      background: transparent;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      z-index: 2;
  }

  .toggle-btn.active {
      background: var(--primary-blue);
      color: #fff;
      box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  }

  .vt-section-pricing {
      padding: 20px 0 80px;
      background: var(--bg);
      transition: background 0.3s ease;
  }

  [data-theme="light"] .vt-section-pricing {
      background: #f8fafc;
  }

  .tax-note {
      font-size: 0.85rem;
      color: var(--pricing-billed-note);
      font-weight: 500;
      text-align: center;
      margin-top: 8px;
  }

  /* Combined Adaptive Pricing System */
  :root {
      --pricing-card-bg: rgba(10, 14, 22, 0.6);
      --pricing-card-border: rgba(255, 255, 255, 0.08);
      --pricing-text-main: #ffffff;
      --pricing-text-muted: rgba(255, 255, 255, 0.6);
      --pricing-billed-note: rgba(255, 255, 255, 0.4);
      --pricing-check-color: var(--primary-blue);
      --pricing-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  [data-theme="light"] {
      --pricing-card-bg: rgba(255, 255, 255, 0.9);
      --pricing-card-border: rgba(0, 0, 0, 0.1);
      --pricing-text-main: #0f172a;
      --pricing-text-muted: #64748b;
      --pricing-billed-note: #94a3b8;
      --pricing-check-color: #3b82f6;
      --pricing-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .pricing-card {
      display: flex;
      flex-direction: column;
      text-align: left !important;
      padding: 32px 24px !important;
      background: var(--pricing-card-bg) !important;
      border: 1px solid var(--pricing-card-border) !important;
      border-radius: 32px !important;
      backdrop-filter: blur(20px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: var(--pricing-shadow);
  }

  .pricing-card:hover {
      transform: translateY(-8px);
      border-color: var(--primary-blue) !important;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  }

  .pricing-card-title {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--pricing-text-main);
      letter-spacing: -0.02em;
  }

  .pricing-card-desc {
      font-size: 0.95rem;
      color: var(--pricing-text-muted);
      line-height: 1.5;
      margin-bottom: 12px;
      min-height: 50px;
  }

  .price-block {
      margin-bottom: 16px;
      display: flex;
      flex-direction: column;
      gap: 4px;
  }

  .vt-list-item i {
      width: 20px;
      height: 20px;
      stroke-width: 2.5px;
      flex-shrink: 0;
  }

  /* Resetting Lucide font color if needed */
  .vt-list-item svg {
      color: var(--pricing-check-color);
  }

  .price-main {
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--pricing-text-main);
  }

  .price-unit {
      font-size: 1.1rem;
      color: var(--pricing-text-muted);
      font-weight: 600;
  }

  .price-off {
      text-decoration: line-through;
      opacity: 0.3;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--pricing-text-main);
  }

  .quote-text {
      font-size: 2.2rem;
      color: var(--primary-blue);
  }

  .feature-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

  .vt-list-item {
      font-size: 0.95rem;
      color: var(--pricing-text-main);
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .vt-check {
      color: var(--pricing-check-color);
      font-weight: bold;
  }

  /* Pro Highlight Psychology */
  .pro-highlight {
      border-color: var(--primary-blue) !important;
      border-width: 2px !important;
      background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), transparent) !important;
      position: relative;
      transform: scale(1.02);
      z-index: 2;
  }

  [data-theme="light"] .pro-highlight {
      background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.05), #ffffff) !important;
  }

  .popular-tag {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--primary-blue);
      color: #fff;
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  }

  .discount-pill {
      background: #10b981;
      color: #fff;
      padding: 2px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 800;
  }

  .billed-note {
      font-size: 0.85rem;
      color: var(--pricing-billed-note);
      font-weight: 600;
      margin-top: 4px;
  }

  .pricing-btn {
      width: 100%;
      padding: 12px 24px !important;
      border-radius: 100px !important;
      font-weight: 700 !important;
      font-size: 0.95rem !important;
      text-align: center;
      justify-content: center;
      transition: all 0.3s ease;
  }

  .pricing-btn.secondary {
      background: rgba(255, 255, 255, 0.05);
      color: var(--pricing-text-main);
      border: 1px solid var(--pricing-card-border);
  }

  [data-theme="light"] .pricing-btn.secondary {
      background: #f1f5f9;
      color: #0f172a;
      border-color: transparent;
  }

  .pricing-btn:hover {
      transform: scale(1.02);
      filter: brightness(1.1);
  }

  .discount-badge {
      position: absolute;
      top: -20px;
      right: -20px;
      font-size: 10px;
      background: var(--accent);
      color: #000;
      padding: 4px 8px;
      border-radius: 8px;
      font-weight: 900;
      white-space: nowrap;
  }

  /* Responsive */
  @media (max-width: 1400px) {
      #pricing .container {
          padding: 0 30px;
      }

      #pricing .vt-grid {
          max-width: 1400px;
          gap: 20px;
      }

      #pricing .vt-card {
          padding: 40px 28px;
      }
  }

  @media (max-width: 1200px) {
      .vt-grid[style*="grid-template-columns: repeat(4, 1fr)"] {
          grid-template-columns: repeat(2, 1fr) !important;
      }

      #pricing .container {
          padding: 0 24px;
      }

      #pricing .vt-grid {
          max-width: 900px;
          gap: 24px;
          grid-template-columns: repeat(2, 1fr);
      }

      #pricing .vt-card {
          max-width: 450px;
          margin: 0 auto;
      }
  }

  @media (max-width: 1024px) {
      .vt-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 768px) {
      .vt-grid {
          grid-template-columns: 1fr;
      }

      .vt-title {
          font-size: 2.5rem;
      }

      .vt-desc {
          font-size: 1.1rem;
      }

      .vt-card {
          padding: 32px;
      }

      #pricing .container {
          padding: 0 16px;
      }

      #pricing .vt-grid {
          grid-template-columns: 1fr !important;
          max-width: 100%;
          gap: 20px;
      }

      #pricing .vt-card {
          max-width: 100%;
          padding: 32px 24px;
          margin: 0;
      }
  }

  html {
      scroll-behavior: smooth;
  }

  [ data-theme="light"] .vt-hero {
      background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('/static/img/hero_banner.png');
      background-size: cover !important;
      background-position: center;
  }

  [data-theme="light"] .vt-hero::before {
      background: none;
  }

  [data-theme="light"] .vt-hero::after {
      background: rgba(255, 255, 255, 0.5);
      opacity: 0.5;
  }

  [data-theme="light"] .vt-title {
      background: none;
      -webkit-text-fill-color: initial;
      color: #000000;
  }

  [data-theme="light"] .vt-desc {
      color: rgba(15, 23, 42, 0.75);
  }

  [data-theme="light"] .vt-badge {
      background: rgba(59, 130, 246, 0.1);
      border-color: rgba(59, 130, 246, 0.3);
      color: #2563eb;
      box-shadow: none;
  }

  [data-theme="light"] .vt-stat-card {
      background: rgba(255, 255, 255, 0.9);
      border-color: rgba(2, 6, 23, 0.12);
  }

  [data-theme="light"] .vt-stat-card:hover {
      background: rgba(255, 255, 255, 1);
      border-color: rgba(37, 99, 235, 0.4);
  }

  [data-theme="light"] .vt-stat-value {
      background: none;
      -webkit-background-clip: border-box;
      background-clip: border-box;
      -webkit-text-fill-color: initial;
      color: #2563eb;
  }

  [data-theme="light"] .vt-card {
      background: rgba(255, 255, 255, 0.95);
      border-color: rgba(2, 6, 23, 0.12);
  }

  [data-theme="light"] .vt-card:hover {
      background: rgba(255, 255, 255, 1);
      border-color: rgba(37, 99, 235, 0.4);
  }

  [data-theme="light"] .vt-card::before {
      background: none;
  }

  [data-theme="light"] .vt-icon-box {
      background: rgba(59, 130, 246, 0.1);
      border-color: rgba(59, 130, 246, 0.2);
  }

  [data-theme="light"] .vt-section-dark {
      background: #f1f5f9;
      border-top-color: rgba(2, 6, 23, 0.08);
  }

  [data-theme="light"] .vt-section-alt {
      background: #ffffff;
  }

  [data-theme="light"] .vt-industry-card {
      background: rgba(255, 255, 255, 0.9);
      border-color: rgba(2, 6, 23, 0.12);
  }

  [data-theme="light"] .vt-industry-card:hover {
      background: rgba(255, 255, 255, 1);
      border-color: rgba(37, 99, 235, 0.5);
  }

  [data-theme="light"] .vt-industry-icon {
      color: #2563eb;
  }

  [data-theme="light"] .vt-industry-name {
      color: rgba(15, 23, 42, 0.7);
  }

  [data-theme="light"] .vt-industry-card:hover .vt-industry-name {
      color: #0f172a;
  }

  [data-theme="light"] .vt-list-item {
      color: rgba(15, 23, 42, 0.85);
  }

  [data-theme="light"] .vt-list-item:hover {
      color: #0f172a;
  }

  [data-theme="light"] .vt-check {
      color: #2563eb;
  }

  [data-theme="light"] .vt-detection-point {
      background: #2563eb;
      box-shadow: 0 0 40px rgba(37, 99, 235, 0.8);
  }

  [data-theme="light"] .toggle-container {
      background: rgba(2, 6, 23, 0.05);
      border-color: rgba(2, 6, 23, 0.1);
  }

  [data-theme="light"] .toggle-btn {
      color: rgba(15, 23, 42, 0.6);
  }

  [data-theme="light"] .toggle-btn.active {
      background: #2563eb;
      color: #ffffff;
  }

  [data-theme="light"] .vt-stat-label {
      color: rgba(15, 23, 42, 0.6);
  }

  [data-theme="light"] .vt-desc {
      color: rgba(15, 23, 42, 0.8);
  }

  [data-theme="light"] .vt-industry-name {
      color: rgba(15, 23, 42, 0.7);
  }

  [data-theme="light"] .vt-list-item {
      color: rgba(15, 23, 42, 0.85);
  }

  /* Hero Banner Enhancement */
  /* Lien fix */
  a {
      text-decoration: none !important;
  }

  .vt-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #050a14 0%, #0a1428 50%, #050a14 100%);
      background-size: 200% 200%;
      animation: gradientShift 15s ease infinite;
      opacity: 0.2;
      pointer-events: none;
      z-index: 0;
  }

  .vt-hero>.container {
      position: relative;
      z-index: 1;
  }

  /* Responsive banner */
  @media (max-width: 768px) {
      .vt-hero {
          background-attachment: scroll;

      }
  }

  /* Additional premium effects */
  .vt-card img {
      transition: transform 0.5s ease;
      border: 1px solid var(--border);
      /* Moved from inline */
  }

  .vt-card:hover img {
      transform: scale(1.05);
      border-color: var(--accent);
  }

  [data-theme="light"] .vt-card img {
      filter: invert(0.92) hue-rotate(180deg) !important;
      border-color: #e2e8f0;
      /* Light gray border */
  }

  /* Credit badge glow REMOVED */
  .vt-card>div[style*="background: rgba(0, 240, 255"] {
      animation: none;
  }

  .vt-card>div[style*="background: rgba(189, 0, 255"] {
      animation: none;
  }

  .vt-card>div[style*="background: rgba(0, 255, 102"] {
      animation: none;
  }

  /* Icons Light Mode */
  [data-theme="light"] .vt-icon-box {
      color: #3b82f6;
      background: rgba(59, 130, 246, 0.1);
      border-color: rgba(59, 130, 246, 0.2);
  }

  [data-theme="light"] .vt-industry-icon {
      color: #3b82f6;
  }

  /* Light mode paragraph color override */
  [data-theme="light"] p {
      color: #0f172a !important;
      /* Dark slate text for better readability in light mode */
  }

  /* Pricing Toggle */
  .pricing-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 60px;
  }

  .toggle-container {
      display: flex;
      gap: 8px;
      background: rgba(255, 255, 255, 0.05);
      padding: 6px;
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .toggle-btn {
      padding: 12px 28px;
      border-radius: 50px;
      border: none;
      background: transparent;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      font-size: 0.95rem;
      position: relative;
  }

  .toggle-btn:hover {
      color: white;
  }

  .toggle-btn.active {
      background: #3b82f6;
      color: #fff;
      box-shadow: none;
  }

  [data-theme="light"] .toggle-btn {
      color: rgba(15, 23, 42, 0.6);
  }

  [data-theme="light"] .toggle-btn:hover {
      color: #0f172a;
  }

  [data-theme="light"] .toggle-btn.active {
      color: #fff;
  }

  .discount-badge {
      position: absolute;
      top: -20px;
      right: -10px;
      background: var(--accent);
      color: #000;
      font-size: 0.7rem;
      padding: 4px 10px;
      border-radius: 8px;
      font-weight: 900;
      white-space: nowrap;
      box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
      pointer-events: none;
  }

  [data-theme="light"] .toggle-container {
      background: rgba(0, 0, 0, 0.05);
      border-color: rgba(0, 0, 0, 0.1);
  }

  /* Pricing cards - align buttons at bottom */
  .pricing-card {
      display: flex;
      flex-direction: column;
  }

  .pricing-card-content {
      flex: 1;
  }