/* SCROLL PROGRESS */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--trust-blue), #60A5FA);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s;
    border-radius: 0 2px 2px 0;
}

/* LAYOUT */
.page-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 32px;
    position: relative;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* SIDEBAR */
.sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 24px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--trust-blue);
    margin-bottom: 14px;
}

.sidebar-nav a {
    display: block;
    padding: 7px 12px;
    font-size: 13.5px;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 500;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--light-blue);
    color: var(--trust-blue);
}

.sidebar-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
    padding: 4px 0;
    font-weight: 500;
}

.sidebar-trust-item .dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--trust-blue);
    flex-shrink: 0;
}

.sidebar-support-btn {
    display: block;
    width: 100%;
    padding: 11px;
    background: var(--trust-blue);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.2s;
    letter-spacing: 0.3px;
}

.sidebar-support-btn:hover {
    background: var(--navy);
}

.date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-blue);
    color: var(--trust-blue);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}

/* HERO */
.hero-rp {
    background: linear-gradient(135deg, #0a1f44 0%, #0f2d6b 50%, #1540a8 100%);
    padding: 150px 0 72px;
    position: relative;
    overflow: hidden;
}

.hero-rp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(30, 94, 255, .25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-rp::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    /* clip-path: ellipse(55% 100% at 50% 100%); */
}

.hero-inner-rp {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-rp h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero-rp h1 span {
    color: #60A5FA;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.72);
    max-width: 640px;
    line-height: 1.75;
    margin-bottom: 36px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--white);
    font-weight: 500;
    backdrop-filter: blur(8px);
    transition: background 0.2s;
}

.trust-badge .check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--trust-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* SECTION COMMON */
section {
    padding: 72px 0;
}

.section-label-rp {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--trust-blue);
    margin-bottom: 10px;
}

.section-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 600px;
    line-height: 1.75;
}

.section-header {
    margin-bottom: 3rem;
    padding: 1rem;
}

/* GLASS CARD */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(30, 94, 255, 0.1);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

/* OVERVIEW */
#overview {
    background: var(--gray-100);
}

.overview-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.overview-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--trust-blue), var(--blue-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.overview-content {
    flex: 1;
    min-width: 240px;
}

.overview-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}

.overview-content p {
    color: var(--gray-600);
    font-size: 15.5px;
    margin-bottom: 10px;
}

.overview-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.pill {
    background: var(--light-blue);
    color: var(--trust-blue);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
}

/* ELIGIBLE SCENARIOS */
#eligible {
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--trust-blue), #60A5FA);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.card-icon.danger {
    background: #FFF1F1;
}

.feature-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.badge-yes {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: var(--success);
    background: #ECFDF5;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 12px;
}

.badge-no {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: var(--danger);
    background: #FFF5F5;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 12px;
}

/* NON-REFUNDABLE */
#non-refundable {
    background: var(--gray-100);
}

.warn-card {
    background: linear-gradient(135deg, #FFF8F8, #FFF1F1);
    border: 1px solid #FECACA;
    border-left: 4px solid var(--danger);
    border-radius: var(--radius);
    padding: 22px 26px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.warn-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.warn-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.warn-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #991B1B;
    margin-bottom: 5px;
}

.warn-card p {
    font-size: 13.5px;
    color: #7F1D1D;
    line-height: 1.55;
}

.warn-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* CANCELLATION TIMELINE */
#cancellation {
    background: var(--white);
}

.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--trust-blue), var(--light-blue));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 28px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 16px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--trust-blue);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px rgba(30, 94, 255, 0.2);
}

.timeline-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.timeline-card:hover {
    transform: translateX(4px);
}

.timeline-stage {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--trust-blue);
    margin-bottom: 6px;
}

.timeline-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.timeline-card p {
    font-size: 14.5px;
    color: var(--gray-600);
}

.timeline-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.tag-green {
    background: #ECFDF5;
    color: #065F46;
}

.tag-yellow {
    background: #FFFBEB;
    color: #92400E;
}

.tag-orange {
    background: #FFF7ED;
    color: #9A3412;
}

.tag-red {
    background: #FFF5F5;
    color: #991B1B;
}

/* REVIEW PROCESS */
#review-process {
    background: linear-gradient(135deg, var(--gray-100), var(--light-blue));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--trust-blue), var(--blue-mid));
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(30, 94, 255, 0.3);
}

.step-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13.5px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.step-time {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--trust-blue);
    background: var(--light-blue);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* PAYMENT TERMS */
#payment-terms {
    background: var(--white);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.payment-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius);
    padding: 28px 26px;
    color: var(--white);
    transition: transform 0.2s;
}

.payment-card:hover {
    transform: translateY(-3px);
}

.payment-card .picon {
    font-size: 28px;
    margin-bottom: 14px;
}

.payment-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.payment-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-blue);
    border-radius: 12px;
    padding: 14px 20px;
    flex: 1;
    min-width: 200px;
}

.trust-item .ticon {
    font-size: 24px;
}

.trust-item .ttext {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

/* PARTIAL REFUNDS */
#partial-refunds {
    background: var(--gray-100);
}

.partial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.partial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.partial-pct {
    font-family: 'DM Sans', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--trust-blue);
    margin-bottom: 4px;
}

.partial-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.partial-card p {
    font-size: 13px;
    color: var(--gray-600);
}

.bar-wrap {
    height: 6px;
    background: var(--gray-200);
    border-radius: 6px;
    margin: 12px 0;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--trust-blue), #60A5FA);
}

.partial-note {
    background: var(--light-blue);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 28px;
    border-left: 4px solid var(--trust-blue);
    font-size: 14px;
    color: var(--navy);
    line-height: 1.65;
}

/* CHARGEBACK */
#chargeback {
    background: var(--white);
}

.chargeback-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.chargeback-icon {
    font-size: 56px;
}

.chargeback-content {
    flex: 1;
    min-width: 260px;
}

.chargeback-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.chargeback-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 10px;
}

.cb-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.cb-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
}

.cb-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--trust-blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cb-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* SATISFACTION */
#satisfaction {
    background: var(--gray-100);
}

.satisfaction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.satisfaction-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.2s;
}

.satisfaction-card:hover {
    transform: translateY(-3px);
}

.sc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.sc-content h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.sc-content p {
    font-size: 13.5px;
    color: var(--gray-600);
}

/* REFUND FORM */
#request-refund {
    background: var(--white);
}

.form-wrap {
    max-width: 680px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
}

input,
textarea,
select {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--trust-blue);
    box-shadow: 0 0 0 3px rgba(30, 94, 255, 0.1);
}

textarea {
    resize: vertical;
    min-height: 110px;
}

.upload-zone {
    border: 2px dashed var(--gray-200);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.upload-zone:hover {
    border-color: var(--trust-blue);
}

.upload-zone p {
    font-size: 14px;
    color: var(--gray-400);
}

.upload-zone span {
    color: var(--trust-blue);
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--trust-blue), var(--blue-mid));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 10px;
    box-shadow: 0 8px 24px rgba(30, 94, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(30, 94, 255, 0.4);
}

.response-time {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-400);
}

.response-time strong {
    color: var(--trust-blue);
}

/* FAQ */
#faqs {
    background: var(--gray-100);
}

.faq-list {
    max-width: 760px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
}

.faq-chevron {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
    font-size: 13px;
    color: var(--trust-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 24px 18px;
    font-size: 14.5px;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

/* CONTACT */
#contact {
    background: var(--white);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
    min-width: 220px;
}

.contact-detail-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-detail-row:last-child {
    margin-bottom: 0;
}

.cdr-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cdr-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.cdr-text span {
    font-size: 14px;
    color: var(--gray-600);
}

.contact-btns {
    display: flex;
    /* flex-direction: column; */
    gap: 10px;
    min-width: 200px;
}

.btn-primary {
    padding: 14px 28px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--trust-blue), var(--blue-mid));
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    display: block;
    box-shadow: 0 4px 16px rgba(30, 94, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    padding: 13px 28px;
    border-radius: 10px;
    border: 2px solid var(--trust-blue);
    color: var(--trust-blue);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    background: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    display: block;
}

.btn-outline:hover {
    background: var(--light-blue);
}

/* FINAL CTA */
#final-cta {
    background: linear-gradient(135deg, var(--navy), #132B5E);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(30, 94, 255, 0.2) 0%, transparent 60%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

#final-cta h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

#final-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    padding: 15px 32px;
    border-radius: 12px;
    background: var(--trust-blue);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-btn-primary:hover {
    background: var(--blue-mid);
}

.cta-btn-ghost {
    padding: 14px 32px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    background: none;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s;
}

.cta-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    flex-direction: column;
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    .sidebar {
        display: none;
    }

    .page-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 52px 0;
    }

    .hero-rp {
        padding: 130px 0 52px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-wrap {
        padding: 28px 22px;
    }

    .overview-card,
    .chargeback-card,
    .contact-card {
        flex-direction: column;
        gap: 20px;
    }

    .trust-badges {
        gap: 8px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .contact-btns {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .page-wrapper {
        padding: 0 16px;
    }

    .hero-inner-rp {
        padding: 0 16px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .partial-grid {
        grid-template-columns: 1fr 1fr;
    }
}