:root{
    --bg0:#FFFFFF;
    --bg1:#FBF8FF;
    --bg2:#F5F3FF;
    --card: #FFFFFF;
    --card2: rgba(0,0,0,.02);
    --border: rgba(0,0,0,.08);
  
    --txt:#1A1F2E;
    --muted: #5E677E;
  
    --p1:#8B5CF6;
    --p2:#C084FC;
    --p3:#7C3AED;
  
    --b1:#4A90E2;
    --b2:#6FB1FF;
    --b3:#2C6FB8;
  
    --shadow: 0 10px 30px rgba(139, 92, 246, .05);
    --shadow-lg: 0 20px 50px rgba(139, 92, 246, .1);
  
  --bs-primary: #4A90E2;
  --bs-primary-rgb: 74, 144, 226;
  }
  
  html, body { 
    min-height: 100%; 
    scroll-behavior: smooth;
  }
  
  body.theme-light{
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 50%, #F3F4F6 100%);
    background-attachment: fixed;
    color: var(--txt);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
  }
  
  a { 
    color: inherit; 
    text-decoration: none;
  }
  
  .text-muted { 
    color: var(--muted) !important;
  }
  
  .lead.text-muted{
    color: var(--muted) !important;
    font-weight: 400;
  }
  
  .small.text-muted {
    color: var(--muted) !important;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111827;
  }
  
  h1 {
    color: #0F172A;
    font-weight: 800;
  }
  
  h2 {
    color: #111827;
    font-weight: 700;
  }
  
  h3, h4, h5 {
    color: #1F2937;
    font-weight: 600;
  }
  
  p {
    line-height: 1.7;
    color: #4B5563;
  }
  
  .lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #374151;
  }
  
  strong {
    color: #111827;
    font-weight: 700;
  }
  
  .section-pad{
    padding: 80px 0;
  }
  @media (min-width: 992px){
    .section-pad{ padding: 100px 0; }
  }
  
  .site-nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
  }
  
  .navbar {
    padding: 1rem 0;
  }
  
  .navbar .nav-link{
    color: #4B5563;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
  }
  .navbar .nav-link:hover{ 
    color: var(--b1);
    background: rgba(74, 144, 226, .05);
  }
  
  .navbar-dark .navbar-toggler-icon {
    filter: invert(1);
  }
  
  .brand-mark{
    width: 38px; height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: var(--p1);
    border: 1px solid rgba(139, 92, 246, .2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    font-weight: 900;
    color: #FFFFFF;
    font-size: 18px;
    transition: all 0.2s ease;
  }
  
  .navbar-brand {
    color: #111827 !important;
  }
  .brand-mark:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
    border-color: rgba(139, 92, 246, .3);
  }
  .brand-mark-sm{ width: 32px; height: 32px; border-radius: 6px; font-size: 16px; }
  
  .btn{
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 0;
  }
  
  .btn-lg{
    padding: 0.875rem 2rem;
    font-size: 1.05rem;
  }
  
  .btn-primary{
    background: var(--b1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(74, 144, 226, .3) !important;
    position: relative;
  }
  .btn-primary:hover{
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15) !important;
    background: #3D7FC8 !important;
    color: #FFFFFF !important;
    border-color: rgba(74, 144, 226, .4) !important;
  }

  .btn-outline-primary{
    border: 2px solid var(--b1) !important;
    color: var(--b1) !important;
    background: #FFFFFF !important;
    position: relative;
  }
  .btn-outline-primary:hover{
    border-color: var(--b1) !important;
    background: var(--b1) !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  }
  
  .btn-outline-light{
    border: 2px solid #E5E7EB;
    color: #4B5563;
    background: #FFFFFF;
  }
  .btn-outline-light:hover{
    background: #F9FAFB;
    border-color: #D1D5DB;
    color: #111827;
    transform: translateY(-2px);
  }
  
  .card-soft{
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    transition: all 0.2s ease;
  }
  
  .card-soft:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    border-color: #9CA3AF;
  }
  
  .card-glass{
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    transition: all 0.2s ease;
  }
  
  .card-glass:hover{
    border-color: var(--b1);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
  }
  
  .hero-wrap{
    padding-top: 40px;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
  }
  
  .hero-bg-blobs{
    position:absolute; inset:0;
    background:
      radial-gradient(700px 450px at 25% 8%, rgba(74, 144, 226, .03), transparent 55%),
      radial-gradient(650px 450px at 80% 15%, rgba(139, 92, 246, .02), transparent 58%);
    filter: blur(60px);
    pointer-events:none;
    opacity: 0.5;
  }
  
  .kicker{
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--p1);
    font-size: 0.75rem;
    background: rgba(139, 92, 246, .05);
    border: 1px solid rgba(139, 92, 246, .2);
    padding: 6px 16px;
    border-radius: 6px;
    display: inline-block;
  }
  
  .text-gradient{
    color: var(--b1);
  }

  .text-gradient-violet{
    color: var(--p1);
  }

  .text-blue{
    color: var(--b1) !important;
  }

  .text-violet{
    color: var(--p1) !important;
  }

  .bg-violet{
    background-color: var(--p1) !important;
  }

  .border-violet{
    border-color: var(--p1) !important;
  }
  
  @keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(15deg); }
  }
  
  .hero-sub .dot, .bar-mini .dot{
    display:inline-block;
    width: 5px; height: 5px;
    border-radius: 999px;
    background: #E5E7EB;
    margin: 0 12px;
  }
  
  .hero-sub, .bar-mini{
    font-size: 0.9rem;
    color: #6B7280;
  }
  
  .visual-tile{
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .visual-tile:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
  }
  
  .visual-tile img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
  }
  
  .chip{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding: 10px 16px;
    border-radius: 6px;
    background: #F3F4F6;
    border: 1px solid #D1D5DB;
    color: #4B5563;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
  }
  
  .chip:hover{
    background: #E5E7EB;
    border-color: #9CA3AF;
    color: #374151;
  }
  
  .chip i{
    color: var(--p1);
  }
  
  .pill{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 8px;
    background: #F9FAFB;
    border: 1px solid #D1D5DB;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
  }
  
  .pill:hover{
    background: #FFFFFF;
    border-color: var(--b1);
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
  }
  
  .pill i{
    color: var(--b1);
    font-size: 1.1rem;
  }
  
  .list-check, .list-good, .list-bad{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  .list-check li, .list-good li, .list-bad li{
    display:flex;
    gap:14px;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    color: #4B5563;
  }
  .list-check li:last-child, .list-good li:last-child, .list-bad li:last-child{ 
    border-bottom: 0; 
  }
  
  .list-check li:hover, .list-good li:hover, .list-bad li:hover{
    padding-left: 8px;
    color: #111827;
  }
  
  .list-check li::before{
    content: "✓";
    font-weight: 900;
    color: var(--p1);
    font-size: 1.1rem;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, .08);
    border-radius: 6px;
    height: 24px;
  }
  .list-good li::before{
    content: "✓";
    font-weight: 900;
    color: var(--p1);
    font-size: 1.1rem;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, .08);
    border-radius: 6px;
    height: 24px;
  }
  .list-bad li::before{
    content: "✕";
    font-weight: 900;
    color: #9CA3AF;
    font-size: 1rem;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    border-radius: 6px;
    height: 24px;
  }
  
  .callout{
    background: #F9FAFB;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s ease;
  }
  
  .callout:hover{
    border-color: #9CA3AF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
  }
  
  .callout .fw-bold,
  .callout .fw-semibold {
    color: #1F2937;
  }
  
  .callout-icon{
    width: 52px; height: 52px;
    border-radius: 8px;
    display:grid;
    place-items:center;
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
    font-size: 1.4rem;
    color: var(--p1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
  }
  
  .mini-feature{
    display:flex;
    gap:14px;
    padding: 16px 18px;
    border-radius: 8px;
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
  }
  
  .mini-feature:hover{
    background: #F9FAFB;
    border-color: var(--b1);
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
  }
  
  .mini-feature i{
    font-size: 1.4rem;
    color: var(--b1);
    margin-top: 2px;
    min-width: 28px;
    text-align: center;
  }
  
  .feature-card{
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    transition: all 0.2s ease;
  }
  
  .feature-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    border-color: #9CA3AF;
  }
  
  .feature-card .card-body p {
    color: #4B5563;
  }
  
  .icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }
  
  .feature-card:hover .icon-badge{
    transform: scale(1.05);
  }
  
  .security-graphic{
    transition: all 0.2s ease;
  }
  
  .security-graphic:hover{
    transform: translateY(-1px);
  }
  
  .security-graphic .shield-big{
    width: 64px; height: 64px;
    border-radius: 8px;
    display:grid;
    place-items:center;
    background: rgba(139,92,246,.08);
    border: 1px solid rgba(139,92,246,.2);
    font-size: 1.8rem;
    color: var(--p1);
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    transition: all 0.2s ease;
  }
  
  .security-graphic:hover .shield-big{
    border-color: rgba(139,92,246,.3);
  }
  
  .progress-soft{
    height: 12px;
    border-radius: 6px;
    background: #F3F4F6;
    border: 1px solid #D1D5DB;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.05);
  }
  .progress-soft-bar{
    height: 100%;
    width: 0%;
    border-radius: 6px;
    background: var(--b1);
    position: relative;
  }
  
  .pricing-card{
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
  }
  
  .pricing-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    border-color: #9CA3AF;
  }
  
  .pricing-card .card-body p {
    color: #4B5563;
  }
  
  .pricing-highlight{
    border-color: var(--b1);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    background: #FFFFFF;
  }
  
  .pricing-highlight:hover{
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    border-color: var(--b1);
  }
  
  .ribbon{
    position:absolute;
    top: 24px;
    right: -58px;
    transform: rotate(25deg);
    background: var(--b1);
    color: #FFFFFF;
    padding: 8px 72px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  }
  
  .badge-soft{
    background: #F3F4F6;
    border: 1px solid #D1D5DB;
    color: var(--b1);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .price .amount{
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #111827;
  }
  
  .price .per{
    color: #6B7280;
    font-weight: 600;
    margin-left: 8px;
    font-size: 1.1rem;
  }
  
  .site-footer{
    padding: 60px 0 32px;
    border-top: 1px solid #E5E7EB;
    background: #F9FAFB;
  }
  
  .footer-bottom{
    font-size: 0.85rem;
    color: #9CA3AF;
  }
  
  .site-footer a{
    color: #6B7280;
    transition: all 0.3s ease;
  }
  
  .site-footer a:hover{
    color: var(--p1) !important;
    transform: translateY(-1px);
  }
  
  .modal-glass{
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,.15);
  }
  
  .form-control, .form-select{
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
    color: #111827;
    padding: 0.35rem 0.50rem;
    border-radius: 6px;
    transition: all 0.2s ease;
  }
  
  .form-control:focus, .form-select:focus{
    background: #FFFFFF;
    border-color: var(--b1);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, .08);
    color: #111827;
  }
  
  .form-control::placeholder{
    color: #9CA3AF;
  }
  
  .form-label{ 
    color: #374151; 
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }
  
  .alert-soft{
    background: #F9FAFB;
    border: 1px solid #D1D5DB;
    color: #1F2937;
    border-radius: 8px;
    padding: 1rem 1.25rem;
  }
  
  .alert-success{
    background: #F0FDF4;
    border: 1px solid #86EFAC;
    color: #065F46;
  }
  
  .alert-danger{
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    color: #991B1B;
  }
  
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  [data-animate]{
    opacity: 0;
  }

  [data-animate="up"].animated{
    animation: fadeInUp 0.6s ease-out forwards;
  }

  [data-animate="left"].animated{
    animation: fadeInLeft 0.6s ease-out forwards;
  }

  [data-animate="right"].animated{
    animation: fadeInRight 0.6s ease-out forwards;
  }

  [data-animate="scale"].animated{
    animation: scaleIn 0.6s ease-out forwards;
  }

  [data-animate="fade"].animated{
    animation: fadeIn 0.8s ease-out forwards;
  }

  [data-animate].animated:not([data-animate="up"]):not([data-animate="left"]):not([data-animate="right"]):not([data-animate="scale"]):not([data-animate="fade"]){
    animation: fadeInUp 0.6s ease-out forwards;
  }

  [data-animate].animated:nth-child(1) { animation-delay: 0s; }
  [data-animate].animated:nth-child(2) { animation-delay: 0.1s; }
  [data-animate].animated:nth-child(3) { animation-delay: 0.2s; }
  [data-animate].animated:nth-child(4) { animation-delay: 0.3s; }
  [data-animate].animated:nth-child(5) { animation-delay: 0.4s; }
  [data-animate].animated:nth-child(6) { animation-delay: 0.5s; }

  .bg-gradient-subtle {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  }

  .btn-check:checked + .btn-outline-primary {
    background: var(--b1) !important;
    border-color: var(--b1) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  }

  .btn-check + .btn-outline-primary {
    transition: all 0.2s ease;
    position: relative;
  }

  .btn-check:checked + .btn-outline-primary small {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .btn-check:checked + .btn-outline-primary::after {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 18px;
    color: white;
    animation: checkPop 0.2s ease;
  }

  @keyframes checkPop {
    0% { 
      transform: scale(0);
      opacity: 0;
    }
    100% { 
      transform: scale(1);
      opacity: 1;
    }
  }

  #successScreen {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
  }

  #successScreen.show {
    display: block;
    animation: fadeIn 0.4s ease;
  }

  .success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10b981;
    border: 2px solid #059669;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: scaleIn 0.4s ease;
  }

  .success-checkmark i {
    font-size: 40px;
    color: white;
    animation: checkDraw 0.4s ease 0.2s both;
  }

  @keyframes checkDraw {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .success-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    animation: fadeInUp 0.5s ease 0.4s both;
  }

  .success-message {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease 0.5s both;
  }

  .success-details {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s ease 0.6s both;
  }

  .success-details p {
    margin: 0.5rem 0;
    color: #475569;
  }

  .success-details i {
    color: var(--b1);
    margin-right: 0.5rem;
  }

  .legal-page h2 {
    margin-top: 2rem;
    scroll-margin-top: 100px;
  }

  .legal-page a {
    color: var(--b1);
    text-decoration: underline;
    text-decoration-color: rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
  }

  .legal-page a:hover {
    color: var(--b2);
    text-decoration-color: var(--b2);
  }

  .legal-page .table {
    font-size: 0.95rem;
  }

  .legal-page .table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #1e293b;
  }

  .legal-page ul {
    line-height: 1.7;
  }

  .legal-page .card {
    line-height: 1.8;
  }

  .accordion-item {
    background: #FFFFFF;
    border: 1px solid #D1D5DB !important;
    transition: all 0.2s ease;
  }

  .accordion-item:hover {
    border-color: #9CA3AF !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
  }

  .accordion-button {
    background: #FFFFFF;
    color: #1F2937;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.2s ease;
  }

  .accordion-button:not(.collapsed) {
    background: #F9FAFB;
    color: var(--b1);
    box-shadow: none;
    border-bottom: 1px solid #D1D5DB;
  }

  .accordion-button:focus {
    box-shadow: none;
    border-color: var(--b1);
  }

  .accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    transition: transform 0.2s ease;
  }

  .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
  }

  .accordion-button:not(.collapsed) i {
    color: var(--b1);
  }

  .accordion-body {
    padding: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
    background: #FFFFFF;
  }

  .accordion-item:first-child .accordion-button {
    border-radius: 10px !important;
  }

  .accordion-item:first-child .accordion-button.collapsed {
    border-radius: 10px !important;
  }

  .accordion-item:last-child .accordion-button.collapsed {
    border-radius: 10px !important;
  }

  .accordion-button i.bi-question-circle {
    font-size: 1.3rem;
    transition: all 0.2s ease;
  }

  .accordion-button:hover i.bi-question-circle {
    transform: scale(1.05);
  }
  
  ::-webkit-scrollbar{
    width: 10px;
  }
  
  ::-webkit-scrollbar-track{
    background: #F9FAFB;
  }
  
  ::-webkit-scrollbar-thumb{
    background: #D1D5DB;
    border-radius: 10px;
    border: 2px solid #F9FAFB;
  }
  
  ::-webkit-scrollbar-thumb:hover{
    background: #9CA3AF;
  }
  
  .card-body h2,
  .card-body h3,
  .card-body h4 {
    color: #111827;
  }
  
  .card-body .fw-semibold {
    color: #374151;
  }
  
  .illustration-link {
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
    width: 100%;
  }
  
  .illustration-link:hover {
    transform: translateY(-2px);
  }
  
  .illustration-link img {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
    transition: all 0.2s ease;
  }
  
  .illustration-link:hover img {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
  }
  
  .feature-card:hover .icon-badge {
    transform: scale(1.05);
  }
  

  .rounded-4 { border-radius: 10px !important; }
  .rounded-5 { border-radius: 12px !important; }
  .letter-spacing-1 { letter-spacing: 0.05rem; }
  
  .pricing-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }
  
  .pricing-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
  }
  
  .hero-wrap {
    padding-top: 70px !important;
    position: relative;
    min-height: 70vh !important;
  }
  
  @media (max-width: 991px) {
    .hero-wrap {
      min-height: auto !important;
      padding: 4rem 0 !important;
    }
  }

  .onboarding-progress {
    width: 100%;
    height: 8px;
    background: #E5E7EB;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.05);
  }

  .onboarding-progress-bar {
    height: 100%;
    width: 25%;
    background: var(--b1);
    border-radius: 6px;
    transition: width 0.3s ease;
  }

  .onboarding-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: rgba(74, 144, 226, .08);
    border: 2px solid rgba(74, 144, 226, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--b1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
  }

  .onboarding-step {
    animation: fadeIn 0.4s ease;
  }

  #onboardingSuccessScreen {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
  }

  #onboardingSuccessScreen.show {
    display: block;
    animation: fadeIn 0.4s ease;
  }

  .btn-check + .btn-outline-primary {
    transition: all 0.2s ease;
    border: 2px solid #D1D5DB;
  }

  .btn-check + .btn-outline-primary:hover {
    border-color: var(--b1);
    background: rgba(74, 144, 226, .05);
  }

  .btn-check:checked + .btn-outline-primary i {
    color: white !important;
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .onboarding-step.slide-in-right {
    animation: slideInRight 0.3s ease;
  }

  .onboarding-step.slide-in-left {
    animation: slideInLeft 0.3s ease;
  }
  