/* ERP next CSS */
  .top-bar {
      position: relative;
      z-index: 20;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      background: #050816;
      color: #dbeafe;
      font-size: 16px;
      font-weight: 600;
    }

    .top-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 42px;
      text-align: center;
    }

    .top-bar-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      padding: 4px 10px;
      color: #ffffff;
      font-size: 16px;
      font-weight: 800;
    }

    .hero {
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid rgba(148, 163, 184, 0.18);
      background:
       linear-gradient(180deg, rgba(5, 8, 22, 0.97), rgba(11, 16, 32, 0.98) 62%, rgb(10 15 30) 62.1%),#050816;
      color: #ffffff;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border-radius: 999px;
      filter: blur(58px);
      opacity: 0.84;
      animation: floatGlow 8s ease-in-out infinite alternate;
    }

    .hero::before {
      width: 390px;
      height: 390px;
      left: -110px;
      top: 60px;
      background: rgba(99, 91, 255, 0.45);
    }

    .hero::after {
      width: 320px;
      height: 320px;
      right: -80px;
      top: 150px;
      background: rgba(6, 182, 212, 0.35);
      animation-delay: 1s;
    }

    .hero-grid-pattern {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
      background-size: 52px 52px;
      mask-image: linear-gradient(to bottom, black, transparent 72%);
      opacity: 0.52;
      pointer-events: none;
    }

    .orb {
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: #22d3ee;
      box-shadow: 0 0 36px #22d3ee;
      opacity: 0.75;
      animation: orbit 12s linear infinite;
      pointer-events: none;
    }

    .orb.one { left: 10%; top: 28%; }
    .orb.two { right: 18%; top: 18%; animation-delay: -4s; background: #a78bfa; box-shadow: 0 0 36px #a78bfa; }
    .orb.three { left: 42%; top: 12%; animation-delay: -7s; background: #34d399; box-shadow: 0 0 36px #34d399; }

    .navbar {
      position: relative;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 220px;
    }

    .brand-mark {
      position: relative;
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(99, 91, 255, 0.9), rgba(6, 182, 212, 0.78));
      box-shadow: 0 18px 44px rgba(99, 91, 255, 0.28);
      color: #ffffff;
      font-weight: 900;
    }

    .brand-title {
      font-size: 17px;
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .brand-subtitle {
      margin-top: 3px;
      color: #9fb0ce;
      font-size: 16px;
      font-weight: 600;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      color: #cbd5e1;
      font-size: 16px;
      font-weight: 650;
    }

    .nav-links a {
      transition: color 0.2s ease;
      font-size: 16px;
      color: #e5e5e5;
      text-decoration:none;
    }

    .nav-links a:hover {
      color: #ffffff;
    }

    .nav-actions {
      display: flex;
      justify-content: flex-end;
      min-width: 220px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      border-radius: 999px;
      padding: 13px 20px;
      font-size: 16px;
      font-weight: 800;
      line-height: 1;
      transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
      white-space: nowrap;
      will-change: transform;
    }

    .btn svg {
      width: 17px;
      height: 17px;
      transition: transform 0.22s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:hover svg {
      transform: translateX(3px);
    }

    .btn-grad-primary {
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: linear-gradient(135deg,#635bff,#7c3aed);
      color: #ffffff;
      box-shadow: 0 18px 45px rgba(99, 91, 255, 0.32);
    }

    .btn-grad-primary:hover {
      box-shadow: 0 22px 55px rgba(99, 91, 255, 0.42);
    }

    

    .btn-ghost {
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.065);
      color: #ffffff;
      backdrop-filter: blur(16px);
    }

    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.28);
      background: rgba(255, 255, 255, 0.12);
      color:#fff;
    }

    .btn-dark {
      background:#050816;
      color: #ffffff;
      box-shadow:  0 12px 30px rgba(15, 23, 42, 0.08);
    }

    .btn-dark:hover {
      background: #111827;
      box-shadow:  0 22px 60px rgba(15, 23, 42, 0.13);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.04fr 0.96fr;
      align-items: center;
      gap: 56px;
      padding: 78px 0 104px;
    }

    .eyebrow-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 28px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      background: #f0f5ff40;
      padding: 8px 12px;
      color: #dbeafe;
      font-size: 14px;
      font-weight: 500;
      backdrop-filter: blur(14px);
      color:#fff;
    }

    .eyebrow-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #34d399;
      box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.12);
    }


    .gradient-text {
      background: linear-gradient(120deg, #ffffff 0%, #c7d2fe 42%, #67e8f9 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-copy {
      max-width: 670px;
      margin-top: 24px;
      color: #cbd5e1;
      font-size: 18px;
      font-weight: 400;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .hero-trust {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 650px;
      margin-top: 34px;
    }

    .stat-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.075);
      padding: 16px;
      backdrop-filter: blur(14px);
      transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
    }

    .stat-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.24);
      background: rgba(255, 255, 255, 0.11);
    }

    .stat-card strong {
      display: block;
      color: #ffffff;
      font-size: 25px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .stat-card span {
      display: block;
      margin-top: 8px;
      color: #9fb0ce;
      font-size: 16px;
      font-weight: 700;
    }

    .dashboard-shell {
      position: relative;
      transform-style: preserve-3d;
    }

    .dashboard-shell::before {
      content: "";
      position: absolute;
      inset: -18px;
      border-radius: 42px;
      background:
        radial-gradient(circle at 20% 20%, rgba(99, 91, 255, 0.48), transparent 34%),
        radial-gradient(circle at 80% 0%, rgba(6, 182, 212, 0.38), transparent 34%),
        rgba(255, 255, 255, 0.08);
      filter: blur(20px);
      opacity: 0.92;
      animation: pulseGlow 4s ease-in-out infinite alternate;
    }

    .dashboard-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 30px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
      box-shadow: 0 34px 90px rgba(15, 23, 42, 0.18);
      backdrop-filter: blur(28px);
    }

    .window-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 17px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.06);
    }

    .window-dots {
      display: flex;
      gap: 7px;
    }

    .window-dots span {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.32);
    }

    .window-title {
      color: #dbeafe;
      font-size: 16px;
      font-weight: 800;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid rgba(52, 211, 153, 0.22);
      border-radius: 999px;
      background: rgba(16, 185, 129, 0.12);
      padding: 7px 10px;
      color: #bbf7d0;
      font-size: 16px;
      font-weight: 800;
    }

    .status-pill::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #34d399;
      box-shadow: 0 0 16px #34d399;
    }

    .dashboard-body {
      display: grid;
      gap: 16px;
      padding: 22px;
    }

    .deploy-progress {
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 24px;
      background: rgba(5, 8, 22, 0.58);
      padding: 18px;
    }

    .deploy-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 15px;
    }

    .deploy-head h3 {
      color: #ffffff;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .deploy-head p {
      color: #9fb0ce;
      font-size: 16px;
      font-weight: 600;
    }

    .progress-track {
      overflow: hidden;
      height: 9px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
    }

    .progress-bar {
      width: 86%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg,#635bff,#06b6d4);
      box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
      animation: shimmer 2.5s linear infinite;
    }

    .console-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .console-metric {
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.08);
      padding: 16px;
    }

    .console-metric small {
      display: flex;
      align-items: center;
      gap: 7px;
      color: #9fb0ce;
      font-size: 16px;
      font-weight: 700;
    }

    .console-metric strong {
      display: block;
      margin-top: 10px;
      color: #ffffff;
      font-size: 26px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .module-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .module-chip {
      display: flex;
      align-items: center;
      gap: 9px;
      min-height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.075);
      padding: 10px 12px;
      color: #e2e8f0;
      font-size: 16px;
      font-weight: 700;
    }

    .chip-check {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: rgba(16, 185, 129, 0.14);
      color: #86efac;
      font-size: 16px;
    }

    .mini-terminal {
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      background: rgba(2, 6, 23, 0.78);
    }

    .terminal-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      color: #cbd5e1;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
      font-size: 16px;
    }

    .terminal-row:last-child {
      border-bottom: 0;
    }

    .terminal-row .ok {
      color: #86efac;
    }

    .section {
      position: relative;
      padding: 108px 0;
    }

    .section.compact {
      padding: 88px 0;
    }

    .section-white {
      background:#ffffff;
    }

    .section-dark {
      overflow: hidden;
      background:
        radial-gradient(circle at 0% 20%, rgba(99, 91, 255, 0.22), transparent 34rem),
        radial-gradient(circle at 100% 20%, rgba(6, 182, 212, 0.15), transparent 30rem),
       #050816;
      color: #ffffff;
    }

    .section-soft {
      background:
        radial-gradient(circle at 50% 0%, rgba(99, 91, 255, 0.10), transparent 36rem),
       #f6f8fc;
    }

    .section-head {
      max-width: 820px;
      margin: 0 auto 52px;
      text-align: center;
    }

    .section-head.left {
      margin-inline: 0;
      text-align: left;
    }

    .label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      border: 1px solid rgba(99, 91, 255, 0.16);
      border-radius: 999px;
      background: rgba(99, 91, 255, 0.08);
      padding: 8px 13px;
      color:#635bff;
      font-size: 16px;
      font-weight: 800;
    }

    .label::before {
      content: "✦";
      color:#06b6d4;
    }

    .section-dark .label {
      border-color: rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.08);
      color: #dbeafe;
    }

    h2 {
      color:#0f172a;
      font-size: clamp(40px, 4.4vw, 48px);
      line-height: 1.08;
    }

    .section-dark h2 {
      color: #ffffff;
    }

    .section-desc {
      margin-top: 18px;
      color:#64748b;
      font-size: 17px;
      font-weight: 400;
      line-height: 1.78;
    }

    .section-dark .section-desc {
      color: #cbd5e1;
    }

    .split {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 56px;
      align-items: center;
    }

    .content-panel {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.25);
      border-radius: 34px;
      background: rgba(255, 255, 255, 0.84);
      padding: 30px;
      box-shadow:  0 12px 30px rgba(15, 23, 42, 0.08);
      backdrop-filter: blur(18px);
    }

    .content-panel::after {
      content: "";
      position: absolute;
      inset: auto -80px -80px auto;
      width: 180px;
      height: 180px;
      border-radius: 999px;
      background: rgba(99, 91, 255, 0.12);
      filter: blur(16px);
    }

    .content-panel h3 {
      position: relative;
      z-index: 1;
      margin-bottom: 12px;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .content-panel p {
      position: relative;
      z-index: 1;
      color:#64748b;
      font-size: 16px;
      line-height: 1.76;
    }

    .pain-grid,
    .feature-grid,
    .industry-grid,
    .infra-grid,
    .different-grid {
      display: grid;
      gap: 16px;
    }

    .pain-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mini-card {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      min-height: 76px;
      border: 1px solid rgba(148, 163, 184, 0.25);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.82);
      padding: 16px;
      color: #334155;
      font-size: 16px;
      font-weight: 650;
      line-height: 1.55;
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.045);
      transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
      backdrop-filter: blur(14px);
    }

    .mini-card:hover {
      transform: translateY(-5px);
      border-color: rgba(99, 91, 255, 0.28);
      background: #ffffff;
      box-shadow:  0 12px 30px rgba(15, 23, 42, 0.08);
    }

    .mini-icon {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: rgba(99, 91, 255, 0.1);
      color:#635bff;
      font-weight: 900;
    }

    .section-dark .mini-card {
      border-color: rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.07);
      color: #dbeafe;
    }

    .section-dark .mini-card:hover {
      border-color: rgba(255, 255, 255, 0.24);
      background: rgba(255, 255, 255, 0.1);
    }

    .section-dark .mini-icon {
      background: rgba(255, 255, 255, 0.1);
      color: #67e8f9;
    }

    .pricing-toolbar {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      margin-top: -24px;
      margin-bottom: 46px;
    }

    .pricing-toggle {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      border: 1px solid rgba(148, 163, 184, 0.25);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      padding: 6px;
      box-shadow:  0 12px 30px rgba(15, 23, 42, 0.08);
      backdrop-filter: blur(14px);
    }

    .billing-btn {
      position: relative;
      z-index: 1;
      border-radius: 999px;
      background: transparent;
      color:#64748b;
      padding: 10px 22px;
      font-size: 16px;
      font-weight: 800;
      transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    }

    .billing-btn.active {
      background:#050816;
      color: #ffffff;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
    }

    .saving-text {
      color:#64748b;
      font-size: 16px;
      font-weight: 600;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 20px;
    }

    .plan-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      border: 1px solid rgba(148, 163, 184, 0.25);
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.9);
      padding: 26px;
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
      transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease, background 0.26s ease;
      backdrop-filter: blur(14px);
    }

    .plan-card:hover {
      transform: translateY(-8px) scale(1.01);
      border-color: rgba(99, 91, 255, 0.28);
      background: #ffffff;
      box-shadow:  0 22px 60px rgba(15, 23, 42, 0.13);
    }

    .plan-card.recommended {
      border-color: rgba(99, 91, 255, 0.46);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        linear-gradient(135deg, #111827, #050816);
      color: #ffffff;
      box-shadow: 0 30px 80px rgba(99, 91, 255, 0.23);
      animation: selectedPulse 3.3s ease-in-out infinite;
    }

    .plan-ribbon {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 999px;
      background: linear-gradient(135deg,#635bff,#06b6d4);
      color: #ffffff;
      padding: 7px 14px;
      font-size: 16px;
      font-weight: 900;
      box-shadow: 0 15px 35px rgba(99, 91, 255, 0.32);
      white-space: nowrap;
    }

    .plan-badge {
      color:#635bff;
      font-size: 16px;
      font-weight: 850;
    }

    .recommended .plan-badge {
      color: #a5b4fc;
    }

    .plan-card h3 {
      margin-top: 8px;
      color: inherit;
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .plan-subtitle {
      min-height: 52px;
      margin-top: 9px;
      color:#64748b;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.65;
    }

    .recommended .plan-subtitle {
      color: #cbd5e1;
    }

    .price {
      margin: 22px 0;
    }

    .price strong {
      color: inherit;
      font-size: 34px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.05em;
    }

    .price span {
      margin-left: 4px;
      color:#64748b;
      font-size: 16px;
      font-weight: 600;
    }

    .recommended .price span {
      color: #cbd5e1;
    }

    .plan-config {
      display: grid;
      gap: 0;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 20px;
      background: rgba(248, 250, 252, 0.88);
      margin-bottom: 22px;
    }

    .recommended .plan-config {
      border-color: rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.07);
    }

    .config-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 11px 14px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    }

    .config-row:last-child {
      border-bottom: 0;
    }

    .config-key {
      color:#64748b;
      font-size: 13px;
      font-weight: 850;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .recommended .config-key {
      color: #94a3b8;
    }

    .config-value {
      text-align: right;
      color: inherit;
      font-size: 16px;
      font-weight: 800;
    }

    .feature-list {
      display: grid;
      gap: 12px;
      margin: 0 0 24px;
      list-style: none;
      flex: 1;
    }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #334155;
      font-size: 16px;
      line-height: 1.55;
    }

    .recommended .feature-list li {
      color: #e2e8f0;
    }

    .checkmark {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      width: 18px;
      height: 18px;
      margin-top: 1px;
      border-radius: 999px;
      background: rgba(16, 185, 129, 0.12);
      color:#10b981;
      font-size: 16px;
      font-weight: 900;
    }

    .recommended .checkmark {
      background: rgba(16, 185, 129, 0.18);
      color: #86efac;
    }

    .plan-card .btn {
      width: 100%;
      margin-top: auto;
    }

    .plan-card.recommended .btn {
      background: #ffffff;
      color:#050816;
      box-shadow: 0 16px 36px rgba(255, 255, 255, 0.12);
    }

    .feature-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 44px;
    }

    .feature-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.25);
      border-radius: 26px;
      background: #ffffff;
      padding: 24px;
      box-shadow:  0 12px 30px rgba(15, 23, 42, 0.08);
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .feature-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 15% 0%, rgba(99, 91, 255, 0.11), transparent 45%);
      opacity: 0;
      transition: opacity 0.24s ease;
    }

    .feature-card:hover {
      transform: translateY(-7px);
      border-color: rgba(99, 91, 255, 0.25);
      box-shadow:  0 22px 60px rgba(15, 23, 42, 0.13);
    }

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

    .feature-icon {
      position: relative;
      z-index: 1;
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      margin-bottom: 18px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(99, 91, 255, 0.12), rgba(6, 182, 212, 0.12));
      color:#635bff;
      font-size: 26px;
    }

    .feature-card h3,
    .feature-card p {
      position: relative;
      z-index: 1;
    }

    .feature-card h3 {
      margin-bottom: 8px;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .feature-card p {
      color:#64748b;
      font-size: 18px;
      line-height: 1.7;
    }

    .different-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 36px;
    }

    .industry-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      margin-top: 42px;
    }

    .industry-card {
      position: relative;
      overflow: hidden;
      min-height: 118px;
      border: 1px solid rgba(148, 163, 184, 0.25);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.82);
      padding: 18px;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
      backdrop-filter: blur(14px);
    }

    .industry-card:hover {
      transform: translateY(-6px);
      border-color: rgba(99, 91, 255, 0.28);
      box-shadow:  0 12px 30px rgba(15, 23, 42, 0.08);
    }

    .industry-card::after {
      content: "";
      position: absolute;
      right: -40px;
      bottom: -40px;
      width: 100px;
      height: 100px;
      border-radius: 999px;
      background: rgba(99, 91, 255, 0.1);
      transition: transform 0.24s ease;
    }

    .industry-card:hover::after {
      transform: scale(1.35);
    }

    .industry-icon {
      position: relative;
      z-index: 1;
      display: grid;
      place-items: center;
      width: 60px;
      height: 70px;
      margin-bottom: 14px;
      border-radius: 14px;
      background: #ffffff;
      color:#635bff;
      box-shadow: 0 10px 25px rgba(99, 91, 255, 0.12);
      font-size: 20px;
    }

    .industry-card h3 {
      position: relative;
      z-index: 1;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.01em;
    }

    .simplicity-band {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 40px;
    }

    .simplicity-item {
      border: 1px solid rgba(99, 91, 255, 0.16);
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(99, 91, 255, 0.08), rgba(6, 182, 212, 0.06));
      padding: 22px;
    }

    .simplicity-item strong {
      display: block;
      margin-bottom: 5px;
      font-size: 17px;
      font-weight: 800;
    }

    .simplicity-item span {
      color:#64748b;
      font-size: 16px;
    }

    .comparison-wrap {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0 34px 90px rgba(15, 23, 42, 0.18);
      backdrop-filter: blur(18px);
    }

    .comparison-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .comparison-top h3 {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .comparison-top p {
      margin-top: 4px;
      color: #9fb0ce;
      font-size: 16px;
    }

    .table-scroll {
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(148, 163, 184, 0.5) rgba(255, 255, 255, 0.08);
    }

    .table-scroll::-webkit-scrollbar {
      height: 10px;
    }

    .table-scroll::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.06);
    }

    .table-scroll::-webkit-scrollbar-thumb {
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.55);
    }

    .comparison-table {
      width: 100%;
      min-width: 980px;
      border-collapse: separate;
      border-spacing: 0;
      color: #e5edff;
      font-size: 16px;
    }

    .comparison-table thead th {
      position: sticky;
      top: 0;
      z-index: 2;
      background: rgba(11, 16, 32, 0.96);
      color: #cbd5e1;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(16px);
    }

    .comparison-table th,
    .comparison-table td {
      padding: 17px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      vertical-align: middle;
      text-align: left;
    }

    .comparison-table tbody tr:nth-child(odd) td {
      background: rgba(255, 255, 255, 0.025);
    }

    .comparison-table tbody tr:hover td {
      background: rgba(255, 255, 255, 0.06);
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
      color: #ffffff;
      font-weight: 850;
    }

    .comparison-table th:nth-child(4),
    .comparison-table td:nth-child(4) {
      background: rgba(99, 91, 255, 0.13);
      border-left: 1px solid rgba(99, 91, 255, 0.24);
      border-right: 1px solid rgba(99, 91, 255, 0.24);
    }

    .comparison-table thead th:nth-child(4) {
      color: #ffffff;
      background: linear-gradient(135deg, rgba(99, 91, 255, 0.42), rgba(6, 182, 212, 0.18));
    }

    .cell-good,
    .cell-bad,
    .cell-mid {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      line-height: 1.45;
    }

    .cell-good::before,
    .cell-bad::before,
    .cell-mid::before {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      width: 20px;
      height: 20px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 900;
    }

    .cell-good::before {
      content: "✓";
      background: rgba(16, 185, 129, 0.16);
      color: #86efac;
    }

    .cell-bad::before {
      content: "×";
      background: rgba(239, 68, 68, 0.14);
      color: #fca5a5;
    }

    .cell-mid::before {
      content: "•";
      background: rgba(245, 158, 11, 0.15);
      color: #fcd34d;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      margin-top: 46px;
    }

    .step-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.25);
      border-radius: 28px;
      background: #ffffff;
      padding: 28px;
      box-shadow:  0 12px 30px rgba(15, 23, 42, 0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .step-card:hover {
      transform: translateY(-7px);
      border-color: rgba(99, 91, 255, 0.25);
      box-shadow:  0 22px 60px rgba(15, 23, 42, 0.13);
    }

    .step-number {
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      margin-bottom: 20px;
      border-radius: 16px;
      background: linear-gradient(135deg,#050816, #1e293b);
      color: #ffffff;
      font-weight: 900;
      box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
    }

    .step-card h3 {
      margin-bottom: 10px;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .step-card p,
    .step-card li {
      color:#64748b;
      font-size: 18px;
      line-height: 1.72;
    }

    .step-card ul {
      display: grid;
      gap: 7px;
      margin-top: 14px;
      padding-left: 18px;
    }

    .infra-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 46px;
    }

    .infra-card {
      position: relative;
      overflow: hidden;
      min-height: 218px;
      border: 1px solid rgba(148, 163, 184, 0.25);
      border-radius: 26px;
      background: #ffffff;
      padding: 34px;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .infra-card:hover {
      transform: translateY(-7px);
      border-color: rgba(99, 91, 255, 0.28);
      box-shadow:  0 12px 30px rgba(15, 23, 42, 0.08);
    }

    .infra-card::after {
      content: "";
      position: absolute;
      inset: auto -50px -50px auto;
      width: 130px;
      height: 130px;
      border-radius: 999px;
      background: rgba(6, 182, 212, 0.1);
      filter: blur(4px);
    }

    .infra-icon {
      position: relative;
      z-index: 1;
      display: grid;
      place-items: center;
      width: 54px;
      height: 60px;
      margin-bottom: 16px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(99, 91, 255, 0.12), rgba(6, 182, 212, 0.12));
      color:#635bff;
      font-size: 22px;
    }

    .infra-card h3,
    .infra-card p {
      position: relative;
      z-index: 1;
    }

    .infra-card h3 {
      margin-bottom: 9px;
      font-size: 17px;
      font-weight: 800;
      line-height: 1.28;
      letter-spacing: -0.02em;
    }

    .infra-card p {
      color:#64748b;
      font-size: 16px;
      line-height: 1.68;
    }

    .focus-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 34px;
      background:
       radial-gradient(circle at right top, rgba(6, 182, 212, 0.22), transparent 32rem), linear-gradient(135deg, rgb(24 21 78 / 94%), rgba(5, 8, 22, 0.98));
      color: #ffffff;
      padding: 48px;
      box-shadow: 0 34px 90px rgba(15, 23, 42, 0.18);
    }

    .focus-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
      background-size: 40px 40px;
      mask-image: linear-gradient(to bottom, black, transparent 80%);
      opacity: 0.5;
      pointer-events: none;
    }

    .focus-card > * {
      position: relative;
      z-index: 1;
    }

    .focus-card h2 {
      color: #ffffff;
    }

    .focus-card p {
      max-width: 890px;
      margin-top: 17px;
      color: #dbeafe;
      font-size: 17px;
      line-height: 1.78;
    }

    .focus-points {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
      margin-top: 34px;
    }

    .focus-point {
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.09);
      padding: 16px 14px;
      color: #ffffff;
      font-size: 16px;
      font-weight: 750;
      text-align: center;
      backdrop-filter: blur(12px);
      transition: transform 0.24s ease, background 0.24s ease;
    }

    .focus-point:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.14);
    }

    .faq-wrap {
      max-width: 900px;
      margin: 46px auto 0;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.25);
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.86);
      box-shadow:  0 12px 30px rgba(15, 23, 42, 0.08);
      backdrop-filter: blur(16px);
    }

    .faq-item {
      border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    }

    .faq-item:last-child {
      border-bottom: 0;
    }

    .faq-question {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      background: transparent;
      padding: 22px 24px;
      color:#0f172a;
      text-align: left;
      font-size: 16px;
      font-weight: 800;
      border:none;
    }

    .faq-icon {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: rgba(99, 91, 255, 0.08);
      color:#635bff;
      transition: transform 0.26s ease, background 0.26s ease;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
      background: rgba(99, 91, 255, 0.14);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.34s ease;
    }

    .faq-answer-inner {
      padding: 0 24px 22px;
      color:#64748b;
      font-size: 18px;
      line-height: 1.75;
    }

    .cte {
      overflow: hidden;
      background:#050816;
      padding: 96px 0;
    }

    .cte-card {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 34px;
      align-items: center;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 36px;
      background:
        radial-gradient(circle at 15% 20%, rgba(99, 91, 255, 0.38), transparent 34rem),
        radial-gradient(circle at 90% 0%, rgba(6, 182, 212, 0.24), transparent 26rem),
        rgba(255, 255, 255, 0.055);
      padding: 50px;
      color: #ffffff;
      box-shadow: 0 34px 90px rgba(15, 23, 42, 0.18);
    }

    .cte-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(to bottom, black, transparent 75%);
      opacity: 0.45;
    }

    .cte-card > * {
      position: relative;
      z-index: 1;
    }

    .cte h2 {
      color: #ffffff;
    }

    .cte p {
      max-width: 820px;
      margin-top: 18px;
      color: #cbd5e1;
      font-size: 17px;
      line-height: 1.78;
    }

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

    .footer-mini {
      padding: 30px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      background:#050816;
      color: #94a3b8;
      font-size: 16px;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .fade-up {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-up.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 { transition-delay: 0.08s; }
    .delay-2 { transition-delay: 0.16s; }
    .delay-3 { transition-delay: 0.24s; }

    @keyframes floatGlow {
      from { transform: translate3d(0, 0, 0) scale(1); }
      to { transform: translate3d(18px, -22px, 0) scale(1.08); }
    }

    @keyframes pulseGlow {
      from { opacity: 0.72; transform: scale(0.98); }
      to { opacity: 1; transform: scale(1.02); }
    }

    @keyframes orbit {
      0% { transform: translate3d(0, 0, 0); }
      33% { transform: translate3d(35px, -24px, 0); }
      66% { transform: translate3d(-22px, 18px, 0); }
      100% { transform: translate3d(0, 0, 0); }
    }

    @keyframes shimmer {
      0% { filter: hue-rotate(0deg); }
      100% { filter: hue-rotate(360deg); }
    }

    @keyframes selectedPulse {
      0%, 100% { box-shadow: 0 30px 80px rgba(99, 91, 255, 0.21); }
      50% { box-shadow: 0 34px 92px rgba(99, 91, 255, 0.32); }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
      }

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

    @media (max-width: 1120px) {
      .hero-content,
      .split,
      .cta-card {
        grid-template-columns: 1fr;
      }

      .hero {
        background: linear-gradient(180deg, rgba(5, 8, 22, 0.98), rgba(11, 16, 32, 0.98) 72%, rgba(246, 248, 252, 0.98) 72.1%);
      }

      .nav-actions,
      .brand {
        min-width: unset;
      }

      .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .feature-grid,
      .different-grid,
      .steps-grid,
      .simplicity-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .industry-grid,
      .infra-grid,
      .focus-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
      }
    }

    @media (max-width: 860px) {
      .nav-links {
        display: none;
      }

      .navbar {
        padding: 18px 0;
      }

      .hero-content {
        padding: 58px 0 86px;
      }

      .section {
        padding: 84px 0;
      }

      h1 {
        font-size: clamp(40px, 9vw, 56px);
      }

      h2 {
        font-size: clamp(34px, 7vw, 44px);
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .top-bar-inner {
        display: block;
        padding: 8px 0;
      }

      .top-bar-badge {
        margin-bottom: 5px;
      }

      .nav-actions {
        display: none;
      }

      .brand-title {
        font-size: 16px;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .hero-trust,
      .console-grid,
      .module-list,
      .pain-grid,
      .pricing-grid,
      .feature-grid,
      .different-grid,
      .industry-grid,
      .simplicity-band,
      .steps-grid,
      .infra-grid,
      .focus-points {
        grid-template-columns: 1fr;
      }

      .hero-copy,
      .section-desc,
      .cta p {
        font-size: 16px;
      }

      .section,
      .section.compact,
      .cta {
        padding: 68px 0;
      }

      .dashboard-body,
      .content-panel,
      .focus-card,
      .cta-card {
        padding: 22px;
      }

      .comparison-top {
        display: block;
      }

      .comparison-top p {
        margin-top: 8px;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }