.pricing-page {
    padding-top: 100px;
    padding-bottom: 80px;
    background: var(--color-bg-secondary);
    min-height: 100vh;
}
.pricing-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}
.pricing-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.pricing-header p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}
.pricing-card {
    background: var(--color-bg);
    border-radius: 12px;
    padding: 48px;
    box-shadow: var(--shadow-card);
    margin-bottom: 32px;
}
.pricing-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 2px solid var(--color-primary);
}
.pricing-item {
    text-align: center;
}
.pricing-item h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text-secondary);
}
.pricing-item .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}
.pricing-item .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-muted);
}
.pricing-item p {
    margin-top: 12px;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}
.pricing-notes {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.pricing-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}
.pricing-note svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}
.pricing-cta {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}
.pricing-cta p {
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}
.pricing-calculator-section {
    margin-top: 48px;
}
.pricing-calculator-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}
.calculator-card {
    background: var(--color-bg);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-card);
}
.calculator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.calc-input label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text);
}
.calc-input input,
.calc-input select {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.9375rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-bg);
    color: var(--color-text);
}
.calc-input input:focus,
.calc-input select:focus {
    outline: none;
    border-color: var(--color-primary);
}
.input-group {
    display: flex;
    gap: 8px;
}
.input-group input {
    flex: 1;
}
.input-group select {
    width: auto;
}
.input-suffix {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}
.calculator-result {
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}
.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.result-item span {
    color: var(--color-text-secondary);
}
.result-item strong {
    font-size: 1.125rem;
    font-weight: 600;
}
.result-item.total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--color-border);
}
.result-item.total span {
    font-weight: 600;
    color: var(--color-text);
}
.result-item.total strong {
    font-size: 1.5rem;
    color: var(--color-primary);
}
.faq-section {
    margin-top: 64px;
}
.faq-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

.faq-item {
    background: var(--color-bg);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
    transition: all 0.2s ease;
}
.faq-item:hover {
    box-shadow: var(--shadow-lg);
}
.faq-item h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}
.faq-item p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}
.faq-item ul {
    margin: 12px 0 0 20px;
    color: var(--color-text-secondary);
}
.faq-item li {
    margin-bottom: 6px;
    line-height: 1.6;
}
.faq-item code {
    font-family: var(--font-mono);
    background: var(--color-bg-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.875rem;
}

/* Remove default disclosure marker and style summary */
.faq-item summary {
    cursor: pointer;
    list-style: none; /* Remove default arrow */
    padding: 24px 28px; /* Move original padding here */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px; /* Match original border-radius */
}

.faq-item summary::-webkit-details-marker {
    display: none; /* Remove default arrow (Safari/Chrome) */
}

/* Remove bottom margin from h3 when used as toggle title */
.faq-item summary h3 {
    margin-bottom: 0;
    flex: 1;
}

/* Add spacing between title and content when open */
.faq-item[open] summary {
    margin-bottom: 12px;
}

/* Custom toggle indicator (+/−) */
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary);
    margin-left: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: '−';
}

/* Optional: Fade-in animation for content */
.faq-item[open] p {
    animation: faqFadeIn 0.3s ease-out;
}

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-content {
    padding: 0 28px 24px; /* Left, right, bottom padding only */
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* If your FAQ items contain lists */
.faq-item[open] ul {
    animation: faqFadeIn 0.3s ease-out;
    margin-top: 12px;
}






@media (max-width: 768px) {
    .pricing-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    .pricing-notes {
        flex-direction: column;
        align-items: center;
    }
}

