/* ========================================
   REFUND POLICY - PREMIUM HERO SECTION
   ======================================== */
.refund-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: #ffffff;
}

/* Advanced background effects */
.refund-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    animation: orbFloat 30s ease-in-out infinite;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(66, 245, 11, 0.3), transparent 70%);
    top: -250px;
    right: -150px;
}

.orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.2), transparent 70%);
    bottom: -200px;
    left: -200px;
    animation-delay: -15s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(80px, -80px) scale(1.1) rotate(120deg);
    }

    66% {
        transform: translate(-70px, 80px) scale(0.9) rotate(240deg);
    }
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
}

/* Enhanced badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(11, 245, 11, 0.08), rgba(12, 234, 112, 0.05));
    border: 1.5px solid rgba(31, 245, 11, 0.25);
    border-radius: 50px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.badge-line {
    width: 36px;
    height: 3px;
    background: linear-gradient(to right, var(--digibro-green), var(--digibro-teal));

    border-radius: 4px;
}

.badge-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--digibro-green);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.badge-dot {
    width: 12px;
    height: 12px;
    background: var(--digibro-green);
    box-shadow: 0 0 15px rgba(0, 183, 74, 0.6);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;

}

/* Premium typography */
.refund-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--digibro-dark);
    letter-spacing: -0.02em;
}



.refund-hero-subtitle {
    font-size: 18px;
    color: var(--digibro-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

/* Premium hero stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    box-shadow: 0 10px 30px rgba(0, 183, 74, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.stat-icon i {
    font-size: 28px;
    color: white;
    z-index: 1;
}

.stat-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--digibro-dark);
    margin: 0 0 4px 0;
    letter-spacing: -0.5px;
}

.stat-content p {
    font-size: 14px;
    color: var(--digibro-muted);
    margin: 0;
    font-weight: 500;
}

/* REFUND VISUAL - PERFECT CIRCLE LAYOUT WITH FLOATING ANIMATION */
.refund-visual-new {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Transaction Container - Center Circle */
.transaction-container {
    position: absolute;
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
}

/* Money Circle - Main Center */
.money-circle {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00b74a 0%, #00bfa6 50%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(0, 183, 74, 0.5),
        inset 0 -10px 30px rgba(0, 0, 0, 0.2);
    border: 6px solid white;
    animation: moneyPulse 4s ease-in-out infinite;

}

@keyframes moneyPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 30px 80px rgba(0, 183, 74, 0.5);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 35px 90px rgba(0, 183, 74, 0.6);
    }
}

/* Rotating gradient shine */
.money-circle::before {
    content: "";
    position: absolute;
    inset: -100%;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            rgba(255, 255, 255, 0.4) 90deg,
            transparent 180deg,
            transparent 360deg);
    animation: rotateShine 4s linear infinite;
}

@keyframes rotateShine {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.currency-symbol {
    font-size: 80px;
    font-weight: 900;
    color: white;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
    animation: currencyFloat 3s ease-in-out infinite;
}

@keyframes currencyFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    25% {
        transform: translateY(-8px) scale(1.05);
    }

    50% {
        transform: translateY(0) scale(1.1);
    }

    75% {
        transform: translateY(8px) scale(1.05);
    }
}

/* Refund Arrow Badge */
.refund-arrow {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 52px;
    height: 52px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 4px solid #f0fdf4;
    z-index: 3;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-10deg) scale(1.1);
    }

    50% {
        transform: rotate(0deg) scale(1.15);
    }

    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

.refund-arrow i {
    font-size: 24px;
    background: linear-gradient(135deg, #00b74a, #00bfa6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: arrowSpin 3s ease-in-out infinite;
}

@keyframes arrowSpin {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

/* Progress Ring - Animated Circle */
.progress-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    z-index: 5;
}

.progress-ring circle:last-child {
    filter: drop-shadow(0 0 8px rgba(0, 183, 74, 0.6));
}

/* Refund Status Cards - Perfect Circular Position */
.refund-status-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 22px 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border: 3px solid #f0fdf4;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-width: 125px;
    text-align: center;
    z-index: 10;
}

.refund-status-card::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    background: linear-gradient(135deg, #00b74a, #00bfa6, #0066cc);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.refund-status-card:hover::before {
    opacity: 1;
}

.refund-status-card:hover {
    transform: translateY(-20px) scale(1.15);
    box-shadow: 0 30px 80px rgba(0, 183, 74, 0.4);
    border-color: transparent;
    z-index: 30;
}

/* Status Badge Icons */
.status-badge {
    width: 50px;
    height: 50px;
    margin: 0 auto 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.status-badge.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.status-badge.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.status-badge.info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.status-badge.pending {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.refund-status-card:hover .status-badge {
    transform: rotateY(360deg) scale(1.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.status-badge i {
    font-size: 24px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.refund-status-card h5 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.refund-status-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

/* Perfect Circle Positioning - 4 Cards Around Center */
.status-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-240px);
    animation: floatCard1 8s ease-in-out infinite;
}

.status-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(240px);
    animation: floatCard2 8s ease-in-out infinite;
}

.status-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(240px);
    animation: floatCard3 8s ease-in-out infinite;
}

.status-4 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(-240px);
    animation: floatCard4 8s ease-in-out infinite;
}

/* Smooth Floating Animations for Each Card */
@keyframes floatCard1 {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(-240px) rotate(0deg);
    }

    25% {
        transform: translate(-50%, -50%) translateY(-250px) rotate(-3deg);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-235px) rotate(0deg);
    }

    75% {
        transform: translate(-50%, -50%) translateY(-245px) rotate(3deg);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translate(-50%, -50%) translateX(240px) rotate(0deg);
    }

    25% {
        transform: translate(-50%, -50%) translateX(250px) rotate(3deg);
    }

    50% {
        transform: translate(-50%, -50%) translateX(235px) rotate(0deg);
    }

    75% {
        transform: translate(-50%, -50%) translateX(245px) rotate(-3deg);
    }
}

@keyframes floatCard3 {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(240px) rotate(0deg);
    }

    25% {
        transform: translate(-50%, -50%) translateY(250px) rotate(3deg);
    }

    50% {
        transform: translate(-50%, -50%) translateY(235px) rotate(0deg);
    }

    75% {
        transform: translate(-50%, -50%) translateY(245px) rotate(-3deg);
    }
}

@keyframes floatCard4 {

    0%,
    100% {
        transform: translate(-50%, -50%) translateX(-240px) rotate(0deg);
    }

    25% {
        transform: translate(-50%, -50%) translateX(-250px) rotate(-3deg);
    }

    50% {
        transform: translate(-50%, -50%) translateX(-235px) rotate(0deg);
    }

    75% {
        transform: translate(-50%, -50%) translateX(-245px) rotate(3deg);
    }
}

/* Money Particles - Floating Around */
.money-particle {
    position: absolute;
    font-size: 32px;
    font-weight: 900;
    color: rgba(0, 183, 74, 0.25);
    pointer-events: none;
    z-index: 3;
}

.particle-1 {
    top: 18%;
    left: 28%;
    animation: particleFloat1 6s ease-in-out infinite;
}

.particle-2 {
    top: 22%;
    right: 25%;
    animation: particleFloat2 7s ease-in-out infinite;
}

.particle-3 {
    bottom: 28%;
    left: 22%;
    animation: particleFloat3 6.5s ease-in-out infinite;
}

.particle-4 {
    bottom: 25%;
    right: 28%;
    animation: particleFloat4 7.5s ease-in-out infinite;
}

.particle-5 {
    top: 50%;
    left: 12%;
    animation: particleFloat5 8s ease-in-out infinite;
}

@keyframes particleFloat1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.25;
    }

    50% {
        transform: translate(-15px, -25px) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes particleFloat2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translate(15px, -20px) rotate(-180deg);
        opacity: 0.65;
    }
}

@keyframes particleFloat3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.28;
    }

    50% {
        transform: translate(-20px, 25px) rotate(180deg);
        opacity: 0.62;
    }
}

@keyframes particleFloat4 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.32;
    }

    50% {
        transform: translate(20px, 22px) rotate(-180deg);
        opacity: 0.68;
    }
}

@keyframes particleFloat5 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-18px, -15px) rotate(180deg) scale(1.2);
        opacity: 0.7;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .refund-visual-new {
        height: 500px;
    }

    .transaction-container {
        width: 190px;
        height: 190px;
    }

    .currency-symbol {
        font-size: 85px;
    }

    .progress-ring {
        width: 250px;
        height: 250px;
    }

    .status-1 {
        transform: translate(-50%, -50%) translateY(-210px);
    }

    .status-2 {
        transform: translate(-50%, -50%) translateX(210px);
    }

    .status-3 {
        transform: translate(-50%, -50%) translateY(210px);
    }

    .status-4 {
        transform: translate(-50%, -50%) translateX(-210px);
    }
}

@media (max-width: 768px) {
    .refund-visual-new {
        height: 450px;
    }

    .transaction-container {
        width: 160px;
        height: 160px;
    }

    .currency-symbol {
        font-size: 70px;
    }

    .refund-arrow {
        width: 45px;
        height: 45px;
        bottom: -5px;
        right: -5px;
    }

    .refund-arrow i {
        font-size: 20px;
    }

    .progress-ring {
        width: 220px;
        height: 220px;
    }

    .refund-status-card {
        padding: 18px 16px;
        min-width: 110px;
    }

    .status-badge {
        width: 45px;
        height: 45px;
    }

    .status-badge i {
        font-size: 22px;
    }

    .refund-status-card h5 {
        font-size: 14px;
    }

    .status-1 {
        transform: translate(-50%, -50%) translateY(-180px);
    }

    .status-2 {
        transform: translate(-50%, -50%) translateX(180px);
    }

    .status-3 {
        transform: translate(-50%, -50%) translateY(180px);
    }

    .status-4 {
        transform: translate(-50%, -50%) translateX(-180px);
    }

    .money-particle {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .refund-visual-new {
        height: 420px;
    }

    .transaction-container {
        width: 140px;
        height: 140px;
    }

    .currency-symbol {
        font-size: 60px;
    }

    .refund-arrow {
        width: 40px;
        height: 40px;
    }

    .refund-arrow i {
        font-size: 18px;
    }

    .progress-ring {
        width: 200px;
        height: 200px;
    }

    .refund-status-card {
        padding: 16px 14px;
        min-width: 100px;
    }

    .status-badge {
        width: 42px;
        height: 42px;
    }

    .status-badge i {
        font-size: 20px;
    }

    .refund-status-card h5 {
        font-size: 13px;
    }

    .refund-status-card p {
        font-size: 11px;
    }

    .status-1 {
        transform: translate(-50%, -50%) translateY(-155px);
    }

    .status-2 {
        transform: translate(-50%, -50%) translateX(155px);
    }

    .status-3 {
        transform: translate(-50%, -50%) translateY(155px);
    }

    .status-4 {
        transform: translate(-50%, -50%) translateX(-155px);
    }

    .money-particle {
        font-size: 22px;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 28px;
    height: 48px;
    border: 2.5px solid var(--digibro-green);
    border-radius: 16px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--digibro-green);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 28px;
        opacity: 0;
    }
}

.scroll-indicator p {
    font-size: 13px;
    color: var(--digibro-muted);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ========================================
   HIGHLIGHTS SECTION - GLASSMORPHISM CARDS
   ======================================== */
.highlights-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--digibro-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--digibro-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.highlight-card {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--digibro-green), var(--digibro-teal), var(--gradient-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 183, 74, 0.15);
    border-color: rgba(0, 183, 74, 0.2);
}

.highlight-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 191, 166, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon {
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    box-shadow: 0 10px 30px rgba(0, 183, 74, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.highlight-icon i {
    font-size: 32px;
    color: var(--digibro-green);
    transition: color 0.4s ease;
}

.highlight-card:hover .highlight-icon i {
    color: white;
}

.highlight-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--digibro-dark);
    margin-bottom: 14px;
    line-height: 1.4;
}

.highlight-card p {
    font-size: 15px;
    color: var(--digibro-muted);
    line-height: 1.7;
    margin: 0;
}



/* ========================================
   POLICY CONTENT SECTION - PREMIUM REDESIGN
   ======================================== */

.policy-content-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
    position: relative;
    overflow: hidden;
}

/* Premium Background Elements */
.policy-content-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 183, 74, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.policy-timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 200px);
    background: linear-gradient(to bottom, transparent, var(--digibro-green), transparent);
    top: 100px;
    z-index: 0;
}

.policy-timeline-line::before,
.policy-timeline-line::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--digibro-green);
    left: 50%;
    transform: translateX(-50%);
}

.policy-timeline-line::before {
    top: -10px;
    box-shadow: 0 0 20px rgba(0, 183, 74, 0.4);
}

.policy-timeline-line::after {
    bottom: -10px;
    box-shadow: 0 0 20px rgba(0, 183, 74, 0.4);
}

/* Policy Timeline Container */
.policy-timeline-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 50px;
    margin: 0 auto;
    z-index: 1;
}

/* Policy Step - Enhanced Timeline Design */
.policy-step {
    display: flex;
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.policy-step:nth-child(odd) {
    flex-direction: row;
}

.policy-step:nth-child(even) {
    flex-direction: row-reverse;
}

.policy-step-connector {
    position: absolute;
    left: 50%;
    top: -15%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--digibro-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 183, 74, 0.2);
}

.policy-step-connector i {
    font-size: 20px;
    color: var(--digibro-green);
}

/* Step Number Badge - Premium Design */
.policy-step-number {
    flex: 0 0 120px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.step-number-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 183, 74, 0.3);
    position: relative;
    transition: all 0.4s ease;
}

.step-number-circle::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    opacity: 0.3;
    filter: blur(10px);
    transition: all 0.4s ease;
}

.policy-step:hover .step-number-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(0, 183, 74, 0.4);
}

.policy-step:hover .step-number-circle::before {
    opacity: 0.5;
    filter: blur(15px);
}

.step-number {
    font-size: 32px;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Policy Content Card - Premium Glassmorphism */
.policy-step-content {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 40px;
}

.policy-step-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 245, 31, 0.03), rgba(12, 234, 123, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.policy-step:hover .policy-step-content::before {
    opacity: 1;
}

.policy-step:hover .policy-step-content {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 183, 74, 0.15);
    border-color: rgba(0, 183, 74, 0.2);
}

/* Decorative corner accent */
.policy-step-content::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 183, 74, 0.1) 50%);
    border-top-right-radius: 24px;
}

/* Header with Icon */
.policy-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.policy-header-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.12), rgba(0, 191, 166, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.policy-step:hover .policy-header-icon {
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    transform: rotate(-5deg) scale(1.1);
}

.policy-header-icon i {
    font-size: 32px;
    color: var(--digibro-green);
    transition: color 0.4s ease;
}

.policy-step:hover .policy-header-icon i {
    color: white;
}

.policy-title-wrapper {
    flex: 1;
}

.policy-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--digibro-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.policy-subtitle {
    font-size: 16px;
    color: var(--digibro-muted);
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}

.policy-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--digibro-green);
    border-radius: 50%;
}

/* Policy Body Content */
.policy-body {
    position: relative;
    z-index: 2;
}

.policy-text {
    font-size: 16px;
    color: var(--digibro-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.policy-text p {
    margin-bottom: 16px;
}

.policy-text strong {
    color: var(--digibro-green);
    font-weight: 600;
    position: relative;
    padding: 0 2px;
}

.policy-text strong::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--digibro-green);
    opacity: 0.3;
    border-radius: 1px;
}

/* Enhanced List Styling */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    position: relative;
}

.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    border: 2px solid rgba(0, 183, 74, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.policy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--digibro-green), var(--digibro-teal));
    border-radius: 14px 0 0 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.policy-list li:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 183, 74, 0.2);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 183, 74, 0.12);
}

.policy-list li:hover::before {
    opacity: 1;
}

.policy-list i {
    font-size: 20px;
    color: var(--digibro-green);
    margin-top: 2px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.policy-list li:hover i {
    color: var(--digibro-teal);
    transform: scale(1.2) rotate(10deg);
}

.policy-list li span {
    flex: 1;
    font-size: 16px;
    color: var(--digibro-dark);
    line-height: 1.7;
    font-weight: 500;
}

/* Alert Box Redesign */
.policy-alert-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.08), rgba(0, 183, 74, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(0, 191, 166, 0.15);
    margin: 28px 0;
    position: relative;
    overflow: hidden;
}

.policy-alert-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--digibro-teal), var(--digibro-green));
}

.policy-alert-box i {
    font-size: 28px;
    color: var(--digibro-teal);
    flex-shrink: 0;
    margin-top: 2px;
    animation: gentlePulse 2s ease-in-out infinite;
}

@keyframes gentlePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.policy-alert-box p {
    font-size: 15px;
    color: var(--digibro-dark);
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* Security Features Grid */
.policy-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.policy-security-card {
    background: white;
    border: 2px solid rgba(0, 183, 74, 0.1);
    border-radius: 18px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.policy-security-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.02), rgba(0, 191, 166, 0.01));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.policy-security-card:hover::before {
    opacity: 1;
}

.policy-security-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 183, 74, 0.12);
    border-color: rgba(0, 183, 74, 0.25);
}

.security-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.security-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.12), rgba(0, 191, 166, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.policy-security-card:hover .security-card-icon {
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    transform: rotate(-8deg);
}

.security-card-icon i {
    font-size: 26px;
    color: var(--digibro-green);
    transition: color 0.3s ease;
}

.policy-security-card:hover .security-card-icon i {
    color: white;
}

.security-card-header h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--digibro-dark);
    margin: 0;
}

.security-card-content p {
    font-size: 14px;
    color: var(--digibro-muted);
    line-height: 1.7;
    margin: 0;
}

/* Contact Cards Grid */
.policy-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.policy-contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.9));
    border: 2px solid rgba(0, 183, 74, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.policy-contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--digibro-green), var(--digibro-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.policy-contact-card:hover::before {
    transform: scaleX(1);
}

.policy-contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 183, 74, 0.15);
    border-color: rgba(0, 183, 74, 0.25);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.12), rgba(0, 191, 166, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.policy-contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    transform: scale(1.1) rotate(5deg);
}

.contact-card-icon i {
    font-size: 36px;
    color: var(--digibro-green);
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.policy-contact-card:hover .contact-card-icon i {
    color: white;
}

.contact-card-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--digibro-dark);
    margin-bottom: 12px;
}

.contact-card-content p {
    font-size: 15px;
    color: var(--digibro-muted);
    line-height: 1.6;
    margin: 0;
}

.contact-card-content a {
    color: var(--digibro-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: var(--digibro-teal);
    text-decoration: underline;
}

/* Enhanced Step Animation */
@keyframes stepAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .policy-timeline-line {
        left: 120px;
    }

    .policy-step {
        flex-direction: row !important;
    }

    .policy-step-connector {
        left: 120px;
    }

    .policy-step-content {
        margin-left: 160px;
        margin-right: 40px;
    }
}

@media (max-width: 992px) {
    .policy-content-section {
        padding: 80px 0 100px;
    }

    .policy-timeline-line {
        left: 100px;
    }

    .policy-step-connector {
        left: 100px;
        width: 50px;
        height: 50px;
    }

    .policy-step-number {
        flex: 0 0 100px;
        height: 100px;
    }

    .step-number-circle {
        width: 70px;
        height: 70px;
    }

    .step-number {
        font-size: 28px;
    }

    .policy-step-content {
        margin-left: 140px;
        margin-right: 20px;
        padding: 32px;
    }

    .policy-title {
        font-size: 24px;
    }

    .policy-header-icon {
        width: 60px;
        height: 60px;
    }

    .policy-header-icon i {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .policy-timeline-line {
        display: none;
    }

    .policy-step-connector {
        display: none;
    }

    .policy-step {
        flex-direction: column !important;
        margin-bottom: 60px;
    }

    .policy-step-number {
        flex: 0 0 auto;
        height: auto;
        margin-bottom: 20px;
        justify-content: flex-start;
    }

    .policy-step-content {
        margin: 0;
        padding: 28px;
    }

    .policy-header {
        flex-direction: column;
        gap: 16px;
    }

    .policy-header-icon {
        width: 70px;
        height: 70px;
    }

    .policy-security-grid,
    .policy-contact-grid {
        grid-template-columns: 1fr;
    }

    .policy-alert-box {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .policy-alert-box i {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .policy-content-section {
        padding: 60px 0 80px;
    }

    .policy-step {
        margin-bottom: 50px;
    }

    .policy-step-content {
        padding: 24px;
    }

    .policy-title {
        font-size: 22px;
    }

    .step-number-circle {
        width: 60px;
        height: 60px;
    }

    .step-number {
        font-size: 24px;
    }

    .policy-header-icon {
        width: 60px;
        height: 60px;
    }

    .policy-header-icon i {
        font-size: 26px;
    }

    .policy-text {
        font-size: 15px;
    }

    .policy-contact-card {
        padding: 24px;
    }

    .contact-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .contact-card-icon i {
        font-size: 32px;
    }
}

/* ========================================
   SHARING GRID
   ======================================== */
.sharing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.sharing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 251, 0.95));
    border: 1.5px solid rgba(0, 183, 74, 0.12);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sharing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--digibro-green), var(--digibro-teal));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.sharing-card:hover::before {
    transform: scaleX(1);
}

.sharing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 183, 74, 0.2);
    border-color: rgba(0, 183, 74, 0.3);
    background: white;
}

.sharing-card i {
    font-size: 36px;
    color: var(--digibro-green);
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.sharing-card:hover i {
    transform: scale(1.15) rotate(-5deg);
    color: var(--digibro-teal);

}

.sharing-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--digibro-dark);
    margin-bottom: 12px;
}

.sharing-card p {
    font-size: 14px;
    color: var(--digibro-muted);
    line-height: 1.6;
    margin: 0;
}


/* ========================================
   RIGHTS GRID
   ======================================== */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.right-item {
    background: white;
    border: 2px solid rgba(11, 245, 11, 0.12);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.right-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 245, 50, 0.05), rgba(12, 234, 123, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.right-item:hover::before {
    opacity: 1;
}

.right-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(11, 245, 62, 0.18);
    border-color: rgba(245, 158, 255 0.3);
}

.right-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(11, 245, 31, 0.12), rgba(12, 234, 97, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.right-item:hover .right-icon {
    background: linear-gradient(135deg, #00bfa6, #00b74a);
    transform: rotate(10deg) scale(1.1);
}

.right-icon i {
    font-size: 28px;
    color: #00bfa6;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.right-item:hover .right-icon i {
    color: white;
}

.right-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--digibro-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.right-item p {
    font-size: 13px;
    color: var(--digibro-muted);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}


/* ========================================
TRUST BANNER - PREMIUM CTA
======================================== */
.trust-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #00bfa6, #00b74a);
    position: relative;
    overflow: hidden;
}

.trust-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
    border-radius: 50%;
    animation: orbFloat 20s ease-in-out infinite;
}

.trust-banner::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.trust-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.trust-icon {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    border-radius: 20px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.trust-content:hover .trust-icon {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.trust-icon i {
    font-size: 42px;
    color: #00bfa6;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.trust-text {
    flex: 1;
}

.trust-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.trust-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
}

.trust-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: #00bfa6;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.trust-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.95);
    color: #00b74a;
}

.trust-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.trust-btn:hover i {
    transform: translateX(5px);
}

/* ========================================
RESPONSIVE DESIGN
======================================== */
@media (max-width: 992px) {
    .refund-hero {
        padding: 120px 0 60px;
    }

    .floating-refund-item {
        padding: 16px;
    }

    .floating-refund-item span {
        font-size: 12px;
    }

    .policy-item {
        gap: 24px;
    }

    .policy-number {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .policy-content {
        padding: 36px 32px;
    }

    .trust-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }

    .trust-text h3 {
        font-size: 28px;
    }

    .trust-text p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .refund-hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-item {
        gap: 12px;
    }

    .stat-icon {
        width: 54px;
        height: 54px;
    }

    .stat-icon i {
        font-size: 24px;
    }

    .refund-visual {
        height: 400px;
        margin-top: 40px;
    }

    .floating-refund-item {
        padding: 14px 18px;
    }

    .floating-refund-item i {
        font-size: 22px;
    }

    .policy-item {
        flex-direction: column;
        gap: 20px;
    }

    .policy-number {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .policy-content {
        padding: 32px 28px;
    }

    .policy-title {
        font-size: 24px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .trust-banner {
        padding: 60px 0;
    }

    .trust-content {
        padding: 36px 28px;
    }

    .trust-icon {
        width: 72px;
        height: 72px;
    }

    .trust-icon i {
        font-size: 36px;
    }

    .trust-text h3 {
        font-size: 24px;
    }

    .trust-text p {
        font-size: 15px;
    }

    .trust-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-badge {
        padding: 10px 18px;
    }

    .badge-text {
        font-size: 11px;
    }

    .refund-hero-subtitle {
        font-size: 16px;
    }

    .highlights-section {
        padding: 60px 0;
    }

    .highlight-card {
        padding: 32px 24px;
    }

    .policy-item {
        margin-bottom: 32px;
    }

    .policy-number {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .policy-content {
        padding: 24px 20px;
    }

    .policy-title {
        font-size: 20px;
    }

    .policy-text {
        font-size: 15px;
    }

    .trust-content {
        padding: 32px 24px;
        gap: 24px;
    }

    .trust-text h3 {
        font-size: 22px;
    }
}