:root {
    --primary: #70ba96;
    --primary-light: #FF8533;
    --primary-dark: #70ba96;
    --primary-glow: rgba(255, 102, 0, 0.4);
    --dark-bg: #0D1117;
    --dark-card: #161B22;
    --dark-border: #30363D;
    --text-primary: #F0F6FC;
    --text-secondary: #8B949E;
    --text-dark: #1F2328;
    --white: #FFFFFF;
    --light-bg: #F6F8FA;
    --success: #3FB950;
    --warning: #D29922;
    --danger: #F85149;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 0 24px;*/
}
/* === Section Common === */
.section {
    padding: 60px 0;
}

.section:nth-child(even) {
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* FAQ */
.faq-tabs-wrap {
    text-align: center;
    margin: 20px 0;
}/*margin-bottom: 32px;*/

.faq-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 6px;
    background: var(--text-primary);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}/* background: var(--white); border: 1px solid #E5E7EB;*/

.faq-tab {
    display: inline-flex;
    align-items: center;
    padding: 10px 26px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.faq-tab:hover {
    color: var(--primary);
}

.faq-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}/* box-shadow: 0 6px 20px var(--primary-glow); */

/* FAQ */
.faq-pane {
    display: none;
}

.faq-pane.active {
    display: block;
    animation: faqPaneFade 0.4s ease;
}

@keyframes faqPaneFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* === FAQ Section === */
.faq-list {
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
    padding-right: 50px;
}

.faq-q > *:not(:last-child) {
    margin-right: 16px;
}

.faq-q::after {
    content: "+";
    position: absolute;
    right: 24px;
    font-size: 24px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-q:hover::after {
    color: var(--primary);
}

.faq-item.active .faq-q::after {
    transform: rotate(45deg);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-icon-A {
    width: 20px;
    height: 20px;
    float: left;
    margin: 3px 5px 0 0;
    background: #f39800;
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 400;
    flex-shrink: 0;
}

.faq-icon-face img {
    width: 20px;
    height: 20px;
    float: left;
    margin: 3px 5px 0 0;
    border-radius: 50%;
}

.faq-uptime {
    color: #ccc;
}

.faq-icon-face {
    color: var(--primary);
    font-weight: 700;
}

.faq-a {
    font-size: 15px;
    color: var(--primary);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 24px 0 68px;
    padding-right: 50px;
}/* color: var(--text-secondary); */

.faq-item.active .faq-a {
    max-height: 600px;
    padding-bottom: 20px;
}

.faq-a p {
    margin: 0 0 10px;
}

.faq-a a {
    color: var(--primary);
}

.faq-a p:last-child {
    margin-bottom: 0;
}

/* Tips */
.faq-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 12px;
}

.faq-chips:last-child {
    margin-bottom: 0;
}

.faq-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #7a5a14;
    background: rgba(255, 102, 0, 0.08);
    border: 1px solid rgba(212, 164, 76, 0.1);
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.faq-chip a {
    color: #7a5a14;
}

.faq-chip:hover {
    background: rgba(255, 102, 0, 0.08);
    border-color: rgba(255, 102, 0, 0.30);
}

.pricing-subaccount-note {
    max-width: 860px;
    margin: 14px auto 0;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 102, 0, 0.08);
    color: #7a5a14;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
}

.faq-follow {border-top: 1px dotted #CCC; padding-top:20px; margin-top:18px; font-size:12px; line-height:14px; color: var(--text-secondary); text-align:center}

.faq-follow img {width:120px;}
.faq-follow p {color:#f39800; text-align:center; padding-top:8px;}