.trfy {
    background-color: rgba(245, 247, 252, 1);
    padding: 30px 0 100px;
}
.trfy__container {
    width: 100%;
    max-width: 826px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.trfy__header {
    text-align: center;
    margin-bottom: 24px;
}
.trfy__title {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 54px;
}

/* Checklist */
.trfy__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    margin: 0;
}
.trfy__item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.05);
  	font-family: 'Inter';
}
.trfy__item::before {
    display: none;
}
.trfy__check {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}
.trfy__text {
    font-size: 15px;
    color: #2D3142;
    line-height: 25px;
    font-style: italic;
    font-weight: 500;
}

/* Footer note */
.trfy__footer {
    text-align: center;
    margin: 29px auto 0;
    max-width: 660px;
}
.trfy__footer p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.80);
    line-height: 25px;
    font-weight: 400;
    margin: 0;
    font-style: italic;
}
.trfy__footer p strong {
    font-weight: 700;
}
.trfy__footer a {
    color: rgba(0, 0, 0, 0.80);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.trfy__footer a:hover {
    color: #3B5BDB;
}

/* ── Responsive ─── */
@media (max-width: 1024px) {
    .trfy {
        padding: 64px 0 80px;
    }
    .trfy__title {
        font-size: 38px;
    }
}
@media (max-width: 768px) {
    .trfy {
        padding: 0px 0 68px;
    }
    .trfy__container {
        padding: 0 24px;
    }
    .trfy__title {
        font-size: 32px;
    }
    .trfy__header {
        margin-bottom: 24px;
    }
}
@media (max-width: 640px) {
    .trfy {
        padding: 0 0 56px;
    }
    .trfy__container {
        padding: 0 16px;
    }
    .trfy__title {
        font-size: 26px;
    }
    .trfy__item {
        padding: 14px 16px;
    }
    .trfy__text {
        font-size: 14px;
        line-height: 22px;
    }
}
@media (max-width: 480px) {
    .trfy__title {
        font-size: 22px;
    }
    .trfy__text {
        font-size: 13px;
    }
    .trfy__footer p {
        font-size: 13px;
    }
}
