/* Landing Page - Mobile First */
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

/* Custom text size - Improved for mobile readability */
.text-xxs {
    font-size: 0.65rem;
    line-height: 1rem;
}

/* Mobile-specific improvements */
@media (max-width: 1023px) {
    .text-xxs {
        font-size: 0.8rem;
        line-height: 1.25rem;
    }
    
    /* Increase button sizes for better touch targets */
    .mobile-btn-lg {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.875rem !important;
    }
    
    /* Better spacing for mobile cards */
    .mobile-card-spacing {
        padding: 1rem !important;
    }
    
    /* Improve icon sizes */
    .mobile-icon-md {
        width: 2.5rem !important;
        height: 2.5rem !important;
        font-size: 1.125rem !important;
    }
    
    /* Better heading sizes */
    .mobile-heading-xl {
        font-size: 1.75rem !important;
        line-height: 2rem !important;
    }
    
    .mobile-heading-lg {
        font-size: 1.25rem !important;
        line-height: 1.75rem !important;
    }
    
    .mobile-heading-md {
        font-size: 1rem !important;
        line-height: 1.5rem !important;
    }
    
    /* Better text sizes */
    .mobile-text-base {
        font-size: 0.9rem !important;
        line-height: 1.4rem !important;
    }
    
    .mobile-text-sm {
        font-size: 0.8rem !important;
        line-height: 1.25rem !important;
    }
    
    /* Improve stat numbers */
    .mobile-stat-number {
        font-size: 1.5rem !important;
        line-height: 2rem !important;
    }
    
    /* Better feature card sizing */
    .mobile-feature-card {
        padding: 1rem !important;
        gap: 0.75rem !important;
    }
    
    /* Improve FAQ spacing */
    .mobile-faq-item {
        padding: 1rem !important;
    }
    
    /* Better testimonial cards */
    .mobile-testimonial-card {
        width: 280px !important;
        padding: 1rem !important;
    }
    
    /* Improve pricing cards */
    .mobile-pricing-card {
        padding: 1.25rem !important;
    }
    
    /* Better avatar sizes */
    .mobile-avatar-md {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
    
    /* Improve badge sizes */
    .mobile-badge {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Better step card sizing */
    .mobile-step-card {
        padding: 1rem !important;
    }
    
    .mobile-step-icon {
        width: 2.5rem !important;
        height: 2.5rem !important;
        font-size: 1.125rem !important;
    }
    
    .mobile-step-number {
        width: 1.75rem !important;
        height: 1.75rem !important;
        font-size: 0.875rem !important;
    }
}

/* Gradient text fallback */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

/* Mobile logos auto scroll */
.logos-auto-scroll {
    overflow: hidden;
}
.logos-track-mobile {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-mobile 15s linear infinite;
    font-size: 0.75rem;
    font-weight: 600;
    color: #a1a1aa;
}
.logos-track-mobile span {
    white-space: nowrap;
}
@keyframes scroll-mobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hide scrollbar */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* FAQ */
.faq-item.active .faq-btn i {
    transform: rotate(45deg);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
}
.faq-item.active .faq-content {
    max-height: 200px;
}

/* Mobile FAQ adjustments */
@media (max-width: 1023px) {
    .faq-item.active .faq-content {
        max-height: 250px;
    }
}

/* Pulse */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Stat cards */
.stat-card {
    transform: translateY(0);
}
.stat-card:hover {
    transform: translateY(-4px);
}

/* Count-up numbers */
.count-up {
    display: inline-block;
    min-width: 2ch;
}

/* Mobile menu */
#mobileMenu {
    display: none;
}
#mobileMenu.active {
    display: block;
}

/* Touch friendly */
button, a {
    -webkit-tap-highlight-color: transparent;
}

/* Prevent text selection on buttons */
button {
    user-select: none;
}


/* ===== PUBLIC PRICING PAGE STYLES ===== */

/* Pricing Hero */
.pricing-hero-section {
    padding: 8rem 1rem 4rem;
    background: linear-gradient(to bottom, #f4f4f5, #ffffff);
}

.pricing-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.pricing-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pricing-hero-desc {
    font-size: 1.125rem;
    color: #71717a;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

/* Pricing Grid */
.pricing-grid-container {
    padding: 4rem 1rem;
    max-width: 90rem;
    margin: 0 auto;
}

/* Mobile scroll hint */
.mobile-scroll-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 0.75rem;
    margin: 0 1rem 1rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.mobile-scroll-hint i {
    font-size: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Pricing Card */
.pricing-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    border: 2px solid #e4e4e7;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pricing-card.popular {
    border-color: #25D366;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.1);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.pricing-plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #18181b;
}

.pricing-currency {
    font-size: 0.875rem;
    color: #71717a;
}

.pricing-period {
    font-size: 0.875rem;
    color: #71717a;
}

.pricing-desc {
    font-size: 0.75rem;
    color: #71717a;
}

/* Features List */
.pricing-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-feature-group {
    margin-bottom: 1rem;
}

.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #3f3f46;
}

.pricing-feature-item i {
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.pricing-feature-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.pricing-feature-check.yes {
    color: #16a34a;
}

.pricing-feature-check.no {
    color: #d4d4d8;
}

.pricing-feature-divider {
    height: 1px;
    background: #e4e4e7;
    margin: 1rem 0;
}

/* CTA Button */
.pricing-cta-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: center;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    text-decoration: none;
    margin-top: auto;
}

.pricing-cta-btn.primary {
    background: #25D366;
    color: white;
}

.pricing-cta-btn.primary:hover {
    background: #128C7E;
}

.pricing-cta-btn.secondary {
    background: #f4f4f5;
    color: #18181b;
}

.pricing-cta-btn.secondary:hover {
    background: #e4e4e7;
}

.pricing-cta-btn.dark {
    background: #18181b;
    color: white;
}

.pricing-cta-btn.dark:hover {
    background: #27272a;
}

/* Comparison Table */
.pricing-comparison {
    padding: 4rem 1rem;
    background: #f4f4f5;
}

.pricing-comparison-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-comparison-desc {
    text-align: center;
    color: #71717a;
    margin-bottom: 3rem;
}

.pricing-table-wrapper {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e4e4e7;
    overflow: hidden;
}

.pricing-table {
    width: 100%;
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background: #f4f4f5;
    border-bottom: 1px solid #e4e4e7;
}

.pricing-table th {
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #18181b;
}

.pricing-table th:first-child {
    text-align: left;
}

.pricing-table th:not(:first-child) {
    text-align: center;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #f4f4f5;
}

.pricing-table td {
    padding: 1rem 1.5rem;
    color: #52525b;
}

.pricing-table td:first-child {
    color: #3f3f46;
}

.pricing-table td:not(:first-child) {
    text-align: center;
}

/* FAQ Section */
.pricing-faq {
    padding: 4rem 1rem;
    max-width: 48rem;
    margin: 0 auto;
}

.pricing-faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-faq-desc {
    text-align: center;
    color: #71717a;
    margin-bottom: 3rem;
}

.pricing-faq-item {
    background: white;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-faq-question {
    font-weight: 600;
    color: #18181b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    color: #71717a;
    line-height: 1.6;
}

.pricing-faq-item details[open] .fa-chevron-down {
    transform: rotate(180deg);
}

.pricing-faq-item .fa-chevron-down {
    transition: transform 0.3s ease;
}

/* CTA Section */
.pricing-cta-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #128C7E, #25D366);
    text-align: center;
    color: white;
}

.pricing-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-cta-desc {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.pricing-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    body {
        overflow-x: hidden;
    }
    
    .pricing-hero-section {
        padding: 5rem 1rem 1.5rem;
        overflow-x: hidden;
    }
    
    .pricing-hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .pricing-hero-desc {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .pricing-hero-badge {
        padding: 0.375rem 0.75rem;
        margin-bottom: 1rem;
        font-size: 0.75rem;
    }
    
    .pricing-grid-container {
        padding: 1.5rem 0;
        overflow-x: hidden;
    }
    
    /* Show scroll hint on mobile */
    .mobile-scroll-hint {
        display: flex;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0.7;
        }
    }
    
    /* Horizontal scroll for pricing cards on mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 1rem 1rem 1rem;
        margin: 0 -1rem;
        width: calc(100% + 2rem);
    }
    
    .pricing-grid::-webkit-scrollbar {
        height: 4px;
    }
    
    .pricing-grid::-webkit-scrollbar-track {
        background: #f4f4f5;
        border-radius: 10px;
    }
    
    .pricing-grid::-webkit-scrollbar-thumb {
        background: #d4d4d8;
        border-radius: 10px;
    }
    
    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: #a1a1aa;
    }
    
    .pricing-card {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        padding: 1rem;
        scroll-snap-align: start;
    }
    
    .pricing-card.popular {
        transform: scale(1);
        margin: 0;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
    
    .pricing-card-header {
        margin-bottom: 1rem;
    }
    
    .pricing-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 0.75rem;
    }
    
    .pricing-icon i {
        font-size: 1.25rem !important;
    }
    
    .pricing-plan-name {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .pricing-amount {
        font-size: 1.75rem;
    }
    
    .pricing-period {
        font-size: 0.75rem;
    }
    
    .pricing-desc {
        font-size: 0.7rem;
    }
    
    .pricing-features {
        margin-bottom: 1rem;
    }
    
    .pricing-feature-group {
        margin-bottom: 0.75rem;
    }
    
    .pricing-feature-item {
        padding: 0.375rem 0;
        font-size: 0.8rem;
        gap: 0.375rem;
    }
    
    .pricing-feature-item i {
        font-size: 0.875rem;
    }
    
    .pricing-feature-check {
        padding: 0.375rem 0;
        font-size: 0.8rem;
        gap: 0.375rem;
    }
    
    .pricing-feature-check i {
        font-size: 0.875rem;
    }
    
    .pricing-feature-divider {
        margin: 0.75rem 0;
    }
    
    .pricing-cta-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .pricing-faq {
        padding: 1.5rem 1rem;
        overflow-x: hidden;
    }
    
    .pricing-faq-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .pricing-faq-desc {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-faq-item {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .pricing-faq-question {
        font-size: 0.875rem;
    }
    
    .pricing-faq-answer {
        font-size: 0.8rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .pricing-cta-section {
        padding: 1.5rem 1rem;
        overflow-x: hidden;
    }
    
    .pricing-cta-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .pricing-cta-desc {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-cta-buttons {
        width: 100%;
        gap: 0.75rem;
    }
    
    .pricing-cta-buttons a {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 641px) {
    .pricing-cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .pricing-hero-title {
        font-size: 3.75rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}


/* Plan-specific colors */
.plan-icon-free {
    background-color: rgba(59, 130, 246, 0.1);
}

.plan-icon-color-free {
    color: #3b82f6;
}

.plan-icon-starter {
    background-color: rgba(16, 185, 129, 0.1);
}

.plan-icon-color-starter {
    color: #10b981;
}

.plan-icon-professional {
    background-color: rgba(139, 92, 246, 0.1);
}

.plan-icon-color-professional {
    color: #8b5cf6;
}

.plan-icon-business {
    background-color: rgba(249, 115, 22, 0.1);
}

.plan-icon-color-business {
    color: #f97316;
}

.plan-icon-enterprise {
    background-color: rgba(245, 158, 11, 0.1);
}

.plan-icon-color-enterprise {
    color: #f59e0b;
}


/* ===== HOW PRICING WORKS PAGE STYLES ===== */

/* Hero Section */
.how-pricing-hero {
    padding: 8rem 1rem 4rem;
    background: linear-gradient(135deg, #f4f4f5 0%, #ffffff 100%);
}

.how-pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.how-pricing-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #18181b;
}

.how-pricing-desc {
    font-size: 1.25rem;
    color: #71717a;
    max-width: 48rem;
    margin: 0 auto;
}

/* Content Section */
.how-pricing-content {
    padding: 2rem 1rem 4rem;
}

.how-pricing-section {
    margin-bottom: 5rem;
}

.how-pricing-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.how-pricing-icon-lg {
    width: 5rem;
    height: 5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.how-pricing-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 0.75rem;
}

.how-pricing-section-desc {
    font-size: 1.125rem;
    color: #71717a;
}

/* Grid Layouts */
.how-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.how-pricing-card {
    background: white;
    border: 2px solid #e4e4e7;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.how-pricing-card:hover {
    border-color: #25D366;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.1);
    transform: translateY(-4px);
}

.how-pricing-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.how-pricing-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 0.75rem;
}

.how-pricing-card-text {
    font-size: 0.9375rem;
    color: #52525b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.how-pricing-card-example {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #fef3c7;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #78350f;
}

.how-pricing-card-example i {
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Unlimited Cards */
.how-pricing-unlimited-grid {
    display: grid;
    gap: 1rem;
}

.how-pricing-unlimited-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border: 2px solid #e4e4e7;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.how-pricing-unlimited-card:hover {
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
    transform: translateX(4px);
}

.how-pricing-unlimited-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.how-pricing-unlimited-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 0.5rem;
}

.how-pricing-unlimited-text {
    font-size: 0.9375rem;
    color: #52525b;
    line-height: 1.6;
}

/* Deduction Cards */
.how-pricing-deduction-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.how-pricing-deduction-card {
    background: white;
    border: 2px solid #e4e4e7;
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.how-pricing-deduction-card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
    transform: translateY(-4px);
}

.how-pricing-deduction-number {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.how-pricing-deduction-content {
    margin-top: 1rem;
}

.how-pricing-deduction-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 0.5rem;
}

.how-pricing-deduction-text {
    font-size: 0.9375rem;
    color: #52525b;
    line-height: 1.6;
}

/* Scenarios */
.how-pricing-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.how-pricing-scenario {
    background: white;
    border: 2px solid #e4e4e7;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.how-pricing-scenario:hover {
    border-color: #25D366;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.15);
    transform: translateY(-4px);
}

.how-pricing-scenario-header {
    background: linear-gradient(135deg, #f4f4f5, #e4e4e7);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.how-pricing-scenario-header i {
    font-size: 1.5rem;
}

.how-pricing-scenario-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #18181b;
}

.how-pricing-scenario-content {
    padding: 1.5rem;
}

.how-pricing-scenario-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.how-pricing-scenario-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: #52525b;
}

.how-pricing-scenario-list i {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.how-pricing-scenario-total {
    padding: 1rem;
    background: #f4f4f5;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    color: #18181b;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .how-pricing-hero {
        padding: 5rem 1rem 2rem;
    }
    
    .how-pricing-title {
        font-size: 1.75rem;
    }
    
    .how-pricing-desc {
        font-size: 1rem;
    }
    
    .how-pricing-content {
        padding: 1rem 1rem 2rem;
    }
    
    .how-pricing-section {
        margin-bottom: 3rem;
    }
    
    .how-pricing-section-header {
        margin-bottom: 2rem;
    }
    
    .how-pricing-icon-lg {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1rem;
    }
    
    .how-pricing-icon-lg i {
        font-size: 1.75rem !important;
    }
    
    .how-pricing-section-title {
        font-size: 1.75rem;
    }
    
    .how-pricing-section-desc {
        font-size: 0.9375rem;
    }
    
    .how-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .how-pricing-card {
        padding: 1.25rem;
    }
    
    .how-pricing-card-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .how-pricing-card-icon i {
        font-size: 1.5rem !important;
    }
    
    .how-pricing-card-title {
        font-size: 1.125rem;
    }
    
    .how-pricing-card-text {
        font-size: 0.875rem;
    }
    
    .how-pricing-card-example {
        font-size: 0.8125rem;
    }
    
    .how-pricing-unlimited-card {
        flex-direction: column;
        padding: 1.25rem;
    }
    
    .how-pricing-unlimited-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .how-pricing-unlimited-icon i {
        font-size: 1.5rem !important;
    }
    
    .how-pricing-unlimited-title {
        font-size: 1rem;
    }
    
    .how-pricing-unlimited-text {
        font-size: 0.875rem;
    }
    
    .how-pricing-deduction-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .how-pricing-deduction-card {
        padding: 1.25rem;
    }
    
    .how-pricing-deduction-number {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .how-pricing-deduction-title {
        font-size: 1rem;
    }
    
    .how-pricing-deduction-text {
        font-size: 0.875rem;
    }
    
    .how-pricing-scenarios {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .how-pricing-scenario-header {
        padding: 1.25rem;
    }
    
    .how-pricing-scenario-header i {
        font-size: 1.25rem;
    }
    
    .how-pricing-scenario-header h3 {
        font-size: 1.125rem;
    }
    
    .how-pricing-scenario-content {
        padding: 1.25rem;
    }
    
    .how-pricing-scenario-list li {
        font-size: 0.875rem;
    }
    
    .how-pricing-scenario-total {
        font-size: 0.875rem;
    }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .how-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-pricing-deduction-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .how-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
