:root {
    --lp-primary-orange: #F97316;
    --lp-dark-orange: #EA580C;
    --lp-white: #FFFFFF;
    --lp-light-gray: #F8FAFC;
    --lp-section-gray: #F1F5F9;
}

/* Section */
.lp-faq-section {
    padding: 3rem 0;
    background: var(--lp-white);
}

.lp-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.lp-faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lp-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.lp-section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--lp-primary-orange);
    border-radius: 9999px;
}

.lp-section-desc {
    font-size: 0.9375rem;
    color: #64748B;
    margin-top: 0.75rem;
}

/* FAQ Grid */
.lp-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* FAQ Item */
.lp-faq-item {
    background: var(--lp-white);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.lp-faq-item:hover {
    border-color: rgba(249, 115, 22, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.lp-faq-item.active {
    border-color: var(--lp-primary-orange);
    box-shadow: 0 4px 30px rgba(249, 115, 22, 0.10);
}

/* FAQ Button */
.lp-faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: all 0.3s ease;
}

.lp-faq-btn:hover {
    background: rgba(249, 115, 22, 0.02);
}

.lp-faq-question {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0F172A;
    transition: color 0.3s ease;
}

.lp-faq-item.active .lp-faq-question {
    color: var(--lp-primary-orange);
}

.lp-faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    min-width: 1.75rem;
    background: rgba(249, 115, 22, 0.08);
    color: var(--lp-primary-orange);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.lp-faq-item.active .lp-faq-number {
    background: var(--lp-primary-orange);
    color: var(--lp-white);
}

.lp-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.lp-faq-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.4s ease;
}

.lp-faq-item.active .lp-faq-icon svg {
    transform: rotate(180deg);
}

.lp-faq-item.active .lp-faq-icon {
    color: var(--lp-primary-orange);
}

/* FAQ Content */
.lp-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.25rem;
}

.lp-faq-item.active .lp-faq-content {
    max-height: 400px;
    padding: 0 1.25rem 1.25rem;
}

.lp-faq-content p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Highlight Text */
.lp-highlight-text {
    color: var(--lp-primary-orange);
    font-weight: 600;
}

/* FAQ List */
.lp-faq-list {
    margin-top: 0.5rem;
    padding-left: 1.25rem;
    list-style: none;
}

.lp-faq-list li {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.8;
    position: relative;
    padding-left: 1.25rem;
}

.lp-faq-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--lp-primary-orange);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Responsive */

/* Tablet */
@media (min-width: 640px) {
    .lp-faq-section {
        padding: 4rem 0;
    }
    
    .lp-section-title {
        font-size: 1.75rem;
    }
    
    .lp-section-title::after {
        width: 70px;
        height: 3px;
    }
    
    .lp-section-desc {
        font-size: 1rem;
    }
    
    .lp-faq-grid {
        gap: 1rem;
    }
    
    .lp-faq-btn {
        padding: 1.25rem 1.5rem;
    }
    
    .lp-faq-question {
        font-size: 1rem;
    }
    
    .lp-faq-number {
        width: 2rem;
        height: 2rem;
        min-width: 2rem;
        font-size: 0.7rem;
    }
    
    .lp-faq-item.active .lp-faq-content {
        padding: 0 1.5rem 1.25rem;
    }
    
    .lp-faq-content p {
        font-size: 0.9375rem;
    }
    
    .lp-faq-list li {
        font-size: 0.9375rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .lp-faq-section {
        padding: 5rem 0;
    }
    
    .lp-section-title {
        font-size: 2rem;
    }
    
    .lp-section-title::after {
        width: 80px;
        height: 4px;
    }
    
    .lp-faq-btn {
        padding: 1.5rem 2rem;
    }
    
    .lp-faq-question {
        font-size: 1.0625rem;
    }
    
    .lp-faq-number {
        width: 2.25rem;
        height: 2.25rem;
        min-width: 2.25rem;
        font-size: 0.75rem;
    }
    
    .lp-faq-item.active .lp-faq-content {
        padding: 0 2rem 1.5rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .lp-faq-section {
        padding: 2rem 0;
    }
    
    .lp-section-title {
        font-size: 1.25rem;
    }
    
    .lp-section-title::after {
        width: 40px;
        height: 2px;
        bottom: -4px;
    }
    
    .lp-section-desc {
        font-size: 0.8125rem;
    }
    
    .lp-faq-grid {
        gap: 0.6rem;
    }
    
    .lp-faq-btn {
        padding: 0.85rem 1rem;
        gap: 0.75rem;
    }
    
    .lp-faq-question {
        font-size: 0.8125rem;
        gap: 0.6rem;
    }
    
    .lp-faq-number {
        width: 1.5rem;
        height: 1.5rem;
        min-width: 1.5rem;
        font-size: 0.55rem;
    }
    
    .lp-faq-icon svg {
        width: 1rem;
        height: 1rem;
    }
    
    .lp-faq-item.active .lp-faq-content {
        padding: 0 1rem 1rem;
    }
    
    .lp-faq-content p {
        font-size: 0.8125rem;
        line-height: 1.7;
    }
    
    .lp-faq-list {
        padding-left: 1rem;
    }
    
    .lp-faq-list li {
        font-size: 0.8125rem;
        padding-left: 1rem;
    }
}

/* Animation */
@keyframes lpSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-faq-item.active .lp-faq-content {
    animation: lpSlideDown 0.4s ease forwards;
}