.redeem-page {
    width: 100%;
}

.redeem-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.redeem-eyebrow {
    display: inline-block;
    margin: 0 0 0.65rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0f766e;
    background: rgba(15, 118, 110, 0.08);
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 999px;
}

.redeem-page h1 {
    font-size: clamp(1.65rem, 4vw, 2.1rem);
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: #0f172a;
    line-height: 1.2;
}

.redeem-page .lead {
    max-width: 42rem;
    margin: 0 auto;
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.65;
}

.redeem-page .lead code {
    font-size: 0.9em;
    padding: 0.12rem 0.4rem;
    border-radius: 6px;
    background: rgba(99, 102, 241, 0.08);
    color: #4338ca;
}

.redeem-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 1.5rem;
    align-items: start;
}

.redeem-steps {
    background: linear-gradient(165deg, #fff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem 1.35rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
}

.redeem-steps h2 {
    margin: 0 0 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #4338ca;
}

.redeem-steps ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: redeem-step;
}

.redeem-steps li {
    position: relative;
    margin: 0 0 1rem;
    padding-left: 2.5rem;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.5;
}

.redeem-steps li:last-child {
    margin-bottom: 0;
}

.redeem-steps li::before {
    counter-increment: redeem-step;
    content: counter(redeem-step);
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 1.65rem;
    height: 1.65rem;
    display: grid;
    place-items: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(180deg, #4338ca 0%, #3730a3 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(67, 56, 202, 0.25);
}

.redeem-steps li strong {
    display: block;
    color: #0f172a;
    margin-bottom: 0.15rem;
}

.redeem-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.65rem 1.5rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
}

.redeem-card-header {
    margin-bottom: 1.35rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.redeem-card-header h2 {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a;
}

.redeem-card-header p {
    margin: 0;
    font-size: 0.92rem;
    color: #64748b;
}

.redeem-field {
    margin-bottom: 1.15rem;
}

.redeem-field:last-of-type {
    margin-bottom: 0;
}

.redeem-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
    color: #334155;
}

.redeem-field .form-input,
.redeem-field input[type="email"],
.redeem-field input[type="file"],
.redeem-field textarea {
    width: 100%;
    padding: 0.75rem 0.85rem;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font: inherit;
    color: #1e293b;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.redeem-field textarea {
    min-height: 5.5rem;
    resize: vertical;
}

.redeem-field .form-input:focus,
.redeem-field input:focus,
.redeem-field textarea:focus {
    outline: none;
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.14);
}

.redeem-field input[type="file"] {
    padding: 0.85rem;
    background: #f8fafc;
    border-style: dashed;
    border-color: #94a3b8;
    cursor: pointer;
}

.redeem-field input[type="file"]:hover {
    background: #f1f5f9;
    border-color: #64748b;
}

.redeem-field .help {
    font-size: 0.84rem;
    color: #64748b;
    margin: 0.4rem 0 0;
}

.redeem-field .errors {
    color: #b91c1c;
    font-size: 0.88rem;
    margin: 0.4rem 0 0;
}

.redeem-messages {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.redeem-messages li {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.92rem;
}

.redeem-submit {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
}

.redeem-submit button {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(180deg, #4338ca 0%, #3730a3 100%);
    color: #fff;
    font: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(67, 56, 202, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.redeem-submit button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(67, 56, 202, 0.34);
}

@media (max-width: 760px) {
    .redeem-layout {
        grid-template-columns: 1fr;
    }

    .redeem-steps {
        order: 2;
    }

    .redeem-card {
        order: 1;
    }
}
