        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: #f0f0f0;
            line-height: 1.6;
            background: #000000;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 1rem;
        }

.celebration{
    height:60px;
    width:60px;
}

        /* Hero */
        .hero {
        
            text-align: center;
            padding: 5rem 1rem 3rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
                margin-top:200px;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .hero p {
            font-size: 1.1rem;
            color: #9ca3af;
            margin-bottom: 2.5rem;
        }

        .controls-container {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    background-color: #ffc400;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 10px;
    border: none;
}

.toggle-switch.active {
    background-color: #00b61b;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    transition: left 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
    left: 10px;
}



.process p{
text-align: center;
color:rgb(160, 160, 160);
margin-bottom:20px;
}
        .currency-select {
            padding: 0.5rem 1rem;
            border: 1px solid #374151;
            border-radius: 8px;
            background: #1f2937;
            color: white;
            font-size: 0.95rem;
        }

        /* Pricing Cards */
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .pricing-card {
            background: white;
            color: black;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .pricing-card.featured {
            background: #3004dd;
            color: white;
            transform: scale(1.05);
            border: none;
        }

        .featured-badge {
            position: absolute;
            top: -12px;
            right: 1.5rem;
            background: #e1ff00;
            color: #111827;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 0.35rem 1rem;
            border-radius: 20px;
        }
      .custom-quote{
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #ffffff;
    padding:10px;
    border: 2px solid #000000;
    align-items: center;
    background-color: #000;
    border-radius: 15px;
    text-align: center;

    display: block !important;
    width: fit-content !important;
    margin: 1rem auto !important;

       }


 .custom-quote:hover{
  background-color: #151515; 
}
        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
}
        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .featured .card-title {
            color: white;
        }

        .card-subtitle {
            color: #6b7280;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .featured .card-subtitle {
            color: rgba(255,255,255,0.8);
        }

        .price-breakdown {
            background: #d7d7d7;
            padding: 1.2rem;
            border-radius: 12px;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }

        .featured .price-breakdown {
            background: rgba(255,255,255,0.15);
        }

        .setup-fee {
            font-weight: 700;
            color: #111827;
            font-size: 1.2rem;
        }

        .featured .setup-fee {
            color: white;
        }

        .monthly-fee {
            color: #2abb11;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .minimum-term {
            font-size: 0.85rem;
            color: #ff0000;
            font-weight: 500;
            margin-top: 0.5rem;
        }

        .guaranteed-revenue {
            background: #ebebeb;
            color: #065f46;
            padding: 0.75rem;
            border-radius: 8px;
            font-size: 0.9rem;
            margin-top: 1rem;
            font-weight: 600;
        }

        .featured .guaranteed-revenue {
            background: rgba(255,255,255,0.2);
            color: #e1ff00;
        }

        .features-list  .mini {
      color:white;
        }
/* ...existing code... */

/* Promotion styling: crossed out setup price + visible FREE label */
.price-breakdown .setup-fee {
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: center; /* keep centered like other price elements */
}

.price-breakdown .strike {
    text-decoration: line-through;
    opacity: 0.6;
    font-weight: 600;
    color: #ffffff;
}

.price-breakdown .promo-free {
    color: #002bc5; /* bright yellow */
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: 4px;
}

/* screen-reader helper (optional) */
.price-breakdown .sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
        .btn-primary {
            width: 100%;
            background: #000000;
            color: white;
            padding: 0.9rem;
            border: none;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin: 1.5rem 0;
        }

        .btn-primary:hover {
            background: #343434;
            transform: translateY(-2px);
        }

        .featured .btn-primary {
            background: white;
            color: #6366f1;
        }

        .featured .btn-primary:hover {
            background: #f9fafb;
        }

        /* CHECKMARKS - Font Awesome */
        .features-list {
            list-style: none;
            margin-top: 1rem;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            color: #374151;
        }

        .featured .features-list li {
            color: rgba(255,255,255,0.9);
        }

        .features-list li i {
            color: #1bb910;
            font-weight: 900;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .featured .features-list li i {
            color: #e1ff00;
        }

        /* Combo Section */
        .Combo-section {
            background: white;
            padding: 4rem 2rem;
            margin: 3rem 0;
            border-radius: 16px;
            color: #000;
        }

        .Combo-section h2 {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 2.5rem;
            color: #111827;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .combo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .combo-card {
            background: #f8fafc;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
        }

        .combo-title {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            font-size: 1.2rem;
            font-weight: 100;
            margin: 0.5rem 0;
        }

        .combo-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #118200;
        }

        .combo-setup {
            font-size: 0.9rem;
            color: #6b7280;
            margin: 0.5rem 0;
        }

        .combo-savings {
            background: #ecfdf5;
            color: #065f19;
            padding: 0.5rem;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 0.75rem;
        }

 .compare-section {
            background: #000000;
            padding: 8rem 2rem;
        }

        .compare-section h2 {
            text-align: center;
            font-size: 2rem;
            color:rgb(255, 255, 255);
            margin-bottom: 3rem;
        }

        .compare-table {
            max-width: 1200px;
            margin: 0 auto;
            color:#ffffff;
            background: rgb(28, 28, 28);
            border-radius: 12px;
            overflow-x: auto;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th, td {
            padding: 1.25rem;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
        }

        th {
            background: #1c1c1c;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .checkmark {
            color: #005c09;
            font-weight: bold;
        }

             .faq-section {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .faq-section h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .faq-section h3 {
            font-size:30px;
            color: #e1ff00;
            font-weight: 100!important;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin-bottom: 2rem;
        }

        .faq-item {
            border: 1px solid #e5e7eb;
            border-radius: 25px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 1.25rem;
            background: white;
            border: none;
            text-align: left;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: #f9fafb;
        }

        .faq-answer {
            padding: 0 1.25rem;
            max-height: 0;
            overflow: hidden;
            background-color: white;
            transition: all 0.3s;
            color: #494949;
        }

        .faq-item.active .faq-answer {
            padding: 0 1.25rem 1.25rem;
            max-height: 200px;
        }

        footer {
            background: #f9fafb;
            padding: 3rem 2rem 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .footer-col h4 {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            color: #6b7280;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.5rem;
        }

        .footer-col a {
            text-decoration: none;
            color: #1f2937;
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background: #080808;
            color: #9ca3af;
            padding: 3rem 1rem 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .footer-col h4 {
            color: #e1ff00;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .footer-col a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-col a:hover {
            color: #e1ff00;
        }
 .setup-fee {
    font-weight: 700;
    color: #0c0c0c;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.featured .price-breakdown {
    background: rgba(255, 191, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.setup-fee .strike {
    text-decoration: line-through !important;
    text-decoration-color: #ff0000 !important;
    text-decoration-thickness: 2px !important;
    opacity: 0.7;
    color: #9ca3af;
}

.setup-fee .promo-free {
    color: #ff6a00;
    font-weight: 700;
    font-size: 1rem;
    background: rgba(242, 223, 56, 0.962);
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    margin-bottom:20px;
    border: 1px solid rgba(225, 255, 0, 0.3);
}    
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            font-size: 0.85rem;
            color: #6b7280;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .pricing-card.featured {
                transform: none;
            }

            .controls-container {
                flex-direction: column;
                align-items: center;
            }

            .celebration{
    height:40px;
    width:40px;
}
        }


        /* Add this to the bottom of your existing Pricing.css */

/* E-COMMERCE MINI CARD */
.pricing-card.ecommerce-mini {
    background-color: #ff1313;
    color: white;
    border: none;
}

.pricing-card.ecommerce-mini .featured-badge {
    background-color: #57ff65;
    color: #2a2a2a;
}

.pricing-card.ecommerce-mini .card-subtitle {
    color: white;
}

.pricing-card.ecommerce-mini .price-breakdown {
    background-color: #ca0000;
}

.pricing-card.ecommerce-mini .minimum-term {
    color: yellow;
}

.pricing-card.ecommerce-mini .guaranteed-revenue {
    color: #e1ff00;
}

.pricing-card.ecommerce-mini .features-list li {
    color: white !important;
}

.pricing-card.ecommerce-mini .features-list li i {
    color: white !important;
}

/* E-COMMERCE MINI CARD */
.pricing-card.ecommerce-mini {
 background-color: #ff1313;
 color: white;
 border: none;
}

.pricing-card.ecommerce-mini .featured-badge {
 background-color: #57ff65;
 color: #2a2a2a;
}

.pricing-card.ecommerce-mini .card-subtitle {
 color: white;
}

.pricing-card.ecommerce-mini .price-breakdown {
 background-color: #ca0000;
}

.pricing-card.ecommerce-mini .minimum-term {
 color: yellow;
}

.pricing-card.ecommerce-mini .guaranteed-revenue {
 color: #e1ff00;
}

.pricing-card.ecommerce-mini .features-list li {
 color: white !important;
}

.pricing-card.ecommerce-mini .features-list li i {
 color: white !important;
}

/* DARKER STRIKE-THROUGH */
.setup-fee .strike {
 text-decoration: line-through !important;
 text-decoration-color: #ff0000 !important;
 text-decoration-thickness: 2px !important;
 opacity: 1;
 color: #4b5563 !important;
 font-weight: 600;
}

.featured .setup-fee .strike {
 color: #9ca3af !important;
}

/* REMOVE ARROWS FROM BUTTONS */
.btn-primary {
 background: #000000;
 color: white;
 padding: 0.9rem;
 border: none;
 border-radius: 20px;
 font-weight: 600;
 cursor: pointer;
 transition: all 0.3s ease;
 margin: 1.5rem 0;
 font-size: 1rem;
 width: 100%;
 position: relative;
}

.btn-primary::after {
 content: none !important;
}