/* ── Refunds & Returns Page ───────────────────────────────── */

/* ── Hero ──────────────────────────────────────────────────── */
.rr-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.rr-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.rr-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0.6) 45%, rgba(15,23,42,0.2) 80%, transparent 100%);
    z-index: 1;
}

.rr-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 24px 80px 56px;
}

.rr-hero-inner { max-width: 560px; }

.rr-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.rr-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 18px;
}

.rr-hero-gradient {
    background: linear-gradient(to right, #7dd3fc, #86efac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rr-hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin: 0 0 14px;
    max-width: 480px;
}

.rr-hero-updated {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0;
    font-weight: 500;
}

/* ── Body Section ──────────────────────────────────────────── */
.rr-body-section {
    padding: 80px 0 96px;
    background: #f8fafc;
}

.rr-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}

/* ── Sidebar TOC ───────────────────────────────────────────── */
.rr-sidebar {
    position: sticky;
    top: 96px;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
}

.rr-toc-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.rr-toc-card-top-bar {
    height: 4px;
    background: linear-gradient(to right, #288CCB, #49A644);
    border-radius: 16px 16px 0 0;
}

.rr-toc-body { padding: 24px 20px 20px; }

.rr-toc-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #94a3b8;
    margin: 0 0 16px;
}

.rr-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
}

.rr-toc-link {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 7px;
    transition: background 0.15s, color 0.15s;
    line-height: 1.4;
}
.rr-toc-link:hover { background: #f1f5f9; color: #0f172a; }
.rr-toc-link.is-active {
    background: linear-gradient(135deg, rgba(40,140,203,0.08), rgba(73,166,68,0.08));
    color: #288CCB;
    font-weight: 700;
}

.rr-toc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #288CCB, #49A644);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}
.rr-toc-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── Content ───────────────────────────────────────────────── */
.rr-content {
    display: flex;
    flex-direction: column;
}

.rr-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 24px;
    margin-bottom: 16px;
    scroll-margin-top: 96px;
    transition: box-shadow 0.2s, padding 0.3s ease;
}
.rr-section.is-open { padding: 40px 40px 36px; }
.rr-section:last-child { margin-bottom: 0; }
.rr-section:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.06); }

.rr-section-header {
    cursor: pointer;
    user-select: none;
}

.rr-section-num {
    font-size: 11px;
    font-weight: 800;
    color: #288CCB;
    letter-spacing: 1px;
    margin-right: 8px;
}

.rr-section-heading {
    font-size: 24px;
    font-weight: 600;
    color: #288CCB;
    margin: 0 0 18px;
    line-height: 1.25;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rr-section-toggle {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #288CCB;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.rr-section.is-open .rr-section-toggle {
    transform: rotate(180deg);
}

.rr-section-body {
    max-height: 4000px;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.rr-section:not(.is-open) .rr-section-body {
    max-height: 0;
}

/* ── Policy Grid ────────────────────────────────────────────── */
.rr-policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0 20px;
}

.rr-policy-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.rr-policy-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    color: #288CCB;
}

.rr-policy-icon svg {
    width: 100%;
    height: 100%;
}

.rr-policy-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin: 0 0 6px;
}

.rr-policy-value {
    font-size: 14px;
    color: #1e293b;
    margin: 0;
    line-height: 1.5;
}

/* ── Steps ──────────────────────────────────────────────────── */
.rr-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 16px;
}

.rr-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.rr-step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #288CCB, #49A644);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    margin-top: 2px;
}

.rr-step-body { flex: 1; }

/* ── Typography ─────────────────────────────────────────────── */
.rr-subheading {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 24px 0 10px;
}

.rr-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin: 0 0 14px;
}
.rr-text:last-child { margin-bottom: 0; }

.rr-link {
    color: #288CCB;
    text-decoration: none;
    font-weight: 600;
}
.rr-link:hover { text-decoration: underline; }

.rr-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.rr-list li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 6px;
}

.rr-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #288CCB, #49A644);
}

.rr-list--alert li::before {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

/* ── Highlight Box ──────────────────────────────────────────── */
.rr-highlight-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(40,140,203,0.06), rgba(73,166,68,0.06));
    border: 1px solid rgba(40,140,203,0.18);
    border-radius: 12px;
    padding: 18px 20px;
    margin: 20px 0 4px;
}

.rr-highlight-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.rr-highlight-box p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* ── Contact Grid ───────────────────────────────────────────── */
.rr-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.rr-contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rr-contact-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

.rr-contact-value {
    font-size: 15px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
}
.rr-contact-value:hover { color: #288CCB; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .rr-layout    { grid-template-columns: 220px 1fr; gap: 32px; }
    .rr-hero      { min-height: 400px; }
    .rr-hero-title { font-size: 38px; }
    .rr-hero-content { padding: 60px 24px; }
    .rr-hero-inner { max-width: 100%; }
}

@media (max-width: 768px) {
    .rr-layout    { grid-template-columns: 1fr; }
    .rr-sidebar   { position: static; max-height: none; }
    .rr-hero-title { font-size: 30px; }
    .rr-section.is-open { padding: 28px 24px; }
    .rr-section-heading { font-size: 20px; }
    .rr-policy-grid { grid-template-columns: 1fr; }
    .rr-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .rr-body-section { padding: 48px 0 64px; }
    .rr-hero-content { padding: 40px 20px; }
}

.refund-hero {
    position: relative;
    height: 450px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.85) 0%, rgba(45, 122, 77, 0.85) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.refund-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="400" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.refund-hero-content {
    /* margin: 0 60px; */
    position: relative;
    z-index: 2;
    color: white;
}

.refund-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.page-header {
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
}

.last-updated {
    font-size: 14px;
    color: #9CA3AF;
    margin-top: 12px;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E5E7EB;
}

.content-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-top: 24px;
    margin-bottom: 12px;
}

.content-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #6B7280;
    margin-bottom: 16px;
}

.content-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.content-section ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #6B7280;
    margin-bottom: 12px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.08) 0%, rgba(45, 122, 77, 0.08) 100%);
    border-left: 4px solid #0F766E;
    padding: 20px;
    margin: 24px 0;
    border-radius: 8px;
}

.highlight-box p {
    margin: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

.info-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card h4 {
    color: #0F766E;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-card p {
    margin: 0;
    font-size: 14px;
}

.toc {
    background: white;
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.toc h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
    margin-top: 0;
}

.toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc li {
    margin-bottom: 10px;
}

.toc a {
    color: #0F766E;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.toc a:hover {
    color: #2D7A4D;
    text-decoration: underline;
}

.footer-spacing {
    margin-bottom: 80px;
}

@media (max-width: 1024px) {
    main {
        padding: 0 24px;
        margin: 60px auto;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    main {
        padding: 0 16px;
        margin: 40px auto;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 14px;
    }

    .content-section h2 {
        font-size: 20px;
    }

    .content-section h3 {
        font-size: 16px;
    }

    .content-section p,
    .content-section ul li {
        font-size: 14px;
    }

    .toc {
        padding: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}