/* Reusable Component Styles */

/* Pricing Card Components */
.pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.15);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--cointracking-light-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card-image {
    height: 160px;
    width: auto;
    margin: 1rem auto 0.5rem;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-card-image {
    transform: scale(1.05);
}

.pricing-card-body {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.025em;
}

.pricing-card-transactions {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 500;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background-color: rgba(0, 123, 255, 0.08);
    border-radius: 8px;
    padding: 0.5rem;
}

.pricing-card-price {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 1rem 0 1.5rem;
    line-height: 1;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.pricing-card-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 600;
}

.pricing-card-price .period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-left: 0.25rem;
}

.pricing-card-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1;
}

.pricing-card-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.pricing-card-features svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 2px;
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.popular-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 0 16px 0 16px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Billing Toggle Component */
.billing-tabs {
    display: flex;
    justify-content: center;
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    padding: 6px;
    margin: 0 auto 3rem;
    width: fit-content;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.billing-tab-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.billing-tab-label {
    display: inline-block;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 2px;
    text-align: center;
    min-width: 80px;
    letter-spacing: 0.025em;
    position: relative;
}

.billing-tab-input:checked + .billing-tab-label {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
    transform: translateY(-2px);
}

/* Simple Billing Toggle Component */
.billing-tabs-simple {
    display: flex;
    justify-content: center;
    gap: 4px;
    max-width: 350px;
    margin: 0 auto;
    padding: 4px;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.billing-tab-label-simple {
display: inline-block;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    flex: 1;
    min-width: 70px;
    background: transparent;
    margin-bottom: 0px;
}

.billing-tab-input:checked + .billing-tab-label-simple {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.25);
}

.billing-tab-label-simple:hover {
    background: rgba(0, 123, 255, 0.08);
    color: var(--primary-color);
}

/* FAQ Accordion Component */
.faq-accordion .accordion-item {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.faq-accordion .accordion-button {
    background-color: #f8fafc;
    border: none;
    box-shadow: none;
    color: var(--cointracking-blue);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-accordion .accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #4a5568;
    line-height: 1.6;
    background-color: #f8fafc;
}

/* Testimonial Card Component */
.testimonial-card {
    background-color: var(--light-bg);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-weight: 500;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    color: var(--text-medium);
    font-weight: 500;
    margin-top: auto;
}

/* Feature Card Component */
.feature-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-size: 2rem;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card-description {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Hero Section Component */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .pricing-card-image {
        height: 120px;
    }
    
    .pricing-card-body {
        padding: 1rem;
    }
}

.bootstrap-main {
    background: white;
    font-size: 16px;
    line-height: 1.6;
}

/* Custom Badge Colors */
.bg-starter-blue {
    background-color: #388BF3 !important;
    color: white !important;
}


/* Font standardization */
.wrapper:not(.main-nav):not(.desktop_only),
.wrapper:not(.main-nav):not(.desktop_only) select,
.wrapper:not(.main-nav):not(.desktop_only) input,
.wrapper:not(.main-nav):not(.desktop_only) button,
.bootstrap-main a,
.checkout-grid a,
.bootstrap-main h1,
.bootstrap-main h2,
.bootstrap-main h3,
.bootstrap-main h4,
.bootstrap-main h5,
.bootstrap-main h6,
.checkout-grid h1,
.checkout-grid h2,
.checkout-grid h3,
.checkout-grid h4,
.checkout-grid h5,
.checkout-grid h6,
.btn,
.bootstrap-main,
table,
table.fancy thead th,
.header .master-account .sqlbox {
    font-family: 'Helvetica Neue LT Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.s1 {
    font-size: var(--font-size-body-small);
}