:root {
    --primary: #3157D5;
    --secondary: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3157D5 100%);
    color: white;
    padding: 90px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before, .hero::after {
    content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.hero::before { top: -160px; right: -120px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(129,140,248,.35) 0%, transparent 65%); }
.hero::after { bottom: -200px; left: -140px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(59,130,246,.32) 0%, transparent 65%); }
.hero .container { position: relative; z-index: 1; }
.hero h1, .hero .lead, .hero p { color: #fff; }
.hero .hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px; padding: .4rem .95rem;
    font-size: .78rem; font-weight: 700; color: #e0e7ff; margin-bottom: 1.1rem;
}
.hero h1 { font-weight: 800; letter-spacing: -.03em; }
.hero .lead { color: rgba(255,255,255,.88); max-width: 620px; margin-left: auto; margin-right: auto; }
.hero-note {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px; padding: .5rem 1.1rem; margin: 1rem auto 2rem;
    font-size: .92rem; font-weight: 600; color: #fff;
}
.hero-note i { color: #4ade80; }
.payment-process-card {
    text-align: left;
    background: #fff; border-radius: 18px; padding: 1.8rem 2rem;
    box-shadow: 0 24px 60px rgba(15,23,42,.16);
    border: 1px solid #e7ecf4;
}
.payment-process-card h5 { color: #0f172a; font-weight: 800; }
.step { display: flex; gap: 1rem; align-items: flex-start; padding: .9rem 0; }
.step-icon {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(135deg, #3157D5, #1e40af); color: #fff;
    display: flex; align-items: center; justify-content: center; font-weight: 800;
    box-shadow: 0 6px 16px rgba(49,87,213,.35);
}
.step-icon.step-4 { background: linear-gradient(135deg, #10b981, #047857); box-shadow: 0 6px 16px rgba(16,185,129,.35); }
.step-content h6 { color: #0f172a; font-weight: 700; margin-bottom: .2rem; }
.step-content p { color: #475569; margin: 0; font-size: .9rem; }
.payment-methods .badge { padding: .45em .8em; border-radius: 999px; font-weight: 600; }

.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-card.popular {
    border: 3px solid var(--warning);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--warning);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card.featured {
    border: 3px solid #0284c7;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #0284c7;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.demo-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
}

.free-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #64748b;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    color: var(--secondary);
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--success);
    margin-right: 10px;
    position: absolute;
    left: 0;
}

.feature-list li.disabled {
    color: #ccc;
}

.feature-list li.disabled i {
    color: #ddd;
}

/* Crossed feature styles */
.crossed-feature {
    color: #ef4444;
    opacity: 0.8;
    text-decoration: line-through;
}

.crossed-feature:before {
    content: "✗";
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.comparison-table {
    background: white;
    border-radius: 10px;
    /* Was overflow:hidden, which CLIPPED the 6-column table on mobile. Allow
       horizontal scroll so the table stays usable down to 360px. */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.comparison-table th {
    font-weight: 600;
    padding: 14px 16px;
    vertical-align: middle;
}

.comparison-table table thead tr th,
.comparison-table .table thead tr th,
.comparison-table table > thead > tr > th {
    background: #0f172a !important;
    background-color: #0f172a !important;
    color: #ffffff !important;
    box-shadow: none !important;
    --bs-table-bg: #0f172a !important;
    --bs-table-accent-bg: transparent !important;
    border-bottom: 2px solid #334155 !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
}

.comparison-table table thead tr th.th-featured,
.comparison-table .table thead tr th.th-featured,
.comparison-table table > thead > tr > th.th-featured {
    background: #0284c7 !important;
    background-color: #0284c7 !important;
    color: #ffffff !important;
    box-shadow: none !important;
    --bs-table-bg: #0284c7 !important;
}

.comparison-table table thead tr th.th-popular,
.comparison-table .table thead tr th.th-popular,
.comparison-table table > thead > tr > th.th-popular {
    background: #f59e0b !important;
    background-color: #f59e0b !important;
    color: #0f172a !important;
    box-shadow: none !important;
    --bs-table-bg: #f59e0b !important;
}

.faq-section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin-top: 50px;
}

.free-trial-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
    display: inline-block;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.inr-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.only-text {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
}

.invoice-notice {
    background: linear-gradient(135deg, #fff7ed, #fffbeb);
    border-left: 5px solid #f59e0b;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    color: #000000 !important;
    font-weight: 500;
}

.invoice-notice .fa-file-invoice-dollar {
    color: #f59e0b;
}

.pricing-plan-id {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 5px;
}

.invoice-notice strong {
    color: #000000 !important;
}

.invoice-notice .small {
    color: #000000 !important;
}

/* Payment Process Steps */
.payment-process-steps {
    position: relative;
    padding-left: 20px;
}

.payment-process-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #f59e0b, #047857);
}

.payment-process-steps .step {
    position: relative;
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.payment-process-steps .step::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 20px;
    width: 20px;
    height: 2px;
    background: #f59e0b;
}

.payment-process-steps .step:last-child {
    margin-bottom: 0;
}

.payment-process-steps .step-icon {
    width: 40px;
    height: 40px;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.payment-process-steps .step-icon.step-4 {
    background: #047857;
}

.payment-process-steps .step-content h6 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #1f2937;
}

.payment-process-steps .step-content p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

.payment-methods {
    margin-top: 20px;
}

.payment-methods .badge {
    margin: 3px;
    padding: 8px 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: white;
    color: #1f2937 !important;
    border: 1px solid #d1d5db;
}

.payment-methods .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background: #f9fafb;
}

/* Payment Process Card */
.payment-process-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-top: 20px;
    color: #1f2937;
}

.payment-process-card h5 {
    color: #1e40af;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.payment-process-card h5 i {
    margin-right: 10px;
}

/* Dark text for payment methods and timeline */
.payment-methods h6 {
    color: #1f2937 !important;
    font-weight: 600;
}

.payment-methods ul {
    color: #374151 !important;
}

.payment-methods ul li {
    color: #374151 !important;
}

.payment-methods ul li strong {
    color: #111827 !important;
}

/* Make all text in payment process card dark */
.payment-process-card .step-content h6 {
    color: #111827 !important;
}

.payment-process-card .step-content p {
    color: #4b5563 !important;
}

.payment-process-card .badge {
    color: #111827 !important;
}

/* Turnstile Styles */
.turnstile-container {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    min-height: 65px;
    background: #f8fafc;
    border-radius: 8px;
    padding: 15px;
}

.turnstile-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
}

.turnstile-error {
    color: #ef4444;
    font-size: 14px;
    margin-top: 10px;
    display: none;
    text-align: center;
    background: #fee2e2;
    padding: 10px 15px;
    border-radius: 6px;
    border-left: 4px solid #ef4444;
}

/* Required field styling */
.form-label.required::after {
    content: " *";
    color: #ef4444;
}

/* Mobile number styling */
.phone-input-container {
    display: flex;
    gap: 8px;
}

.country-code {
    flex: 0 0 80px;
}

.phone-number {
    flex: 1;
}

@media (max-width: 768px) {
    .payment-process-steps::before {
        left: 20px;
    }
    
    .payment-process-steps .step::before {
        left: -15px;
        width: 15px;
    }
    
    .payment-process-steps .step-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-right: 12px;
    }
    
    .payment-methods .badge {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .phone-input-container {
        flex-direction: column;
    }
    
    .country-code, .phone-number {
        width: 100%;
    }
}

/* FAQ Timeline Styles */
.timeline-faq {
    position: relative;
    padding-left: 30px;
}

.timeline-faq::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px currentColor;
}

.timeline-content {
    padding-bottom: 10px;
}

/* Payment FAQ Steps */
.payment-faq-steps .step {
    padding: 12px 15px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.payment-faq-steps .step:last-child {
    border-left-color: #10b981;
}

/* FAQ Item Icons */
.accordion-button i {
    width: 20px;
    text-align: center;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .timeline-faq {
        padding-left: 25px;
    }

    .timeline-faq::before {
        left: 12px;
    }

    .timeline-marker {
        left: -25px;
    }

    .pricing-cta-actions {
        flex-direction: column;
        gap: 10px;
    }

    .pricing-cta-actions .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

.pricing-cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3157D5 100%);
    position: relative;
}

.pricing-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.pricing-cta-orb-1 {
    top: -100px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.35) 0%, transparent 70%);
}

.pricing-cta-orb-2 {
    bottom: -100px;
    left: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
}

.pricing-glass-btn {
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    font-weight: 600;
    transition: all 0.22s ease-in-out;
}

.pricing-glass-btn:hover,
.pricing-glass-btn:focus-visible {
    color: #0f172a;
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* ═══════ Small-screen tuning (added 2026-08-20) ═══════ */
@media (max-width: 575.98px) {
    /* 56px price figures crowd narrow plan cards; scale them fluidly. */
    .price { font-size: clamp(2.4rem, 12vw, 3.5rem); }
    .inr-price { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .currency { font-size: clamp(1.4rem, 6vw, 2rem); }

    /* 40px all-round padding leaves too little room at 360px. */
    .faq-section { padding: 22px 16px; }
}
