/* ════════════════════════════════════════════════
   FAQs — Premium redesign
   Standalone, do NOT load alongside about.css
═══════════════════════════════════════════════════ */

html { scroll-behavior: smooth; }

/* ── HERO ─────────────────────────────────── */
.faqs-hero {
    background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
    color: #fff;
    padding: 80px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.faqs-hero::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse at center, rgba(255,107,0,0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: faqsHeroGlow 10s ease-in-out infinite;
}
@keyframes faqsHeroGlow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50%      { transform: translateX(-50%) scale(1.15); opacity: 0.7; }
}

.faqs-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.faqs-hero-label {
    font-size: 10px;
    color: #FF6B00;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'Syne', sans-serif;
    opacity: 0;
    animation: faqsFadeUp 0.5s ease 0.1s forwards;
}
.faqs-hero-title {
    font-family: 'Syne', sans-serif;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin: 0 0 18px 0;
    color: #fff;
    opacity: 0;
    animation: faqsFadeUp 0.6s ease 0.2s forwards;
}
.faqs-hero-title .text-orange { color: #FF6B00; }

.faqs-hero-sub {
    font-size: 17px;
    color: #999;
    line-height: 1.5;
    max-width: 580px;
    margin: 0 auto 32px;
    opacity: 0;
    animation: faqsFadeUp 0.6s ease 0.35s forwards;
}
.faqs-hero-sub a {
    color: #FF6B00;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: color 0.2s;
}
.faqs-hero-sub a:hover { color: #fff; }

/* Category pills */
.faqs-pills {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: faqsFadeUp 0.6s ease 0.5s forwards;
}
.faqs-pill {
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    color: #aaa;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Syne', sans-serif;
    transition: all 0.2s;
}
.faqs-pill:hover {
    border-color: #FF6B00;
    color: #FF6B00;
}
.faqs-pill.is-active {
    border-color: #FF6B00;
    color: #fff;
    background: #FF6B00;
}

/* ── MAIN GRID ────────────────────────────── */
.faqs-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: flex-start;
}

/* ── CATEGORIES ─────────────────────────── */
.faqs-category {
    margin-bottom: 40px;
    scroll-margin-top: 24px;
}
.faqs-category-label {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    color: #FF6B00;
    letter-spacing: 2.5px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.faqs-category-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,107,0,0.3), transparent);
}

.faqs-accordion {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-item {
    background: #fff;
    border: 1px solid #E0E0E0;
    transition: all 0.25s;
    opacity: 0;
    transform: translateY(8px);
}
.faq-item.is-in-view {
    opacity: 1;
    transform: translateY(0);
}
.faq-item:hover { border-color: #ccc; }

.faq-item.is-highlighted {
    border-color: #22c55e;
    border-left: 3px solid #22c55e;
    background: #f8fef9;
}
.faq-item.is-highlighted:hover { border-color: #22c55e; }

.faq-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 22px;
    text-align: left;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}
.faq-btn:hover { color: #FF6B00; }

.faq-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 3px 7px;
    background: #22c55e;
    color: #fff;
    margin-left: 8px;
    font-family: 'Syne', sans-serif;
    vertical-align: middle;
}

.faq-icon {
    width: 28px; height: 28px;
    border: 1.5px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #888;
    transition: all 0.25s;
    flex-shrink: 0;
    font-weight: 700;
    font-family: monospace;
}
.faq-btn.is-open .faq-icon {
    background: #FF6B00;
    border-color: #FF6B00;
    color: #fff;
    transform: rotate(180deg);
}
.faq-item.is-highlighted .faq-icon {
    border-color: #22c55e;
    color: #22c55e;
}
.faq-item.is-highlighted .faq-btn.is-open .faq-icon {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.faq-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-body-inner {
    padding: 0 22px 20px 22px;
    font-size: 14px;
    color: #555;
    line-height: 1.65;
}
.faq-body-inner p { margin: 0 0 10px 0; }
.faq-body-inner p:last-child { margin-bottom: 0; }
.faq-link {
    color: #FF6B00;
    text-decoration: none;
    font-weight: 600;
}
.faq-link:hover { text-decoration: underline; }

/* Trust strip between sections */
.faqs-trust-strip {
    background: #fff;
    border: 1px solid #E0E0E0;
    padding: 16px 22px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 16px;
    flex-wrap: wrap;
}
.faqs-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}
.faqs-trust-item strong {
    color: #1A1A1A;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
}

/* ── STICKY SIDE CARD ──────────────────── */
.faqs-side {
    position: sticky;
    top: 90px;
}
.faqs-side-card {
    background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
    color: #fff;
    border: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}
.faqs-side-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #FF6B00;
}
.faqs-side-bg-glow {
    position: absolute;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.2) 0%, transparent 70%);
    top: -80px; right: -80px;
    pointer-events: none;
    filter: blur(20px);
    animation: faqsSideGlow 8s ease-in-out infinite;
}
@keyframes faqsSideGlow {
    0%, 100% { transform: translate(0,0) scale(1); opacity: 1; }
    50%      { transform: translate(-20px, 20px) scale(1.1); opacity: 0.7; }
}

.faqs-side-content {
    position: relative;
    z-index: 2;
    padding: 28px 24px;
}
.faqs-side-label {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Syne', sans-serif;
    margin-bottom: 6px;
}
.faqs-side-price {
    font-family: 'Syne', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
}
.faqs-side-price-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}
.faqs-side-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 20px 0;
}
.faqs-side-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.faqs-side-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}
.faqs-side-stars-icons {
    color: #FF6B00;
    letter-spacing: 1px;
}
.faqs-side-students {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}
.faqs-side-cta {
    display: block;
    width: 100%;
    background: #FF6B00;
    color: #fff;
    height: 50px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.25s;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    border: 2px solid #FF6B00;
}
.faqs-side-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}
.faqs-side-cta:hover {
    background: #fff;
    color: #1A1A1A;
    border-color: #fff;
}
.faqs-side-cta:hover::before { left: 100%; }

.faqs-side-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(34, 197, 94, 0.1);
    border-left: 2px solid #22c55e;
    font-size: 11.5px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}
.faqs-side-guarantee strong {
    color: #22c55e;
    font-weight: 700;
}

/* Secondary support card */
.faqs-side-support {
    background: #fff;
    border: 1px solid #E0E0E0;
    padding: 18px 22px;
    text-align: center;
}
.faqs-side-support-icon {
    font-size: 24px;
    margin-bottom: 8px;
}
.faqs-side-support-title {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 4px;
}
.faqs-side-support-text {
    font-size: 11.5px;
    color: #888;
    margin-bottom: 12px;
    line-height: 1.4;
}
.faqs-side-support-link {
    display: inline-block;
    color: #FF6B00;
    font-weight: 700;
    text-decoration: none;
    font-size: 12px;
    border-bottom: 1px solid #FF6B00;
    transition: all 0.2s;
}
.faqs-side-support-link:hover {
    color: #1A1A1A;
    border-color: #1A1A1A;
}

/* ── BOTTOM BIG CTA ─────────────────────── */
.faqs-bottom-cta {
    background: #1A1A1A;
    color: #fff;
    padding: 60px 24px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}
.faqs-bottom-cta::before {
    content: '';
    position: absolute;
    top: -150px; left: 20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}
.faqs-bottom-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.faqs-bottom-quote {
    font-style: italic;
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.55;
    max-width: 700px;
    margin: 0 auto 16px;
    position: relative;
}
.faqs-bottom-quote::before {
    content: '\201C';
    font-family: 'Syne', sans-serif;
    font-size: 60px;
    color: #FF6B00;
    line-height: 0.5;
    margin-right: 6px;
    opacity: 0.5;
    vertical-align: -0.05em;
}
.faqs-bottom-author {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 36px;
    letter-spacing: 0.5px;
}
.faqs-bottom-author strong { color: #FF6B00; }
.faqs-bottom-title {
    font-family: 'Syne', sans-serif;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
}
.faqs-bottom-title .text-orange { color: #FF6B00; }
.faqs-bottom-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
}
.faqs-bottom-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.faqs-bottom-btn {
    display: inline-block;
    padding: 0 32px;
    height: 54px;
    line-height: 50px;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.25s;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}
.faqs-bottom-btn--primary {
    background: #FF6B00;
    color: #fff;
    border-color: #FF6B00;
}
.faqs-bottom-btn--primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}
.faqs-bottom-btn--primary:hover {
    background: #fff;
    color: #1A1A1A;
    border-color: #fff;
}
.faqs-bottom-btn--primary:hover::before { left: 100%; }
.faqs-bottom-btn--ghost {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.25);
}
.faqs-bottom-btn--ghost:hover {
    color: #fff;
    border-color: #fff;
}

/* ── ANIMATIONS ─────────────────────────── */
@keyframes faqsFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 980px) {
    .faqs-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .faqs-side {
        position: static;

    }
    .faqs-hero-title { font-size: 40px; }
    .faqs-hero { padding: 60px 20px 48px; }
}

@media (max-width: 560px) {
    .faqs-main { padding: 36px 16px; }
    .faqs-hero-title { font-size: 32px; }
    .faqs-hero-sub { font-size: 14px; }
    .faqs-bottom-title { font-size: 26px; }
    .faqs-trust-strip { gap: 12px; padding: 14px 16px; }
    .faq-btn { font-size: 14px; padding: 16px 18px; }
    .faq-body-inner { padding: 0 18px 18px; font-size: 13.5px; }
    .faqs-side-content { padding: 22px 20px; }
    .faqs-side-price { font-size: 36px; }
    .faqs-bottom-cta { padding: 44px 20px; }
}