/* === FAQ Section — Jony Ive Aesthetic === */
.faq-section-ive {
    padding: 0 16px 48px;
}

.faq-section-ive .faq-section-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--weui-FG-1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 32px 16px 12px;
    margin: 0;
}

.faq-section-ive .faq-card-list {
    background: var(--weui-BG-2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
    margin: 0;
}

.faq-section-ive .faq-card-list::before,
.faq-section-ive .faq-card-list::after {
    display: none;
}

.faq-section-ive .faq-item {
    padding: 0;
    transition: background-color 300ms ease;
    position: relative;
}

.faq-section-ive .faq-item::before {
    content: '';
    position: absolute;
    left: 52px;
    right: 0;
    top: 0;
    height: 1px;
    background: var(--weui-FG-3);
    transform: scaleY(0.5);
}

.faq-section-ive .faq-item:first-child::before {
    display: none;
}

.faq-section-ive .faq-item_active {
    background-color: rgba(0,0,0,.02);
}

.faq-section-ive .faq-question {
    display: flex;
    align-items: center;
    padding: 16px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    gap: 12px;
    min-height: 48px;
}

.faq-section-ive .faq-question:active {
    opacity: 0.6;
    transition: opacity 50ms ease;
}

.faq-section-ive .faq-q-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--weui-BRAND);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1;
}

.faq-section-ive .faq-q-text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: var(--weui-FG-0);
    line-height: 1.4;
}

.faq-section-ive .faq-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 300ms cubic-bezier(.4, 0, .2, 1);
}

.faq-section-ive .faq-arrow::before,
.faq-section-ive .faq-arrow::after {
    content: '';
    position: absolute;
    background: var(--weui-FG-2);
    border-radius: 1px;
    transition: background 300ms ease;
}

.faq-section-ive .faq-arrow::before {
    width: 8px;
    height: 1.5px;
    top: 50%;
    left: 3px;
    transform: rotate(40deg);
    transform-origin: right center;
}

.faq-section-ive .faq-arrow::after {
    width: 8px;
    height: 1.5px;
    top: 50%;
    right: 3px;
    transform: rotate(-40deg);
    transform-origin: left center;
}

.faq-section-ive .faq-item_active .faq-arrow {
    transform: rotate(180deg);
}

.faq-section-ive .faq-item_active .faq-arrow::before,
.faq-section-ive .faq-item_active .faq-arrow::after {
    background: var(--weui-BRAND);
}

.faq-section-ive .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms cubic-bezier(.4, 0, .2, 1);
    padding: 0 16px 0 52px;
}

.faq-section-ive .faq-item_active .faq-answer {
    padding-bottom: 16px;
}

.faq-section-ive .faq-a-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--weui-BLUE);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    float: left;
    margin-right: 12px;
    margin-top: 1px;
    flex-shrink: 0;
}

.faq-section-ive .faq-a-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--weui-FG-1);
    line-height: 1.6;
    display: block;
    overflow: hidden;
}
