/* ===== LEADSPATHPRO AI PRICING SECTION - DARK THEME FROM PROVIDED CODE ===== */

.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d3a 50%, #0f1419 100%);
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #00d4ff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.1);
}

.pricing-badge::before {
    content: "💰";
    margin-right: 8px;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 15px;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #a0aec0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 5px;
    position: relative;
    width: 280px;
    margin-bottom: 15px;
}

.toggle-option {
    width: 50%;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    color: #a0aec0;
}

.toggle-option.active {
    color: white;
}

.toggle-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.toggle-slider.annual {
    left: calc(50% + 5px);
}

.toggle-discount {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.toggle-discount::before {
    content: "🎉";
    margin-right: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.pricing-card {
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(15, 20, 25, 0.95);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

.pricing-card.popular {
    border: 2px solid rgba(0, 212, 255, 0.4);
    transform: scale(1.03);
    background: rgba(15, 20, 25, 0.9);
}



.pricing-card.popular::before {
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.15), transparent);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
    background: rgba(15, 20, 25, 0.98);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 107, 157, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 107, 157, 0.5);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.card-header {
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    text-align: center;
}

.starter-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 197, 253, 0.05) 100%);
}

.professional-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(196, 181, 253, 0.05) 100%);
}

.enterprise-header {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(196, 181, 253, 0.05) 100%);
}

.plan-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    display: inline-block;
}

.pricing-card:hover .plan-icon {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 5px 15px rgba(0, 212, 255, 0.4));
}

.pricing-card.popular:hover .plan-icon {
    filter: drop-shadow(0 5px 15px rgba(255, 107, 157, 0.4));
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.plan-description {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.price-period {
    font-size: 0.9rem;
    color: #a0aec0;
}

.annual-savings {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
    margin-top: 5px;
    display: none;
}

.annual-savings.show {
    display: block;
}

.card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ai-services {
    margin-bottom: 25px;
}

.ai-services-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.ai-services-title::before {
    content: "🤖";
    margin-right: 8px;
}

.ai-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.ai-service {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.ai-service {
    position: relative;
    overflow: hidden;
}

.ai-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.08), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.ai-service:hover::before {
    left: 100%;
}

.ai-service:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
}

.ai-service-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 1.2rem;
    position: relative;
    transition: all 0.4s ease;
}

.ai-service:hover .ai-service-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.ai-service-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 3px;
    position: relative;
    z-index: 1;
}

.ai-service-description {
    font-size: 0.75rem;
    color: #a0aec0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.tooltip-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #00d4ff;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.tooltip-icon:hover {
    background: #0099cc;
    transform: scale(1.1);
}

/* Other Features Dropdown */
.other-features {
    margin-bottom: 25px;
}

.other-features-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.other-features-header:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
}

.other-features-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00d4ff;
    display: flex;
    align-items: center;
}

.other-features-title::before {
    content: "⚙️";
    margin-right: 8px;
}

.dropdown-arrow {
    font-size: 0.8rem;
    color: #a0aec0;
    transition: transform 0.3s ease;
}

.dropdown-arrow.open {
    transform: rotate(180deg);
}

.other-features-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.other-features-content.open {
    max-height: 500px;
    padding-top: 15px;
}

.other-features-list {
    list-style: none;
    padding-left: 0;
}

.other-features-list li {
    font-size: 0.85rem;
    color: #a0aec0;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.4;
}

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

.other-features-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 10px;
    font-size: 0.9rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.usage-limits {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.usage-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.usage-title::before {
    content: "📊";
    margin-right: 8px;
}

.usage-list {
    list-style: none;
}

.usage-list li {
    font-size: 0.85rem;
    color: #a0aec0;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.usage-list li::before {
    content: "•";
    color: #00d4ff;
    font-weight: bold;
    margin-right: 8px;
}

.all-plans-include {
    background: rgba(15, 20, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.all-plans-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.all-plans-title::before {
    content: "✅";
    margin-right: 8px;
}

.all-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.all-plans-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.all-plans-item {
    position: relative;
    overflow: hidden;
}

.all-plans-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.06), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.all-plans-item:hover::before {
    left: 100%;
}

.all-plans-item:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
}

.all-plans-item:hover .all-plans-icon {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 5px 10px rgba(0, 212, 255, 0.3));
}

.all-plans-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #00d4ff;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.all-plans-text {
    font-size: 0.85rem;
    color: #a0aec0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.card-footer {
    padding: 0 30px 30px;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.primary-button {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.primary-button:hover::before {
    left: 100%;
}

.primary-button:hover {
    background: linear-gradient(135deg, #0099cc 0%, #007399 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(0, 212, 255, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid rgba(0, 212, 255, 0.4);
}

.secondary-button:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.1);
}

.compare-plans {
    text-align: center;
    margin-top: 40px;
}

.compare-link {
    color: #00d4ff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.compare-link:hover {
    color: #ff6b9d;
    text-decoration: underline;
}

.compare-link::after {
    content: "→";
    margin-left: 5px;
    transition: all 0.3s ease;
}

.compare-link:hover::after {
    transform: translateX(3px);
}



/* Modal Styles */
.tooltip-modal, .plan-modal, .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px 0;
}

.tooltip-modal-content, .plan-modal-content, .modal-content {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 20px auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    color: white;
}

.tooltip-modal-content {
    max-width: 500px;
    margin: 10% auto;
}

.close-tooltip, .close-plan-modal, .close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #a0aec0;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-tooltip:hover, .close-plan-modal:hover, .close-modal:hover {
    color: #00d4ff;
    transform: rotate(90deg);
}

.tooltip-modal-header, .modal-header {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 20px 30px;
    text-align: center;
    position: relative;
}

.tooltip-modal-title, .modal-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 5px;
}

.tooltip-modal-title {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.modal-subtitle {
    font-size: 1rem;
    color: #a0aec0;
}

.tooltip-modal-body, .modal-body {
    padding: 20px 30px;
}

.tooltip-modal-body {
    padding: 15px 20px;
}

.tooltip-modal-example {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-style: italic;
    color: #a0aec0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Plan Modal Specific */
.plan-modal-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    min-height: 600px;
}

.plan-selection-section {
    padding: 40px;
}

.selected-plan-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.selected-plan-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
}

.selected-plan-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.selected-plan-info p {
    font-size: 1rem;
    color: #a0aec0;
}

.plan-pricing-toggle {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 4px;
    width: 200px;
    margin-bottom: 30px;
    position: relative;
}

.plan-toggle-option {
    width: 50%;
    padding: 8px 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 21px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    color: #a0aec0;
}

.plan-toggle-option.active {
    color: white;
}

.plan-toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 21px;
    transition: all 0.3s ease;
}

.plan-toggle-slider.annual {
    left: calc(50% + 4px);
}

.plan-price-display {
    margin-bottom: 30px;
}

.plan-price-main {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-price-period {
    font-size: 1rem;
    color: #a0aec0;
    margin-left: 5px;
}

.plan-price-savings {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
    margin-top: 5px;
    display: none;
}

.plan-price-savings.show {
    display: block;
}

.plan-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.plan-feature-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #a0aec0;
}

.plan-feature-item::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1rem;
}

.change-plan-link {
    color: #00d4ff;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.change-plan-link:hover {
    color: #ff6b9d;
    text-decoration: underline;
}

.order-summary-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.order-summary-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.order-plan-info {
    margin-bottom: 30px;
}

.order-plan-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 5px;
}

.order-billing-type {
    font-size: 0.9rem;
    color: #a0aec0;
}

.order-pricing {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-bottom: 20px;
}

.order-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #a0aec0;
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.next-billing {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-bottom: 30px;
}

.trust-signals {
    margin-bottom: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 500;
}

.trust-item::before {
    content: "🔒";
    margin-right: 10px;
}

.trust-item:nth-child(1)::before { content: "💰"; }
.trust-item:nth-child(2)::before { content: "⏰"; }
.trust-item:nth-child(3)::before { content: "🔒"; }

.start-plan-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.start-plan-button:hover {
    background: linear-gradient(135deg, #0099cc 0%, #007399 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

/* Comparison Table */
.comparison-table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    color: #00d4ff;
}

.comparison-table th:first-child {
    text-align: left;
    width: 40%;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #a0aec0;
}

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

.comparison-table .category-header {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    font-weight: 600;
    text-align: left;
}

.comparison-table .check {
    color: #10b981;
    font-size: 1.2rem;
}

.comparison-table .cross {
    color: #ef4444;
    font-size: 1.2rem;
}

.comparison-table .limited {
    color: #f59e0b;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Tablet Responsiveness - S10 Ultra Optimization */
@media screen and (min-width: 900px) and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .pricing-card {
        padding: 24px 20px;
        min-height: 480px;
    }
    
    .plan-name {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .plan-price {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    
    .plan-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .feature-item {
        font-size: 0.85rem;
        padding: 8px 0;
    }
    
    .plan-button {
        padding: 14px 24px;
        font-size: 0.95rem;
        margin-top: auto;
    }
    

}

/* General Tablet Responsiveness */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-card.popular {
        grid-column: span 2;
    }
    
    .ai-services-grid {
        grid-template-columns: 1fr;
    }
    
    .all-plans-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .plan-modal-content {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .order-summary-section {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    

}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.popular {
        grid-column: span 1;
        transform: scale(1);
        order: -1;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-toggle {
        width: 250px;
    }
    
    .all-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plan-features-list {
        grid-template-columns: 1fr;
    }
    
    .tooltip-modal-content {
        margin: 8% 20px;
        max-width: none;
    }
    

}

@media (max-width: 480px) {
    .pricing-section {
        padding: 40px 0;
    }
    
    .pricing-header {
        margin-bottom: 40px;
    }
    
    .pricing-title {
        font-size: 1.8rem;
    }
    
    .pricing-toggle {
        width: 220px;
    }
    
    .toggle-option {
        font-size: 0.85rem;
        padding: 10px 0;
    }
    
    .card-header, .card-body, .card-footer {
        padding: 20px;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .plan-name {
        font-size: 1.3rem;
    }
    
    .all-plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-modal-content {
        margin: 0 10px;
    }
    
    .tooltip-modal-content {
        margin: 5% 10px;
        max-width: none;
    }
    
    .tooltip-modal-body {
        padding: 15px;
    }
    
    .tooltip-modal-header {
        padding: 15px;
    }
    
    .plan-selection-section {
        padding: 20px;
    }
    
    .order-summary-section {
        padding: 20px;
    }
    

}

/* Animation enhancements */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pricingFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes brandGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    }
}

@keyframes popularGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.5));
    }
}

.pricing-card.animate-on-scroll {
    animation: slideInUp 0.8s ease-out forwards;
}

.plan-icon {
    animation: pricingFloat 4s ease-in-out infinite, brandGlow 3s ease-in-out infinite alternate;
}

.pricing-card.popular .plan-icon {
    animation: pricingFloat 4s ease-in-out infinite, popularGlow 3s ease-in-out infinite alternate;
}

/* Staggered animation delays for pricing cards */
.pricing-card:nth-child(1) .plan-icon {
    animation-delay: 0s, 0s;
}

.pricing-card:nth-child(2) .plan-icon {
    animation-delay: 1s, 0.5s;
}

.pricing-card:nth-child(3) .plan-icon {
    animation-delay: 2s, 1s;
}

/* Accessibility */
.cta-button:focus,
.start-plan-button:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .pricing-card {
        border-width: 2px;
        border-color: rgba(255, 255, 255, 0.3);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .plan-icon {
        animation: none !important;
    }
    
    .pricing-card:hover {
        transform: none !important;
    }
    
    .ai-service:hover,
    .all-plans-item:hover {
        transform: translateY(-2px) !important;
    }
    
    .pricing-card:hover .plan-icon,
    .ai-service:hover .ai-service-icon,
    .all-plans-item:hover .all-plans-icon {
        transform: none !important;
    }
    
    .pricing-card::before,
    .ai-service::before,
    .all-plans-item::before {
        display: none !important;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.2s !important;
    }
}