/* ═══════════════════════════════════════════════════════
   Refund & Return Page – 2026 Design System
   Prefix: tb-rr-
   Accent: #4e64df
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.tb-rr-hero {
    padding: 50px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
    position: relative;
    overflow: hidden;
}
.tb-rr-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78,100,223,.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}
.tb-rr-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}
.tb-rr-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e3e6ed;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 1.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 24px;
}
.tb-rr-badge i { color: #4e64df; }
.tb-rr-title {
    font-size: 5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.15;
    margin: 0 0 18px;
}
i.fas {
    color: white;
    font-size: 17px;
}
.tb-rr-title span { color: #4e64df; }
.tb-rr-subtitle {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ── Quick Info Cards ── */
.tb-rr-info-strip {
    padding: 50px 0;
    background: #fff;
}
.tb-rr-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.tb-rr-info-card {
    text-align: center;
    padding: 28px 20px;
    border-radius: 16px;
    background: #f8f9fc;
    border: 1px solid #eef1f8;
    transition: transform .3s ease, box-shadow .3s ease;
}
.tb-rr-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,.07);
}
.tb-rr-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4e64df, #6b7eff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
    font-size: 1.3rem;
}
.tb-rr-info-card h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}
.tb-rr-info-card p {
    font-size: 1.85rem;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

/* ── FAQ Section ── */
.tb-rr-faq {
    padding: 60px 0 80px;
    background: #fff;
}
.tb-rr-faq-header {
    text-align: center;
    margin-bottom: 40px;
}
.tb-rr-faq-header h2 {
    font-size: 5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 10px;
}
.tb-rr-faq-header h2 span { color: #4e64df; }
.tb-rr-faq-header p {
    font-size: 1.95rem;
    color: #666;
    margin: 0;
}

/* FAQ Grid — 2 columns */
.tb-rr-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* FAQ Accordion Item */
.tb-rr-acc {
    background: #f8f9fc;
    border: 1px solid #eef1f8;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.tb-rr-acc.active {
    border-color: #4e64df;
    box-shadow: 0 4px 20px rgba(78,100,223,.1);
}
.tb-rr-acc-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    transition: background .2s ease;
    user-select: none;
}
.tb-rr-acc-head:hover { background: #f0f2fa; }
.tb-rr-acc-num {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #4e64df;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.tb-rr-acc.active .tb-rr-acc-num {
    background: #4e64df;
}
.tb-rr-acc-question {
    flex: 1;
    font-size: 1.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
}
.tb-rr-acc-icon {
    font-size: .7rem;
    color: #999;
    transition: transform .3s ease;
    flex-shrink: 0;
}
.tb-rr-acc.active .tb-rr-acc-icon {
    transform: rotate(180deg);
    color: #4e64df;
}
.tb-rr-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.tb-rr-acc-answer {
    padding: 0 22px 20px 68px;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ── CTA Banner ── */
.tb-rr-cta {
    background: #111827;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tb-rr-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78,100,223,.1) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}
.tb-rr-cta h2 {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.tb-rr-cta p {
    font-size: 2rem;
    color: rgba(255,255,255,.6);
    margin: 0 0 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
i.fas.fa-shield-alt {
    color: #546ae6;
}
.tb-rr-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: #4e64df;
    color: #fff;
    border-radius: 12px;
    font-size: 1.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s ease, transform .15s ease;
}
.tb-rr-cta-btn:hover {
    background: #3d51c4;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.tb-rr-cta-btn i { font-size: .85rem; }

/* ═══ Responsive ═══ */
@media (max-width: 991px) {
    .tb-rr-hero { padding: 80px 0 50px; }
    .tb-rr-title { font-size: 2.3rem; }
    .tb-rr-info-grid { grid-template-columns: repeat(2, 1fr); }
    .tb-rr-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .tb-rr-hero { padding: 70px 0 40px; }
    .tb-rr-title { font-size: 1.9rem; }
    .tb-rr-subtitle { font-size: .95rem; }
    .tb-rr-info-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .tb-rr-info-strip { padding: 40px 0; }
    .tb-rr-faq { padding: 40px 0 60px; }
    .tb-rr-faq-header h2 { font-size: 1.6rem; }
    .tb-rr-cta { padding: 50px 0; }
    .tb-rr-cta h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .tb-rr-title { font-size: 1.6rem; }
    .tb-rr-info-grid { grid-template-columns: 1fr; }
    .tb-rr-acc-answer { padding-left: 22px; }
}
