    .pricing-info {
      background: linear-gradient(135deg, #eff6ff 0%, white 50%, #faf5ff 100%);
      color: white;
      padding: 4rem 0;
      text-align: center;
    }

    .pricing-info h1 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: .5rem;
    }

    .pricing-info p {
      font-size: 1rem;
      max-width: 42rem;
      margin: 0 auto;
      opacity: 0.95;
    }
    .features-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, #eff6ff 0%, white 50%, #faf5ff 100%);
      position: relative;
      overflow: hidden;
    }

    .section-title {
      font-size: 1.6rem;
      font-weight: 800;
      text-align: center;
      background: #202231;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      text-align: center;
      font-size: 1.125rem;
      color: #6b7280;
      margin-bottom: 4rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .feature-card {
      background: white;
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
      border: 1px solid #e5e7eb;
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
      width: 64px;
      height: 64px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: transform 0.3s ease;
    }

    .feature-card:hover .feature-icon {
      transform: scale(1.1);
    }

    .feature-icon svg {
      width: 32px;
      height: 32px;
      stroke: white;
      fill: none;
      stroke-width: 2;
    }

    .feature-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      transition: color 0.3s ease;
    }

    .feature-card p {
      color: #6b7280;
      line-height: 1.6;
    }

    
            .pricing-section {
            padding: 60px 0;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 60px;
            color: #2d3748;
        }

        .pricing-header h1 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .pricing-header p {
            font-size: 1rem;
            opacity: 0.7;
            color: #4a5568;
        }

        .billing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .billing-toggle span {
            font-size: 1.1rem;
            font-weight: 600;
            color: #4a5568;
            transition: color 0.3s ease;
        }

        .billing-toggle span.active {
            color: #2d3748;
        }

        .toggle-switch {
            position: relative;
            width: 60px;
            height: 30px;
            background: #cbd5e0;
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .toggle-switch.active {
            background: #202231;
        }

        .toggle-slider {
            position: absolute;
            top: 3px;
            left: 3px;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .toggle-switch.active .toggle-slider {
            transform: translateX(30px);
        }

        .pricing-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 30px;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: 2px solid #e2e8f0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .pricing-card.popular {
            background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
            border: 3px solid #f0dd54;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
        }

        .pricing-card.popular:hover {
            transform: scale(1.08) translateY(-10px);
            box-shadow: 0 25px 50px rgba(74, 144, 226, 0.25);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            right: 30px;
            background: linear-gradient(135deg, #f0dd54 0%, #f0dd54 100%);
            color: #111;
            padding: 4px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
        }

        .plan-name {
            color: #2d3748;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .plan-description {
            color: #718096;
            font-size: 1rem;
            margin-bottom: 25px;
            min-height: 50px;
        }

        .plan-price {
            color: #1a202c;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .plan-price span {
            font-size: 1.8rem;
            font-weight: 800;
            color: #111;
        }

        .price-period {
            color: #666;
            font-size: .7rem;
            margin-bottom: 30px;
        }

        .features-title {
            color: #2d3748;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .feature-list li {
            color: #4a5568;
            padding: 5px 0;
            position: relative;
            /* padding-left: 30px; */
            font-size: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #202231;
            font-weight: bold;
            font-size: 1.2rem;
        } */

        .btn-get-started {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-outline-light {
            color: #2d3748;
            border-color: #cbd5e0;
            background: transparent;
        }

        .btn-outline-light:hover {
            background: #2d3748;
            color: #fff;
            border-color: #2d3748;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, #202231 0%, #202231 100%);
            color: white;
            border: none;
        }

        .btn-primary-custom:hover {
            background: linear-gradient(135deg, #f0dd54 0%, #f0dd54 100%);
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .pricing-header h1 {
                font-size: 1.2rem;
            }
            
            .pricing-card.popular {
                transform: scale(1);
                margin-top: 20px;
                margin-bottom: 20px;
            }
            
            .plan-price {
                font-size: 2.5rem;
            }
        }


    /* FAQ Section */
    .faq-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, #eff6ff 0%, white 50%, #faf5ff 100%);
    }

    .faq-container {
      max-width: 1024px;
      margin: 0 auto;
    }

       .accordion {
      max-width: 800px;
      margin: auto;
    }

    .accordion-item {
      border: none;
      border-radius: 16px !important;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
      overflow: hidden;
      transition: transform 0.2s ease;
    }

    .accordion-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .accordion-button {
      background-color: #ffffff;
      border-radius: 16px !important;
      font-weight: 600;
      font-size: 1.05rem;
      color: #333;
      padding: 18px 24px;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      background-color: #202231;
      color: #fff;
      box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    }

    

    .accordion-body {
      background: #ffffff;
      padding: 24px;
      font-size: 0.95rem;
      line-height: 1.6;
      color: #555;
    }


    .card-transaction {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(17, 24, 39, 0.08);;
      padding: 30px;
      width: 100%;
      text-align: center;
      transform: translateY(10px);
      animation: slideUp 0.6s ease-out forwards;
    }

    .icon {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 24px;
      font-size: 36px;
      animation: popIn 0.6s ease;
    }

    .icon.success {
      background: rgba(16,185,129,0.15);
      color: #10b981;
      box-shadow: inset 0 0 0 3px rgba(16,185,129,0.3);
    }
    .icon.failed{
        color: #ef4444;
        background: rgba(239, 68, 68, 0.1);
        box-shadow: inset 0 0 0 3px rgba(239, 68, 68,0.3);
        stroke: rgb(239, 68, 68);
    }
    .icon.pending{
        color: #f59e0b;
        background: rgba(245, 158, 11, 0.1);        
    }

    .warning {
        color: #ef4444;
        font-size: 13px;
        margin-top: 10px;
    }
    .warning1{
        color: #f59e0b;
        font-size: 13px;
        margin-top: 10px; 
        line-height: 18px;       
    }

    .card-transaction h1 {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    p {
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 20px;
    }

    .details {
      text-align: left;
      background: #f9fafb;
      padding: 18px;
      border-radius: 12px;
      margin: 16px 0;
      font-size: 14px;
      border: 1px solid #e5e7eb;
    }

    .details div {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0;
    }

    .btn-group {
      display: flex;
      gap: 12px;
      justify-content: center;
      margin-top: 20px;
    }
    .btn-group>.btn {
        flex: none;
    }
    .btn {
      background: #202231;
      color: #fff;
      border: none;
      padding: 10px 18px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.25s ease;
      flex: none;
    }

    .btn:hover {
      transform: translateY(-2px);
      background: #f0dd54;
      box-shadow: 0 6px 16px rgba(11,116,222,0.25);
    }

    .btn.ghost {
      background: transparent;
      color: var(--accent);
      border: 1.5px solid #bfdbfe;
    }

    .btn.ghost:hover {
      background: #e0f2fe;
    }

    footer.transaction {
      font-size: 13px;
      color: var(--muted);
      margin-top: 15px;
    }

    footer.transaction a {
      color: var(--accent);
      text-decoration: none;
    }

    footer.transaction a:hover {
      text-decoration: underline;
    }

    /* ✨ Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes popIn {
      0% { transform: scale(0.6); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }    

    /* Responsive */
    @media (max-width: 768px) {
      header h1 {
        font-size: 1.2rem;
      }

      header p {
        font-size: 1rem;
      }

      .section-title {
        font-size: 1.2rem;
      }

      .pricing-card.popular {
        transform: scale(1);
      }

      .pricing-card.popular:hover {
        transform: scale(1.05);
      }

      .comparison-table {
        font-size: 0.875rem;
      }

      .contact-form-wrapper {
        padding: 1.5rem;
      }
    }