body {
    background-color: #050505;
    overflow-x: hidden;
}

.policy-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 180px 20px 150px;
}

.page-header {
    text-align: center;
    margin-bottom: 100px;
}

.header-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    line-height: 1.1;
    text-transform: uppercase;
}

.header-sub {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
}

.header-desc {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 30px auto 0;
    font-weight: 300;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.bento-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid #1a1a1a;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.4s ease, background-color 0.4s ease;
}

    .bento-card:hover {
        border-color: rgba(212, 175, 55, 0.3);
        background: rgba(25, 25, 25, 0.6);
    }

.bc-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #555;
    stroke-width: 1;
    transition: 0.4s;
    margin-bottom: 25px;
}

.bento-card:hover .bc-icon svg {
    stroke: var(--gold);
}

.bc-title {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 15px;
    display: block;
}

.bc-desc {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.7;
    font-weight: 300;
}

.highlight {
    color: #fff;
    font-weight: 500;
}

.returns-section {
    border-top: 1px solid #1a1a1a;
    padding-top: 100px;
    margin-top: 100px;
}

.returns-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

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

.pl-item {
    margin-bottom: 40px;
    color: #999;
    font-size: 1rem;
    line-height: 1.8;
}

    .pl-item:last-child {
        margin-bottom: 0;
    }

.step-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.pl-item strong {
    color: #fff;
    font-weight: 500;
}

.inline-link {
    text-decoration: none;
    border-bottom: 1px solid rgba(212,175,55,0.3);
    transition: 0.3s;
}

    .inline-link:hover {
        border-bottom-color: var(--gold);
    }

@media (max-width: 900px) {
    .policy-wrapper {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bento-card {
        padding: 30px 20px;
    }

    .returns-section {
        padding-top: 60px;
        margin-top: 60px;
    }

    .returns-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .procedure-list {
        text-align: left;
        padding: 0 10px;
    }
}
